cmd/dex: adapt to prometheus API change
Signed-off-by: Stephan Renatus <srenatus@chef.io>
This commit is contained in:
parent
076cd77469
commit
ea7fd6d470
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ func serve(cmd *cobra.Command, args []string) error {
|
||||||
return fmt.Errorf("failed to register Go runtime metrics: %v", err)
|
return fmt.Errorf("failed to register Go runtime metrics: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
err = prometheusRegistry.Register(prometheus.NewProcessCollector(os.Getpid(), ""))
|
err = prometheusRegistry.Register(prometheus.NewProcessCollector(prometheus.ProcessCollectorOpts{}))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("failed to register process metrics: %v", err)
|
return fmt.Errorf("failed to register process metrics: %v", err)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue