dfdr/essai/analytics/settings.yaml
2025-11-29 07:35:29 +01:00

53 lines
1 KiB
YAML

# Analytics dashboard configuration
dashboard:
title: "Website Analytics Dashboard"
refresh_interval: 300 # seconds
timezone: "UTC"
# Data sources
data_sources:
- name: "web_analytics"
type: "google_analytics"
enabled: true
- name: "user_tracking"
type: "internal"
enabled: true
- name: "conversion_tracking"
type: "mixpanel"
enabled: false
# Chart configurations
charts:
page_views:
type: "line"
time_range: "7d"
color: "#3498db"
bounce_rate:
type: "gauge"
threshold: 0.5
color: "#e74c3c"
conversion_funnel:
type: "funnel"
steps:
- "landing_page"
- "product_view"
- "add_to_cart"
- "checkout"
- "purchase"
# Alerts
alerts:
high_bounce_rate:
threshold: 0.6
enabled: true
notification_email: "admin@example.com"
low_conversion:
threshold: 0.02
enabled: true
notification_email: "marketing@example.com"
# Export settings
export:
formats: ["csv", "json", "pdf"]
schedule: "daily"
recipients: ["analytics@example.com"]