We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2b0278 commit cc748fdCopy full SHA for cc748fd
vsphere-influxdb.go
@@ -165,6 +165,12 @@ func (vcenter *VCenter) Init(config Configuration) error {
165
return err
166
}
167
168
+ // Print PerformanceManager interval collection level
169
+ if debug {
170
+ stdlog.Println("PerformanceManager interval collection level")
171
+ spew.Dump(perfmanager.HistoricalInterval)
172
+ }
173
+
174
for _, perf := range perfmanager.PerfCounter {
175
groupinfo := perf.GroupInfo.GetElementDescription()
176
nameinfo := perf.NameInfo.GetElementDescription()
@@ -186,7 +192,7 @@ func (vcenter *VCenter) Init(config Configuration) error {
186
192
metricgroup := MetricGroup{ObjectType: mtype, Metrics: []MetricDef{metricd}}
187
193
vcenter.MetricGroups = append(vcenter.MetricGroups, &metricgroup)
188
194
189
- }
195
190
196
191
197
198
0 commit comments