forked from TrueCloudLab/frostfs-api-go
Merge pull request #29 from nspcc-dev/fix-bug-with-decoding-metrics
Fix bug with DecodeMetrics (empty metrics returns)
This commit is contained in:
commit
41167eb040
1 changed files with 1 additions and 0 deletions
|
@ -45,6 +45,7 @@ func DecodeMetrics(r *MetricsResponse) ([]*MetricFamily, error) {
|
|||
if err := proto.Unmarshal(r.Metrics[i], mf); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
metrics = append(metrics, mf)
|
||||
}
|
||||
|
||||
return metrics, nil
|
||||
|
|
Loading…
Reference in a new issue