Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for cedric (0.51 sec)

  1. pkg/kubelet/metrics/collectors/volume_stats.go

    	ch <- volumeStatsInodesUsedDesc
    	ch <- volumeStatsHealthAbnormalDesc
    }
    
    // CollectWithStability implements the metrics.StableCollector interface.
    func (collector *volumeStatsCollector) CollectWithStability(ch chan<- metrics.Metric) {
    	ctx := context.Background()
    	podStats, err := collector.statsProvider.ListPodStats(ctx)
    	if err != nil {
    		return
    	}
    	addGauge := func(desc *metrics.Desc, pvcRef *stats.PVCReference, v float64, lv ...string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - A new kubelet metric `image_pull_duration_seconds` was added. The metric tracks the duration (in seconds) it takes for an image to be pulled, including the time spent in the waiting queue of image puller. The metric is broken down by bucketed image size. ([#121719](https://github.com/kubernetes/kubernetes/pull/121719), [@ruiwen-zhao](https://github.com/ruiwen-zhao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. cmd/kubemark/app/hollow_node.go

    	"k8s.io/client-go/tools/clientcmd"
    	"k8s.io/client-go/tools/events"
    	cliflag "k8s.io/component-base/cli/flag"
    	_ "k8s.io/component-base/metrics/prometheus/restclient" // for client metric registration
    	_ "k8s.io/component-base/metrics/prometheus/version"    // for version metric registration
    	"k8s.io/component-base/version"
    	"k8s.io/component-base/version/verflag"
    	remote "k8s.io/cri-client/pkg"
    	fakeremote "k8s.io/cri-client/pkg/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

            "/tensorflow/core/tf2xla/api/v1/"
            "phase2_compilation_status", /*metric_name*/
            "Tracks the compilation status of the non-mlir bridge",
            /* metric description */ "status" /* metric label */);
    
    auto* phase2_bridge_compilation_time = tsl::monitoring::Sampler<1>::New(
        {"/tensorflow/core/tf2xla/api/v1/phase2_compilation_time",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/trace/reader_test.go

    				continue
    			}
    			// Make sure getters don't do anything that panics
    			switch ev.Kind() {
    			case trace.EventLabel:
    				ev.Label()
    			case trace.EventLog:
    				ev.Log()
    			case trace.EventMetric:
    				ev.Metric()
    			case trace.EventRangeActive, trace.EventRangeBegin:
    				ev.Range()
    			case trace.EventRangeEnd:
    				ev.Range()
    				ev.RangeAttributes()
    			case trace.EventStateTransition:
    				ev.StateTransition()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/trace/gen.go

    		})
    	}
    }
    
    // globalMetricGenerator implements a generic handler for Metric events.
    type globalMetricGenerator struct {
    }
    
    // GlobalMetric implements an event handler for EventMetric events. ev must be one such event.
    func (g *globalMetricGenerator) GlobalMetric(ctx *traceContext, ev *trace.Event) {
    	m := ev.Metric()
    	switch m.Name {
    	case "/memory/classes/heap/objects:bytes":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    					}
    					match = str == wantEv.match
    				case trace.EventRangeBegin:
    					rng := ev.Range()
    					match = rng.Name == wantEv.match
    				case trace.EventMetric:
    					metric := ev.Metric()
    					match = metric.Name == wantEv.match
    				}
    				match = match && stackMatches(ev.Stack(), wantEv.frames)
    				if match {
    					want[i] = want[len(want)-1]
    					want = want[:len(want)-1]
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/node_ipam_controller.go

    	} else {
    		go nc.cidrAllocator.Run(ctx)
    	}
    
    	<-ctx.Done()
    }
    
    // RunWithMetrics is a wrapper for Run that also tracks starting and stopping of the nodeipam controller with additional metric
    func (nc *Controller) RunWithMetrics(ctx context.Context, controllerManagerMetrics *controllersmetrics.ControllerManagerMetrics) {
    	controllerManagerMetrics.ControllerStarted("nodeipam")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top