Skip to content

Commit

Permalink
fix: Set featuregate for convert sum/gauge to false temporarily (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
BinaryFissionGames authored Sep 3, 2024
2 parents 7fea48a + e3d26f2 commit b6e77a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions collector/featuregates.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ func SetFeatureFlags() error {
if err := featuregate.GlobalRegistry().Set("filelog.mtimeSortType", true); err != nil {
return fmt.Errorf("failed to enable filelog.mtimeSortType: %w", err)
}
// Temporary while we get some interoperability into BPOP
if err := featuregate.GlobalRegistry().Set("processor.transform.ConvertBetweenSumAndGaugeMetricContext", false); err != nil {
return fmt.Errorf("failed to enable processor.transform.ConvertBetweenSumAndGaugeMetricContext: %w", err)
}

return nil
}

0 comments on commit b6e77a7

Please sign in to comment.