Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for newGauge (0.35 sec)

  1. pkg/xds/monitoring.go

    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	cdsReject = monitoring.NewGauge(
    		"pilot_xds_cds_reject",
    		"Pilot rejected CDS configs.",
    	)
    
    	// pilot_total_xds_rejects should be used instead. This is for backwards compatibility
    	edsReject = monitoring.NewGauge(
    		"pilot_xds_eds_reject",
    		"Pilot rejected EDS.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. security/pkg/server/ca/monitoring.go

    	)
    
    	successCounts = monitoring.NewSum(
    		"citadel_server_success_cert_issuance_count",
    		"The number of certificates issuances that have succeeded.",
    	)
    
    	rootCertExpiryTimestamp = monitoring.NewGauge(
    		"citadel_server_root_cert_expiry_timestamp",
    		"The unix timestamp, in seconds, when Citadel root cert will expire. "+
    			"A negative time indicates the cert is expired.",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/monitoring.go

    	versionTag = monitoring.CreateLabel("version")
    
    	monServices = monitoring.NewGauge(
    		"pilot_services",
    		"Total services known to pilot.",
    	)
    
    	// TODO: Update all the resource stats in separate routine
    	// virtual services, destination rules, gateways, etc.
    	xdsClients = monitoring.NewGauge(
    		"pilot_xds",
    		"Number of endpoints connected to this pilot using XDS.",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/monitoring.go

    	VirtualHost PatchType = "vhost"
    )
    
    var (
    	patchType  = monitoring.CreateLabel("patch")
    	resultType = monitoring.CreateLabel("result")
    	nameType   = monitoring.CreateLabel("name")
    
    	envoyFilterStatus = monitoring.NewGauge(
    		"pilot_envoy_filter_status",
    		"Status of Envoy filters whether it was applied or errored.",
    		monitoring.WithEnabled(func() bool {
    			return features.EnableEnvoyFilterMetrics
    		}),
    	)
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/monitoring.go

    		"Current istiod server uptime in seconds",
    	).ValueFrom(func() float64 {
    		return time.Since(serverStart).Seconds()
    	})
    
    	versionTag   = monitoring.CreateLabel("version")
    	pilotVersion = monitoring.NewGauge(
    		"pilot_info",
    		"Pilot version and build information.",
    	)
    )
    
    func init() {
    	pilotVersion.With(versionTag.Value(version.Info.String())).Record(1)
    }
    
    func addMonitor(mux *http.ServeMux) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top