- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for peerMetricsGroups (0.07 sec)
-
cmd/peer-rest-server.go
// GetPeerMetrics gets the metrics to be federated across peers. func (s *peerRESTServer) GetPeerMetrics(_ *grid.MSS) (*grid.Array[*MetricV2], *grid.RemoteErr) { res := make([]*MetricV2, 0, len(peerMetricsGroups)) populateAndPublish(peerMetricsGroups, func(m MetricV2) bool { if m.VariableLabels == nil { m.VariableLabels = make(map[string]string, 1) } m.VariableLabels[serverName] = globalLocalNodeName res = append(res, &m)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 53.2K bytes - Viewed (0) -
cmd/metrics-v2.go
) //go:generate msgp -file=$GOFILE -unexported -io=false var ( nodeCollector *minioNodeCollector clusterCollector *minioClusterCollector bucketCollector *minioBucketCollector peerMetricsGroups []*MetricsGroupV2 bucketPeerMetricsGroups []*MetricsGroupV2 ) func init() { clusterMetricsGroups := []*MetricsGroupV2{ getNodeHealthMetrics(MetricsGroupOpts{dependGlobalNotificationSys: true}),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 131.9K bytes - Viewed (0)