Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[exporter/datadog] Add telemetry metric for runtime metrics #23138

Merged
Prev Previous commit
Update exporter/datadogexporter/internal/metrics/consumer.go
Co-authored-by: Yang Song <[email protected]>
  • Loading branch information
liustanley and songy23 committed Jun 8, 2023
commit f8425379d971b45b71dc18152afa73a85a2b653f
2 changes: 1 addition & 1 deletion exporter/datadogexporter/internal/metrics/consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (c *Consumer) runningMetrics(timestamp uint64, buildInfo component.BuildInf
}

for _, lang := range metadata.Languages {
tags := append(buildTags, "language:"+lang)
tags := append(buildTags, "language:"+lang) // nolint
runningMetric := DefaultMetrics("runtime_metrics", "", timestamp, tags)
series = append(series, runningMetric...)
}
Expand Down
Loading