Fix panic in mongodb input if ShardStats is nil (#6680)
This commit is contained in:
@@ -983,6 +983,7 @@ func NewStatLine(oldMongo, newMongo MongoStatus, key string, all bool, sampleSec
|
||||
}
|
||||
|
||||
// Set shard stats
|
||||
if newMongo.ShardStats != nil {
|
||||
newShardStats := *newMongo.ShardStats
|
||||
returnVal.TotalInUse = newShardStats.TotalInUse
|
||||
returnVal.TotalAvailable = newShardStats.TotalAvailable
|
||||
@@ -999,6 +1000,7 @@ func NewStatLine(oldMongo, newMongo MongoStatus, key string, all bool, sampleSec
|
||||
|
||||
returnVal.ShardHostStatsLines[host] = *shardStatLine
|
||||
}
|
||||
}
|
||||
|
||||
return returnVal
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user