Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewRegistry (0.15 sec)

  1. cmd/metrics.go

    				[]string{"disk"}, nil),
    			prometheus.GaugeValue,
    			float64(disk.TotalSpace),
    			disk.DrivePath,
    		)
    	}
    }
    
    func metricsHandler() http.Handler {
    	registry := prometheus.NewRegistry()
    
    	logger.CriticalIf(GlobalContext, registry.Register(minioVersionInfo))
    
    	logger.CriticalIf(GlobalContext, registry.Register(newMinioCollector()))
    
    	gatherers := prometheus.Gatherers{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication-stats.go

    	}
    	return st.Clone()
    }
    
    // NewReplicationStats initialize in-memory replication statistics
    func NewReplicationStats(ctx context.Context, objectAPI ObjectLayer) *ReplicationStats {
    	r := metrics.NewRegistry()
    	rs := ReplicationStats{
    		Cache:           make(map[string]*BucketReplicationStats),
    		qCache:          newQueueCache(r),
    		pCache:          newProxyStatsCache(),
    		srStats:         newSRStats(),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    	}
    }
    
    func metricsHTTPHandler(c prometheus.Collector, funcName string) http.Handler {
    	registry := prometheus.NewRegistry()
    
    	// Report all other metrics
    	logger.CriticalIf(GlobalContext, registry.Register(c))
    
    	// DefaultGatherers include golang metrics and process metrics.
    	gatherers := prometheus.Gatherers{
    		registry,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top