You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: collector/diskstats_common.go
+15-4
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,20 @@ const (
33
33
var (
34
34
diskLabelNames= []string{"device"}
35
35
36
-
diskstatsDeviceExclude=kingpin.Flag("collector.diskstats.device-exclude", "Regexp of diskstats devices to exclude (mutually exclusive to device-include).").Default(diskstatsDefaultIgnoredDevices).String()
37
-
oldDiskstatsDeviceExclude=kingpin.Flag("collector.diskstats.ignored-devices", "DEPRECATED: Use collector.diskstats.device-exclude").String()
38
-
diskstatsDeviceInclude=kingpin.Flag("collector.diskstats.device-include", "Regexp of diskstats devices to include (mutually exclusive to device-exclude).").String()
36
+
diskstatsDeviceExcludeSetbool
37
+
diskstatsDeviceExclude=kingpin.Flag(
38
+
"collector.diskstats.device-exclude",
39
+
"Regexp of diskstats devices to exclude (mutually exclusive to device-include).",
"DEPRECATED: Use collector.diskstats.device-exclude",
47
+
).Hidden().String()
48
+
49
+
diskstatsDeviceInclude=kingpin.Flag("collector.diskstats.device-include", "Regexp of diskstats devices to include (mutually exclusive to device-exclude).").String()
level.Warn(logger).Log("msg", "--collector.diskstats.ignored-devices is DEPRECATED and will be removed in 2.0.0, use --collector.diskstats.device-exclude")
0 commit comments