- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for MetricName (0.12 sec)
-
cmd/metrics-resource.go
interfaceRxBytes MetricName = "rx_bytes" interfaceRxErrors MetricName = "rx_errors" interfaceTxBytes MetricName = "tx_bytes" interfaceTxErrors MetricName = "tx_errors" // cpu stats cpuUser MetricName = "user" cpuSystem MetricName = "system" cpuIOWait MetricName = "iowait" cpuIdle MetricName = "idle" cpuNice MetricName = "nice" cpuSteal MetricName = "steal" cpuLoad1 MetricName = "load1"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 23:30:33 UTC 2024 - 17.2K bytes - Viewed (0) -
cmd/metrics-v2.go
freeBytes MetricName = "free_bytes" readBytes MetricName = "read_bytes" rcharBytes MetricName = "rchar_bytes" receivedBytes MetricName = "received_bytes" latencyMilliSec MetricName = "latency_ms" sentBytes MetricName = "sent_bytes" totalBytes MetricName = "total_bytes" usedBytes MetricName = "used_bytes"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 131.9K bytes - Viewed (0) -
cmd/metrics-v3-api.go
apiRequestsErrorsTotal MetricName = "errors_total" apiRequests5xxErrorsTotal MetricName = "5xx_errors_total" apiRequests4xxErrorsTotal MetricName = "4xx_errors_total" apiRequestsCanceledTotal MetricName = "canceled_total" apiRequestsTTFBSecondsDistribution MetricName = "ttfb_seconds_distribution" apiTrafficSentBytes MetricName = "traffic_sent_bytes"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 9.4K bytes - Viewed (0) -
cmd/metrics-v3-types.go
// value of this type is passed to the `MetricsLoaderFn`. type MetricValues struct { values map[MetricName][]metricValue descriptors map[MetricName]MetricDescriptor } func newMetricValues(d map[MetricName]MetricDescriptor) MetricValues { return MetricValues{ values: make(map[MetricName][]metricValue, len(d)), descriptors: d, } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 30 22:28:46 UTC 2024 - 15.6K bytes - Viewed (0) -
cmd/site-replication.go
for k, v := range v.Failed.ErrCounts { v2.Failed.ErrCounts[k] += v } if v2.XferStats == nil { v2.XferStats = make(map[replication.MetricName]replication.XferStats) } for rm, x := range v.XferStats { x2, ok := v2.XferStats[replication.MetricName(rm)] if !ok { x2 = replication.XferStats{} } x2.AvgRate += x.Avg x2.CurrRate += x.Curr if x.Peak > x2.PeakRate {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 185.1K bytes - Viewed (0)