print version if -debug is present

This commit is contained in:
Adrian Todorov 2018-02-03 21:22:10 +01:00
parent b2da326242
commit a2b027825c
1 changed files with 7 additions and 2 deletions

View File

@ -150,6 +150,13 @@ func (vcenter *VCenter) Init(config Configuration) error {
client := vcenter.client
// Print version
if debug {
aboutInfo := client.Client.ServiceContent.About
stdlog.Println("Version:", aboutInfo.FullName)
}
var perfmanager mo.PerformanceManager
err := client.RetrieveOne(ctx, *client.ServiceContent.PerfManager, nil, &perfmanager)
if err != nil {
@ -753,7 +760,6 @@ func min(n ...int64) int64 {
}
return min
}
func max(n ...int64) int64 {
var max int64 = -1
for _, i := range n {
@ -804,7 +810,6 @@ func worker(id int, config Configuration, influxDBClient influxclient.Client, no
results <- true
continue
}
if err := vcenter.Init(config); err == nil {
vcenter.Query(config, influxDBClient, nowTime)
}