dd-logs
tarafından datadog-labs
Log yönetimi - arama, pipeline'lar, arşivler ve maliyet kontrolü.
npx skills add https://github.com/datadog-labs/pup --skill dd-logsDatadog Logs
Search, process, and archive logs with cost awareness.
Prerequisites
Datadog Pup (dd-pup/pup) should already be installed:
cargo install --git https://github.com/DataDog/pup
Quick Start
pup auth login
Search Logs
# Basic search
pup logs search --query="status:error" --from="1h"
# With filters
pup logs search --query="service:api status:error" --from="1h" --limit 100
# JSON output is the default
pup logs search --query="@http.status_code:>=500" --from="1h"
Search Syntax
| Query | Meaning |
|---|---|
error | Full-text search |
status:error | Tag equals |
@http.status_code:500 | Attribute equals |
@http.status_code:>=400 | Numeric range |
service:api AND env:prod | Boolean |
@message:*timeout* | Wildcard |
Pipelines
Process logs before indexing:
# List pipelines
pup obs-pipelines list
# Create pipeline (JSON)
pup obs-pipelines create --file pipeline.json
Common Processors
{
"name": "API Logs",
"filter": {"query": "service:api"},
"processors": [
{
"type": "grok-parser",
"name": "Parse nginx",
"source": "message",
"grok": {"match_rules": "%{IPORHOST:client_ip} %{DATA:method} %{DATA:path} %{NUMBER:status}"}
},
{
"type": "status-remapper",
"name": "Set severity",
"sources": ["level", "severity"]
},
{
"type": "attribute-remapper",
"name": "Remap user_id",
"sources": ["user_id"],
"target": "usr.id"
}
]
}
⚠️ Exclusion Filters (Cost Control)
Index only what matters:
{
"name": "Drop debug logs",
"filter": {"query": "status:debug"},
"is_enabled": true
}
High-Volume Exclusions
# Find noisiest log sources
pup logs search --query="*" --from="1h" | jq 'group_by(.service) | map({service: .[0].service, count: length}) | sort_by(-.count)[:10]'
| Exclude | Query |
|---|---|
| Health checks | @http.url:"/health" OR @http.url:"/ready" |
| Debug logs | status:debug |
| Static assets | @http.url:*.css OR @http.url:*.js |
| Heartbeats | @message:*heartbeat* |
Archives
Store logs cheaply for compliance:
# List archives
pup logs archives list
# Archive config (S3 example)
{
"name": "compliance-archive",
"query": "*",
"destination": {
"type": "s3",
"bucket": "my-logs-archive",
"path": "/datadog"
},
"rehydration_tags": ["team:platform"]
}
Log-Based Metrics
Inspect log-based metrics:
# List existing log-based metrics
pup logs metrics list
⚠️ Cardinality warning: Group by bounded values only.
Sensitive Data
Scrubbing Rules
{
"type": "hash-remapper",
"name": "Hash emails",
"sources": ["email", "@user.email"]
}
Never Log
# In your app - sanitize before sending
import re
def sanitize_log(message: str) -> str:
# Remove credit cards
message = re.sub(r'\b\d{4}[-\s]?\d{4}[-\s]?\d{4}[-\s]?\d{4}\b', '[REDACTED]', message)
# Remove SSNs
message = re.sub(r'\b\d{3}-\d{2}-\d{4}\b', '[REDACTED]', message)
return message
Troubleshooting
| Problem | Fix |
|---|---|
| Logs not appearing | Check agent, pipeline filters |
| High costs | Add exclusion filters |
| Search slow | Narrow time range, use indexes |
| Missing attributes | Check grok parser |
References/Documentation
datadog-labs tarafından daha fazla skill
agent-install
datadog-labs
agent-install — Datadog-labs/agent-skills tarafından yayınlanan, AI ajanları için yüklenebilir bir beceri.
official
agent-skills
datadog-labs
AI ajanları için Datadog becerileri. Temel izleme, günlükleme, iz sürme ve gözlemlenebilirlik.
official
dd-apm
datadog-labs
APM - kurulum, başlangıç, enstrümantasyon, etkinleştirme, ayarlama, yapılandırma, izlemeler, hizmetler, bağımlılıklar, performans analizi. Datadog APM ile ilgili herhangi bir talep için kullanın…
official
dd-audit
datadog-labs
Denetim izi incelemeleri - kimin neyi değiştirdiği, anahtar uzlaşması, maliyet artışının temel nedeni, uyumluluk kanıtı (SOC 2/PCI) ve yapay zeka etkinlik denetimi.
official
dd-audit-ai-activity
datadog-labs
Bits AI asistanının (MCP sunucusu) Datadog organizasyonunuzda yaptıklarını denetleyin — kullanıcıya göre araç çağrıları, erişilen kaynaklar ve AI yönetişimi için anomali işaretleri.
official
dd-audit-compliance-report
datadog-labs
Datadog Denetim İzinden SOC 2 ve PCI DSS için denetçiye hazır uyumluluk kanıtı oluşturur. Çerçeve kontrollerini belirli sorgu kalıplarına eşler ve üretir…
official
dd-audit-cost-spike-investigation
datadog-labs
Bir Datadog ürün kullanımı veya maliyet artışını, Kullanım Ölçümleme verilerini (ne zaman/neyin arttığı) Denetim İzleme yapılandırma değişiklikleriyle (kimin neyi değiştirdiği…) ilişkilendirerek araştırın.
official
dd-audit-key-compromise
datadog-labs
Olası bir Datadog API anahtarı ihlalini araştırın — eylem zaman çizelgesi, coğrafi/IP dökümü, çağrılan uç noktalar, anomali işaretleri ve düzeltme adımları.
official