Fluxv2 datadog integration #3157
Replies: 4 comments 4 replies
-
@melchiormoulin this looks great, we could add the integration to https://fluxcd.io/ecosystem/#integrations cc @dholbach |
Beta Was this translation helpful? Give feedback.
-
Is anyone using this integration successfully? The example config (https://github.com/DataDog/integrations-extras/blob/master/fluxcd/datadog_checks/fluxcd/data/conf.yaml.example) is just a default template. From the code, I think one needs to point the config to the flux metrics endpoints? |
Beta Was this translation helpful? Give feedback.
-
For people finding this ticket, if you're using helm you want to add values like this to your helm chart if using datadog (after also installing the fluxcd agent in your dockerfile): (Do the same for the other controllers (notificationController/kustomizeController/etc) sourceController:
annotations:
prometheus.io/scrape: "false"
ad.datadoghq.com/manager.checks: |
{
"fluxcd": {
"instances": [ {
"openmetrics_endpoint": "http://%%host%%:8080/metrics"
} ]
}
}
labels:
tags.datadoghq.com/source: source-controller
tags.datadoghq.com/service: source-controller How to install the fluxcd agent in your dockerfile FROM datadog/agent:7.44.0
RUN agent integration install -r -t datadog-fluxcd==0.0.1 |
Beta Was this translation helpful? Give feedback.
-
Anybody managed to get this setup with datadog-operator? |
Beta Was this translation helpful? Give feedback.
-
Hello just to inform you that Blablacar developed a Datadog integration for flux2
This enable to scrape metrics from datadog agent.
Beta Was this translation helpful? Give feedback.
All reactions