- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
This page outlines the basic features of the Datadog Agent for Debian. If you haven’t installed the Agent yet, instructions can be found in the Datadog Agent Integration documentation.
Packages are available for 64-bit x86 and Arm v8 architectures. For other architectures, use the source install.
Notes:
In Agent v6 and v7, the service manager provided by the operating system is responsible for the Agent lifecycle, while other commands must be run through the Agent binary directly. In Agent v5, almost everything is done through the service manager.
Description | Command |
---|---|
Start Agent as a service | sudo service datadog-agent start |
Stop Agent running as a service | sudo service datadog-agent stop |
Restart Agent running as a service | sudo service datadog-agent restart |
Status of Agent service | sudo service datadog-agent status |
Status page of running Agent | sudo datadog-agent status |
Send flare | sudo datadog-agent flare |
Display command usage | sudo datadog-agent --help |
Run a check | sudo -u dd-agent -- datadog-agent check <CHECK_NAME> |
Note: If the service
wrapper is not available on your system, use:
upstart
-based systems: sudo start/stop/restart/status datadog-agent
systemd
-based systems: sudo systemctl start/stop/restart/status datadog-agent
The configuration files and folders for the Agent are located in:
/etc/datadog-agent/datadog.yaml
Configuration files for Integrations:
/etc/datadog-agent/conf.d/
To uninstall the Agent, run the following command:
sudo apt-get remove datadog-agent -y
This command removes the Agent, but does not remove:
datadog.yaml
configuration file/etc/datadog-agent
configuration folder/opt/datadog-agent
folderdd-agent
userIf you also want to remove these elements, run this command after removing the Agent:
sudo apt-get remove --purge datadog-agent -y
Single Step APM 계측을 사용하여 Agent를 설치한 경우 Agent를 제거하려면 추가 명령을 실행하여 APM 계측을 제거해야 합니다.
See the Agent Troubleshooting documentation.
The Agent contains an embedded Python environment at /opt/datadog-agent/embedded/
. Common binaries such as python
and pip
are contained within /opt/datadog-agent/embedded/bin/
.
See the instructions on how to add packages to the embedded Agent for more information.