-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
36 lines (32 loc) · 1.08 KB
/
Copy pathconfig.yml
File metadata and controls
36 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Provider configuration — pick your adapters
providers:
source:
type: datadog
doc_sink:
type: markdown # or: notion
tracker:
type: github # or: linear
notifier:
type: console # or: slack
# Services to monitor for errors
services:
my-api:
datadog_query: "service:my-api status:error"
regions: [us]
code_paths:
- repo: backend
path: src/my_api
# Local repo clones (used for code context during investigation)
repos:
backend: /path/to/your/backend
# Error patterns to ignore (substring match)
ignore_patterns:
- "DeprecationWarning"
- "health_check"
# Tracer transport errors are the agent's own output, not your application's.
# They recur with an embedded timestamp, agent address and endpoint path, so
# each occurrence fingerprints differently and opens a fresh investigation
# that always reaches the same verdict: transient, external, not actionable.
- "Datadog Tracer"
# Automatic fix branches and PRs are disabled by default.
# Enable them deliberately from the dashboard after reviewing the safety model.