Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,070 for Metric2 (0.39 sec)

  1. pkg/scheduler/metrics/metrics.go

    func BackoffPods() metrics.GaugeMetric {
    	return pendingPods.With(metrics.Labels{"queue": "backoff"})
    }
    
    // UnschedulablePods returns the pending pods metrics with the label unschedulable
    func UnschedulablePods() metrics.GaugeMetric {
    	return pendingPods.With(metrics.Labels{"queue": "unschedulable"})
    }
    
    // GatedPods returns the pending pods metrics with the label gated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
     * involves explicitly acknowledging support for the metric across multiple releases, in accordance with
     * the metric stability policy.
     */
    var (
    	listCacheCount = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    	latencyBuckets = []float64{0.005, 0.025, 0.1, 0.5, 2.5, 12.5}
    
    	// Metrics provides access to all dial metrics.
    	Metrics = newDialMetrics()
    )
    
    // DialMetrics instruments dials to proxy server with prometheus metrics.
    type DialMetrics struct {
    	clock     clock.Clock
    	starts    *metrics.CounterVec
    	latencies *metrics.HistogramVec
    	failures  *metrics.CounterVec
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. src/runtime/metrics.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    // Metrics implementation exported to runtime/metrics.
    
    import (
    	"internal/godebugs"
    	"unsafe"
    )
    
    var (
    	// metrics is a map of runtime/metrics keys to data used by the runtime
    	// to sample each metric's value. metricsInit indicates it has been
    	// initialized.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/metrics/metrics.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package metrics
    
    import (
    	"k8s.io/component-base/metrics"
    )
    
    const ReplicaSetControllerSubsystem = "replicaset_controller"
    
    var SortingDeletionAgeRatio = metrics.NewHistogram(
    	&metrics.HistogramOpts{
    		Subsystem: ReplicaSetControllerSubsystem,
    		Name:      "sorting_deletion_age_ratio",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 15:28:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/metrics/metrics.go

    	attachDetachController        = "attach_detach_controller"
    )
    
    var (
    	inUseVolumeMetricDesc = metrics.NewDesc(
    		metrics.BuildFQName("", "storage_count", "attachable_volumes_in_use"),
    		"Measure number of volumes in use",
    		[]string{"node", "volume_plugin"}, nil,
    		metrics.ALPHA, "")
    
    	totalVolumesMetricDesc = metrics.NewDesc(
    		metrics.BuildFQName("", "attachdetach_controller", "total_volumes"),
    		"Number of volumes in A/D Controller",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 10 06:30:05 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. cmd/metrics-v3-types.go

    }
    
    // MetricsGroup - represents a group of metrics. It includes a `MetricsLoaderFn`
    // function that provides a way to load the metrics from the system. The metrics
    // are cached and refreshed after a given timeout.
    //
    // For metrics with a `bucket` dimension, a list of buckets argument is required
    // to collect the metrics.
    //
    // It implements the prometheus.Collector interface for metric groups without a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. istioctl/pkg/metrics/metrics.go

    `,
    		Example: `  # Retrieve workload metrics for productpage-v1 workload
      istioctl experimental metrics productpage-v1
    
      # Retrieve workload metrics for various services with custom duration
      istioctl experimental metrics productpage-v1 -d 2m
    
      # Retrieve workload metrics for various services in the different namespaces
      istioctl experimental metrics productpage-v1.foo reviews-v1.bar ratings-v1.baz`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. cmd/metrics-v3-handler.go

    // server lists all metrics that could be returned for the requested path.
    //
    // The (repeatable) `buckets` query parameter is a list of bucket names (or it
    // could be a comma separated value) to return metrics with a bucket label.
    // Bucket metrics will be returned only for the provided buckets. If no buckets
    // parameter is provided, no bucket metrics are returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    	WebhookRejectionNoError WebhookRejectionErrorType = "no_error"
    )
    
    var (
    	latencySummaryMaxAge = 5 * time.Hour
    
    	// Metrics provides access to all admission metrics.
    	Metrics = newAdmissionMetrics()
    )
    
    // ObserverFunc is a func that emits metrics.
    type ObserverFunc func(ctx context.Context, elapsed time.Duration, rejected bool, attr admission.Attributes, stepType string, extraLabels ...string)
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top