Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for newGauge (0.18 sec)

  1. pkg/kubelet/metrics/metrics.go

    	OrphanPodCleanedVolumesErrors = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           orphanPodCleanedVolumesErrorsKey,
    			Help:           "The number of orphaned Pods whose volumes failed to be cleaned in the last periodic sweep.",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	NodeStartupPreKubeletDuration = metrics.NewGauge(
    		&metrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// SyncProxyRulesLastTimestamp is the timestamp proxy rules were last
    	// successfully synced.
    	SyncProxyRulesLastTimestamp = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_last_timestamp_seconds",
    			Help:           "The last time proxy rules were successfully synced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache.go

    		"xds_cache_evictions",
    		"Total number of xds cache evictions.",
    		monitoring.WithEnabled(enableStats),
    	)
    
    	xdsCacheSize = monitoring.NewGauge(
    		"xds_cache_size",
    		"Current size of xds cache",
    		monitoring.WithEnabled(enableStats),
    	)
    
    	dependentConfigSize = monitoring.NewGauge(
    		"xds_cache_dependent_config_size",
    		"Current size of dependent configs",
    		monitoring.WithEnabled(enableStats),
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

    	keyIDHashStatusLastTimestampSecondsMetricLabels *lru.Cache
    	cacheSize                                       = 100
    
    	// This metric is only used for KMS v1 API.
    	dekCacheFillPercent = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "dek_cache_fill_percent",
    			Help:           "Percent of the cache slots currently occupied by cached DEKs.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/ztunnelserver.go

    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/zdsapi"
    )
    
    var (
    	ztunnelKeepAliveCheckInterval = 5 * time.Second
    	readWriteDeadline             = 5 * time.Second
    )
    
    var ztunnelConnected = monitoring.NewGauge("ztunnel_connected",
    	"number of connections to ztunnel")
    
    type ZtunnelServer interface {
    	Run(ctx context.Context)
    	PodDeleted(ctx context.Context, uid string) error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/kube/multicluster/secretcontroller.go

    		"Number of times remote clusters took too long to sync, causing slow startup that excludes remote clusters.",
    	)
    
    	clusterType = monitoring.CreateLabel("cluster_type")
    
    	clustersCount = monitoring.NewGauge(
    		"istiod_managed_clusters",
    		"Number of clusters managed by istiod",
    	)
    
    	localClusters  = clustersCount.With(clusterType.Value("local"))
    	remoteClusters = clustersCount.With(clusterType.Value("remote"))
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Name:           "target_seats",
    			Help:           "Seat allocation targets",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{priorityLevel},
    	)
    	apiserverFairFracs = compbasemetrics.NewGauge(
    		&compbasemetrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "seat_fair_frac",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller.go

    	endpointsWithNoPods = monitoring.NewSum(
    		"pilot_k8s_endpoints_with_no_pods",
    		"Endpoints that does not have any corresponding pods.")
    
    	endpointsPendingPodUpdate = monitoring.NewGauge(
    		"pilot_k8s_endpoints_pending_pod",
    		"Number of endpoints that do not currently have any corresponding pods.",
    	)
    )
    
    // Options stores the configurable attributes of a Controller.
    type Options struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                // version but the restriction is identical
                                VersionRange newRange = previousRange.restrict(currentRange);
                                // TODO ick. this forces the OCE that should have come from the previous call. It is still
                                // correct
                                if (newRange.isSelectedVersionKnown(previous.getArtifact())) {
                                    fireEvent(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  10. tests/update_test.go

    	// Update a single field of the user and verify that the changed address is not stored.
    	newAge := uint(100)
    	user.Account.Number = "new_account_number"
    	db := DB.Model(&user).UpdateColumns(User{Age: newAge})
    
    	if db.RowsAffected != 1 {
    		t.Errorf("Expected RowsAffected=1 but instead RowsAffected=%v", db.RowsAffected)
    	}
    
    	// Verify that Age now=`newAge`.
    	result := &User{}
    	result.ID = user.ID
    	DB.Preload("Account").First(result)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
Back to top