Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for metricsGroups (0.25 sec)

  1. cmd/metrics-v2.go

    	}
    }
    
    //msgp:ignore minioBucketCollector
    type minioBucketCollector struct {
    	metricsGroups []*MetricsGroupV2
    	desc          *prometheus.Desc
    }
    
    func newMinioBucketCollector(metricsGroups []*MetricsGroupV2) *minioBucketCollector {
    	return &minioBucketCollector{
    		metricsGroups: metricsGroups,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-handler.go

    //
    // FIXME: It currently only lists `minio_` prefixed metrics.
    func (h *metricsV3Server) listMetrics(path string) http.Handler {
    	// First collect all matching MetricsGroup's
    	matchingMG := make(map[collectorPath]*MetricsGroup)
    	for _, collPath := range h.metricsData.collectorPaths {
    		if collPath.isDescendantOf(path) {
    			if v, ok := h.metricsData.mgMap[collPath]; ok {
    				matchingMG[collPath] = v
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top