Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for cedric (0.37 sec)

  1. cmd/metrics-v2.go

    		})
    		return metrics
    	})
    	return mg
    }
    
    func collectMetric(metric MetricV2, labels []string, values []string, metricName string, out chan<- prometheus.Metric) {
    	if metric.Description.Type == histogramMetric {
    		if metric.Histogram == nil {
    			return
    		}
    		for k, v := range metric.Histogram {
    			pmetric, err := prometheus.NewConstMetric(
    				prometheus.NewDesc(
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    # Bucket Metrics
    
    MinIO collects the following metrics at the bucket level.
    Each metric includes the ``bucket`` label to identify the corresponding bucket.
    Metrics may include one or more additional labels, such as the server that calculated that metric.
    
    These metrics can be obtained from any MinIO server once per collection by using the following URL:
    
    ```shell
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_test.go

    		})
    	}
    }
    
    func TestTelemetryFilters(t *testing.T) {
    	overrides := []*tpb.MetricsOverrides{{
    		Match: &tpb.MetricSelector{
    			MetricMatch: &tpb.MetricSelector_Metric{
    				Metric: tpb.MetricSelector_REQUEST_COUNT,
    			},
    		},
    		TagOverrides: map[string]*tpb.MetricsOverrides_TagOverride{
    			"remove": {
    				Operation: tpb.MetricsOverrides_TagOverride_REMOVE,
    			},
    			"add": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. go.mod

    	go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0 // indirect
    	go.opentelemetry.io/otel v1.27.0 // indirect
    	go.opentelemetry.io/otel/metric v1.27.0 // indirect
    	go.opentelemetry.io/otel/trace v1.27.0 // indirect
    	go.uber.org/multierr v1.11.0 // indirect
    	golang.org/x/mod v0.18.0 // indirect
    	golang.org/x/net v0.26.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    				Values: []*structpb.Value{},
    			},
    		},
    	}
    
    	svcMetaList := im.Fields["services"].GetListValue()
    
    	// Add service related metadata. This will be consumed by telemetry v2 filter for metric labels.
    	if direction == model.TrafficDirectionInbound {
    		// For inbound cluster, add all services on the cluster port
    		have := sets.New[host.Name]()
    		for _, svc := range inboundServices {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    			},
    		}
    	}
    
    	// Add compressed telemetry metadata. Note this is a short term solution to make server workload metadata
    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. go.sum

    go.opentelemetry.io/otel v1.27.0 h1:9BZoF3yMK/O1AafMiQTVu0YDj5Ea4hPhxCs7sGva+cg=
    go.opentelemetry.io/otel v1.27.0/go.mod h1:DMpAK8fzYRzs+bi3rS5REupisuqTheUlSZJ1WnZaPAQ=
    go.opentelemetry.io/otel/metric v1.27.0 h1:hvj3vdEKyeCi4YaYfNjv2NUje8FqKqUY8IlF0FxV/ik=
    go.opentelemetry.io/otel/metric v1.27.0/go.mod h1:mVFgmRlhljgBiuk/MP/oKylr4hs85GZAylncepAX/ak=
    go.opentelemetry.io/otel/sdk v1.24.0 h1:YMPPDNymmQN3ZgczicBY3B6sf9n62Dlj9pWD3ucgoDw=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    		}
    	}
    	if len(counts) > 0 {
    		// in case a combination is lost
    		klog.V(3).InfoS("Programmer error, did not report a kubelet_working_pods metric for a value returned by SyncKnownPods", "counts", counts)
    	}
    
    	// Remove any cgroups in the hierarchy for pods that are definitely no longer
    	// running (not in the container runtime).
    	if kl.cgroupsPerQOS {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    		klet.configMapManager = configMapManager
    	}
    
    	machineInfo, err := klet.cadvisor.MachineInfo()
    	if err != nil {
    		return nil, err
    	}
    	// Avoid collector collects it as a timestamped metric
    	// See PR #95210 and #97006 for more details.
    	machineInfo.Timestamp = time.Time{}
    	klet.setCachedMachineInfo(machineInfo)
    
    	imageBackOff := flowcontrol.NewBackOff(backOffPeriod, MaxContainerBackOff)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. CREDITS

       limitations under the License.
    
    ================================================================
    
    go.opentelemetry.io/otel/metric
    https://go.opentelemetry.io/otel/metric
    ----------------------------------------------------------------
                                     Apache License
                               Version 2.0, January 2004
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top