- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
This page covers the ports used by Agent 5. For information on the latest version of the Agent, see Send a Flare.
Platform | Command |
---|---|
Docker | docker exec -it dd-agent /etc/init.d/datadog-agent flare <CASE_ID> |
macOS | datadog-agent flare <CASE_ID> |
CentOS | sudo service datadog-agent flare <CASE_ID> |
Debian | sudo service datadog-agent flare <CASE_ID> |
Kubernetes | kubectl exec <POD_NAME> -it /etc/init.d/datadog-agent flare <CASE_ID> |
Fedora | sudo service datadog-agent flare <CASE_ID> |
Redhat | sudo service datadog-agent flare <CASE_ID> |
SUSE | sudo service datadog-agent flare <CASE_ID> |
Source | sudo ~/.datadog-agent/bin/agent flare <CASE_ID> |
Windows | See the Windows section |
Note: If you are using a Linux based system and the service
wrapper command is not available, consult the list of alternatives.
To send Datadog support a copy of your Windows logs and configurations, do the following:
Open the Datadog Agent Manager.
Select Actions.
Select Flare.
Enter your ticket number (if you don’t have one, leave the value as zero).
Enter the email address you use to log in to Datadog.
The flare command is available for PowerShell:
& "$env:ProgramFiles\Datadog\Datadog Agent\embedded\python.exe" "$env:ProgramFiles\Datadog\Datadog Agent\agent\agent.py" flare <CASE_ID>
or cmd.exe:
"%ProgramFiles%\Datadog\Datadog Agent\embedded\python.exe" "%ProgramFiles%\Datadog\Datadog Agent\agent\agent.py" flare <CASE_ID>
The output of the flare command tells you where the compressed flare archive is saved. In case the file fails to upload to Datadog, you can retrieve it from this directory and manually add as an attachment to an email. Common locations flare files are stored:
\tmp\
$TMPDIR
C:\Users\<DDAGENTUSER>\AppData\Local\Temp\
For older Agent versions on Windows, you can find the location of this file by running the following from the Agent’s Python command prompt:
Step 1:
Agent v5.12+:
"%ProgramFiles%\Datadog\Datadog Agent\dist\shell.exe" since
Older Agent versions:
"%ProgramFiles%\Datadog\Datadog Agent\files\shell.exe"
Step 2:
import tempfile
print tempfile.gettempdir()
Example:
For information on the latest version of the Agent, consult the Windows documentation.