Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for newGauge (0.35 sec)

  1. pilot/pkg/model/push_context.go

    	ProxyStatusNoService = monitoring.NewGauge(
    		"pilot_no_ip",
    		"Pods not found in the endpoint table, possibly invalid.",
    	)
    
    	// ProxyStatusEndpointNotReady represents proxies found not be ready.
    	// Updated by GetProxyServiceTargets. Normal condition when starting
    	// an app with readiness, error if it doesn't change to 0.
    	ProxyStatusEndpointNotReady = monitoring.NewGauge(
    		"pilot_endpoint_not_ready",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

        /** {@inheritDoc} */
        public VersionRange getVersionRange() {
            return artifact.getVersionRange();
        }
    
        /** {@inheritDoc} */
        public void setVersionRange(VersionRange newRange) {
            artifact.setVersionRange(newRange);
        }
    
        /** {@inheritDoc} */
        public void selectVersion(String version) {
            artifact.selectVersion(version);
        }
    
        /** {@inheritDoc} */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

        }
    
        public void restrictRange(Artifact artifact, Artifact replacement, VersionRange newRange) {
            logger.debug(indent + artifact + " (range restricted from: " + artifact.getVersionRange() + " and: "
                    + replacement.getVersionRange() + " to: " + newRange + " )");
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.6K 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. maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java

        public void manageArtifact(Artifact artifact, Artifact replacement) {}
    
        public void selectVersionFromRange(Artifact artifact) {}
    
        public void restrictRange(Artifact artifact, Artifact replacement, VersionRange newRange) {}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top