- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
",t};e.buildCustomizationMenuUi=t;function n(e){let t='
",t}function s(e){let n=e.filter.currentValue||e.filter.defaultValue,t='${e.filter.label}
`,e.filter.options.forEach(s=>{let o=s.id===n;t+=``}),t+="${e.filter.label}
`,t+=`Verify Agent version
datadog-agent status
Check Python tracer version
python -c "import ddtrace; print(ddtrace.__version__)"
Verify environment variables
DD_APPSEC_ENABLED=true
is setDD_SERVICE
and DD_ENV
are properly configuredDD_APM_ENABLED=true
if using APM featuresCheck ddtrace installation
pip show ddtrace
pip install ddtrace
Import errors
Environment variable issues
Symptoms: Service appears as “unnamed-service” in Datadog
Solution: Set the DD_SERVICE
environment variable:
export DD_SERVICE=your-service-name
export DD_ENV=your-environment
ddtrace-run python app.py
Symptoms: Application fails to start or AAP doesn’t work
Solution: Ensure proper file permissions and that the application can write to /tmp
:
chmod 755 /path/to/your/app
Symptoms: AAP works but some features are missing
Solution: Check the compatibility guide for supported frameworks and versions.
Enable debug logging to get more information:
export DD_TRACE_DEBUG=true
export DD_APPSEC_ENABLED=true
ddtrace-run python app.py
If you’re still experiencing problems: