Fix export timestamp not working for prometheus on v2 (#7289)

This commit is contained in:
Andrés Álvarez
2020-04-06 22:21:01 +02:00
committed by GitHub
parent c56596dec2
commit df145c7e56
3 changed files with 35 additions and 2 deletions

View File

@@ -139,7 +139,7 @@ func (p *PrometheusClient) Init() error {
return err
}
case 2:
p.collector = v2.NewCollector(p.ExpirationInterval.Duration, p.StringAsLabel)
p.collector = v2.NewCollector(p.ExpirationInterval.Duration, p.StringAsLabel, p.ExportTimestamp)
err := registry.Register(p.collector)
if err != nil {
return err