fix: enable dot metrics by default (#9061)

This commit is contained in:
Vibhu Pandey
2025-09-11 23:29:55 +05:30
committed by GitHub
parent c477ec65da
commit 61acd946cc
12 changed files with 63 additions and 63 deletions

View File

@@ -40,7 +40,7 @@ var IsDotMetricsEnabled = false
var IsPreferSpanMetrics = false
func init() {
if GetOrDefaultEnv(DotMetricsEnabled, "false") == "true" {
if GetOrDefaultEnv(DotMetricsEnabled, "true") == "true" {
IsDotMetricsEnabled = true
}