File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1+ - Unify local obs stack metrics for otel Prom between local and production, remove suffixes
Original file line number Diff line number Diff line change @@ -173,12 +173,10 @@ func ObservabilityUpFull() error {
173173
174174func ObservabilityDown () error {
175175 L .Info ().Msg ("Removing local observability stack" )
176- err : = RunCommand ("bash" , "-c" , fmt .Sprintf (`
176+ _ = RunCommand ("bash" , "-c" , fmt .Sprintf (`
177177 cd %s && \
178178 docker compose down -v && docker rm -f promtail
179179 ` , "compose" ))
180- if err != nil {
181- return err
182- }
183- return RunCommand ("bash" , "-c" , "rm -rf compose/" )
180+ _ = RunCommand ("bash" , "-c" , "rm -rf compose/" )
181+ return nil
184182}
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ exporters:
2121 insecure : true
2222 prometheus :
2323 endpoint : " 0.0.0.0:8889"
24+ resource_to_telemetry_conversion :
25+ enabled : true
26+ add_metric_suffixes : false
2427
2528processors :
2629 transform :
You can’t perform that action at this time.
0 commit comments