Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for minio_stats (0.2 sec)

  1. cmd/metrics.go

    // It creates the Prometheus Description which is used
    // to define metric and  help string
    func newMinioCollector() *minioCollector {
    	return &minioCollector{
    		desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil),
    	}
    }
    
    // minioCollector is the Custom Collector
    type minioCollector struct {
    	desc *prometheus.Desc
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 02 06:48:36 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    }
    
    func newMinioClusterCollector(metricsGroups []*MetricsGroupV2) *minioClusterCollector {
    	return &minioClusterCollector{
    		metricsGroups: metricsGroups,
    		desc:          prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server per cluster", nil, nil),
    	}
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioClusterCollector) Describe(ch chan<- *prometheus.Desc) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top