-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp-config.example.yaml
More file actions
32 lines (27 loc) · 1.04 KB
/
app-config.example.yaml
File metadata and controls
32 lines (27 loc) · 1.04 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
# Example configuration for Datadog Software Catalog Entity Provider
catalog:
providers:
datadogService:
# Datadog API Key - use environment variable for security
apiKey: '${DATADOG_API_KEY}'
# Datadog Application Key - use environment variable for security
applicationKey: '${DATADOG_APPLICATION_KEY}'
# Optional: Datadog site (default: datadoghq.com)
# For EU: datadoghq.eu
# For US3: us3.datadoghq.com
# For US5: us5.datadoghq.com
# For AP1: ap1.datadoghq.com
site: 'datadoghq.com'
# Optional: Default owner for services without owner information
defaultOwner: 'platform-team'
# Optional: Refresh schedule
# Default: every 60 minutes
schedule:
frequency:
minutes: 60
timeout:
minutes: 50
# Alternative schedule format (cron expression)
# schedule: '0 */1 * * *' # Every hour
# schedule: '0 */6 * * *' # Every 6 hours
# schedule: '0 0 * * *' # Daily at midnight