Hey Signoz team, when I updated to the helm chart for 0.91.0, `DOT_METRICS_ENABLED` doesn't get set ...
e
Hey Signoz team, when I updated to the helm chart for 0.91.0,
DOT_METRICS_ENABLED
doesn't get set in my Signoz statefulset. Originally, I had it as part of an override in
signoz.additionalEnvs.[DOT_METRICS_ENABLED]
which worked for 0.90.1, but when that broke during the update to 0.91, I moved it to
signoz.env.dot_metrics_enabled
, then finally removed it from the override entirely. Each time, deploying Signoz 0.91.0 from the helm chart doesn't set
DOT_METRICS_ENABLED
and I need to manually edit the statefulset using
kubectl edit sts/signoz
to manually add the entry. Without doing this, none of my dashboards have metrics. Thoughts?
n
Hey @Eric Therrien, is it working on setting it up in signoz.env ?
I tested it and concluded that backwards compatibility should work if you include DOT_METRICS_ENABLED in additionalEnvs, using a lowercase format.
e
I did not work when setting it up in signoz.env; testing as additionalEnvs now
It works now! Solution was to swap
signoz.additionalEnvs.[DOT_METRICS_ENABLED]
to
signoz.additionalEnvs.[dot_metrics_enabled]
.Thanks @Nagesh Bansal
🙌 1