- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
This page covers Agent 6 commands. Datadog recommends installing or upgrading to Agent 7 for the latest features. For information on installing the latest version of the Agent, follow the Agent 7 Installation Instructions. For information on upgrading to Agent 7 from an earlier version, see Upgrade to Datadog Agent v7.
List of commands to start the Datadog Agent:
Platform | Command |
---|---|
AIX | startsrc -s datadog-agent |
Linux | See the Agent documentation for your OS. |
Docker | Use the installation command. |
Kubernetes | kubectl create -f datadog-agent.yaml |
macOS | launchctl start com.datadoghq.agent or through the systray app |
Source | sudo service datadog-agent start |
Windows | See the Windows Agent documentation. |
List of commands to stop the Datadog Agent:
Platform | Command |
---|---|
AIX | stopsrc -s datadog-agent |
Linux | See the Agent documentation for your OS. |
Docker | docker exec -it <CONTAINER_NAME> agent stop |
Kubernetes | kubectl delete pod <AGENT POD NAME> —note: the pod is automatically rescheduled |
macOS | launchctl stop com.datadoghq.agent or through the systray app |
Source | sudo service datadog-agent stop |
Windows | See the Windows Agent documentation. |
List of commands to restart the Datadog Agent:
Platform | Command |
---|---|
Linux | See the Agent documentation for your OS. |
Docker | Use the installation command. |
Kubernetes | kubectl delete pod <AGENT POD NAME> —note: the pod is automatically rescheduled |
macOS | run stop then start , or through the systray app |
Source | unsupported Platform |
Windows | See the Windows Agent documentation. |
List of commands to display the status of the Datadog Agent:
Platform | Command |
---|---|
AIX | lssrc -s datadog-agent |
Linux | See the Agent documentation for your OS. |
Docker (Debian) | sudo docker exec -it <CONTAINER_NAME> s6-svstat /var/run/s6/services/agent/ |
Kubernetes | kubectl exec -it <POD_NAME> -- s6-svstat /var/run/s6/services/agent/ |
macOS | launchctl list com.datadoghq.agent or through the systray app |
Source | sudo service datadog-agent status |
Windows | See the Windows Agent documentation. |
List of commands to display the status of your Datadog Agent and enabled integrations.
Platform | Command |
---|---|
AIX | datadog-agent status |
Linux | sudo datadog-agent status |
Docker | sudo docker exec -it <CONTAINER_NAME> agent status |
Kubernetes | kubectl exec -it <POD_NAME> -- agent status |
macOS | datadog-agent status or through the web GUI |
Source | sudo datadog-agent status |
Windows | See the Windows Agent documentation. |
A properly configured integration is displayed under Running Checks with no warnings or errors, as seen below:
Running Checks
==============
network (1.6.0)
---------------
Total Runs: 5
Metric Samples: 26, Total: 130
Events: 0, Total: 0
Service Checks: 0, Total: 0
Average Execution Time : 0ms
The Agent v6 command-line interface is sub-command based. To see the list of available sub-commands, run:
<AGENT_BINARY> --help
To run a sub-command, the Agent binary must be invoked:
<AGENT_BINARY> <SUB_COMMAND> <OPTIONS>
Some options have flags and options detailed under --help
. For example, use help with the check
sub-command:
<AGENT_BINARY> check --help
Subcommand | Notes |
---|---|
check | Run the specified check. |
config | Runtime configuration management. |
configcheck | Print all configurations loaded & resolved of a running Agent. |
diagnose | Execute connectivity diagnosis on your system. |
flare | Collect a flare and send it to Datadog. |
health | Print the current Agent health. |
help | Help about any command. |
hostname | Print the hostname used by the Agent. |
import | Import and convert configuration files from previous versions of the Agent. |
jmx | JMX troubleshooting. |
launch-gui | Start the Datadog Agent GUI. |
restart-service | Restart the Agent within the service control manager. Windows only. |
start-service | Start the Agent within the service control manager. Windows only. |
stream-logs | Stream the logs being processed by a running agent. |
stopservice | Stop the Agent within the service control manager. Windows only. |
version | Print version info. |