|
1 | 1 | package collectors
|
2 | 2 |
|
3 | 3 | import (
|
| 4 | + client "purestorage/fb-openmetrics-exporter/internal/rest-client" |
| 5 | + |
4 | 6 | "github.com/prometheus/client_golang/prometheus"
|
5 |
| - "purestorage/fb-openmetrics-exporter/internal/rest-client" |
6 | 7 | )
|
7 | 8 |
|
8 | 9 | type BucketsPerfCollector struct {
|
@@ -99,25 +100,25 @@ func NewBucketsPerfCollector(fb *client.FBClient,
|
99 | 100 | return &BucketsPerfCollector{
|
100 | 101 | LatencyDesc: prometheus.NewDesc(
|
101 | 102 | "purefb_buckets_performance_latency_usec",
|
102 |
| - "FlashBlade buckets latency", |
| 103 | + "FlashBlade buckets latency in microseconds", |
103 | 104 | []string{"name", "dimension"},
|
104 | 105 | prometheus.Labels{},
|
105 | 106 | ),
|
106 | 107 | ThroughputDesc: prometheus.NewDesc(
|
107 | 108 | "purefb_buckets_performance_throughput_iops",
|
108 |
| - "FlashBlade buckets throughput", |
| 109 | + "FlashBlade buckets throughput in operations per second", |
109 | 110 | []string{"name", "dimension"},
|
110 | 111 | prometheus.Labels{},
|
111 | 112 | ),
|
112 | 113 | BandwidthDesc: prometheus.NewDesc(
|
113 | 114 | "purefb_buckets_performance_bandwidth_bytes",
|
114 |
| - "FlashBlade buckets bandwidth", |
| 115 | + "FlashBlade buckets bandwidth in bytes per second", |
115 | 116 | []string{"name", "dimension"},
|
116 | 117 | prometheus.Labels{},
|
117 | 118 | ),
|
118 | 119 | AverageSizeDesc: prometheus.NewDesc(
|
119 | 120 | "purefb_buckets_performance_average_bytes",
|
120 |
| - "FlashBlade buckets average operations size", |
| 121 | + "FlashBlade buckets average operations size in bytes", |
121 | 122 | []string{"name", "dimension"},
|
122 | 123 | prometheus.Labels{},
|
123 | 124 | ),
|
|
0 commit comments