Skip to content

Commit

Permalink
add default to cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
abbas-gheydi committed Oct 28, 2023
1 parent 875b460 commit 69e59ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var (
disableSlowMetrics = kingpin.Flag("disable-slow-metrics", "Disable slow metrics for performance reasons").Default("false").Bool()
disableDeprecatedMetrics = kingpin.Flag("disable-deprecated-metrics", "Disable deprecated metrics").Default("false").Bool()
disableCinderAgentUUID = kingpin.Flag("disable-cinder-agent-uuid", "Disable UUID generation for Cinder agents").Default("false").Bool()
cloud = kingpin.Arg("cloud", "name or id of the cloud to gather metrics from").String()
cloud = kingpin.Arg("cloud", "name or id of the cloud to gather metrics from").Default("default").String()
multiCloud = kingpin.Flag("multi-cloud", "Toggle the multiple cloud scraping mode under /probe?cloud=").Default("false").Bool()
domainID = kingpin.Flag("domain-id", "Gather metrics only for the given Domain ID (defaults to all domains)").String()
)
Expand Down

0 comments on commit 69e59ca

Please sign in to comment.