@@ -202,7 +202,7 @@ func InitializeWindowsMetrics() {
202202 Subsystem : windowsPrefix ,
203203 Help : "Latency in seconds to list HNS endpoints latency" ,
204204 //nolint:gomnd // default bucket consts
205- Buckets : prometheus .ExponentialBuckets (0.016 , 2 , 14 ), // upper bounds of 16 ms to ~2 minutes
205+ Buckets : prometheus .ExponentialBuckets (0.008 , 2 , 14 ), // upper bounds of 8 ms to 65 seconds
206206 },
207207 )
208208
@@ -213,7 +213,7 @@ func InitializeWindowsMetrics() {
213213 Subsystem : windowsPrefix ,
214214 Help : "Latency in seconds to get a single HNS endpoint" ,
215215 //nolint:gomnd // default bucket consts
216- Buckets : prometheus .ExponentialBuckets (0.016 , 2 , 14 ), // upper bounds of 16 ms to ~2 minutes
216+ Buckets : prometheus .ExponentialBuckets (0.008 , 2 , 14 ), // upper bounds of 8 ms to 65 seconds
217217 },
218218 )
219219
@@ -224,7 +224,7 @@ func InitializeWindowsMetrics() {
224224 Subsystem : windowsPrefix ,
225225 Help : "Latency in seconds to get the HNS network" ,
226226 //nolint:gomnd // default bucket consts
227- Buckets : prometheus .ExponentialBuckets (0.016 , 2 , 14 ), // upper bounds of 16 ms to ~2 minutes
227+ Buckets : prometheus .ExponentialBuckets (0.008 , 2 , 14 ), // upper bounds of 8 ms to 65 seconds
228228 },
229229 )
230230
@@ -235,7 +235,7 @@ func InitializeWindowsMetrics() {
235235 Subsystem : windowsPrefix ,
236236 Help : "Latency in seconds to add/update ACLs by operation label" ,
237237 //nolint:gomnd // default bucket consts
238- Buckets : prometheus .ExponentialBuckets (0.016 , 2 , 14 ), // upper bounds of 16 ms to ~2 minutes
238+ Buckets : prometheus .ExponentialBuckets (0.008 , 2 , 14 ), // upper bounds of 8 ms to 65 seconds
239239 },
240240 []string {operationLabel },
241241 )
@@ -247,7 +247,7 @@ func InitializeWindowsMetrics() {
247247 Subsystem : windowsPrefix ,
248248 Help : "Latency in seconds to add/update/delete SetPolicies by operation & is_nested label" ,
249249 //nolint:gomnd // default bucket consts
250- Buckets : prometheus .ExponentialBuckets (0.016 , 2 , 14 ), // upper bounds of 16 ms to ~2 minutes
250+ Buckets : prometheus .ExponentialBuckets (0.008 , 2 , 14 ), // upper bounds of 8 ms to 65 seconds
251251 },
252252 []string {operationLabel , isNestedLabel },
253253 )
0 commit comments