Hi, i`m trying to config Grafana Agent and Blackbox integrations using helm chart final version on AWS EKS 1.29 + ArgoCD but nothing happens, agent starts as usual, passing validation, no errors in logs. On same EKS cluster Loki-distributed ,Mimir-distributed, Garafana are configured and working fine. Here is config of Grafana-Agent. Config part used from docs blackbox_config next | Grafana Agent documentation
What am i doing wrong?
cluster:
name: eks-dev
externalServices:
prometheus:
host: http://mimir-gateway.mimir.svc.cluster.local
tenantId: "metamonitoring"
basicAuth:
username: ${local.prometheus_grafana_agent_name}
password: "${local.prometheus_datasource_password}"
writeEndpoint: /api/v1/push
loki:
host: http://loki-gateway.loki.svc.cluster.local
tenantId: "metamonitoring"
basicAuth:
username: ${local.loki_grafana_agent_name}
password: "${local.loki_datasource_password}"
metrics:
cost:
enabled: false
node-exporter:
enabled: true
wal_directory: /tmp/wal
configs:
- name: default
integrations:
blackbox:
blackbox_targets:
- name: example
address: http://example.com
module: http_2xx
blackbox_config:
modules:
http_2xx:
prober: http
timeout: 5s
http:
method: POST
headers:
Content-Type: application/json
body: '{}'
preferred_ip_protocol: "ip4"
logs:
enabled: true
pod_logs:
enabled: true
cluster_events:
enabled: true
traces:
enabled: false
opencost:
enabled: false
kube-state-metrics:
enabled: true
prometheus-node-exporter:
enabled: true
prometheus-operator-crds:
enabled: true
grafana-agent: {}
grafana-agent-logs: {}
