Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for collectorPaths (0.11 sec)

  1. cmd/metrics-v3.go

    	clusterConfigCollectorPath       collectorPath = "/cluster/config"
    
    	ilmCollectorPath           collectorPath = "/ilm"
    	auditCollectorPath         collectorPath = "/audit"
    	loggerWebhookCollectorPath collectorPath = "/logger/webhook"
    	replicationCollectorPath   collectorPath = "/replication"
    	notificationCollectorPath  collectorPath = "/notification"
    	scannerCollectorPath       collectorPath = "/scanner"
    )
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 02 00:55:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. cmd/metrics-v3-handler.go

    	// by /api/a/b and /api/a/c (and any other matching descendant collector
    	// paths).
    
    	var gatherers []prometheus.Gatherer
    	for _, collectorPath := range h.metricsData.collectorPaths {
    		if collectorPath.isDescendantOf(path) {
    			gatherer := h.metricsData.mgGatherers[collectorPath]
    
    			// For Bucket metrics we need to set the buckets argument inside the
    			// metric group, so that it will affect collection. If no buckets
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 15 16:28:02 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. cmd/metrics-v3-types.go

    	"github.com/pkg/errors"
    	"github.com/prometheus/client_golang/prometheus"
    	"golang.org/x/exp/slices"
    )
    
    type collectorPath string
    
    // metricPrefix converts a collector path to a metric name prefix. The path is
    // converted to snake-case (by replaced '/' and '-' with '_') and prefixed with
    // `minio_`.
    func (cp collectorPath) metricPrefix() string {
    	s := strings.TrimPrefix(string(cp), SlashSeparator)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jul 30 22:28:46 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top