Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _automatic_reload_failures_total (0.25 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics_test.go

    	`
    	metricNames := []string{
    		namespace + "_" + subsystem + "_automatic_reload_failures_total",
    		namespace + "_" + subsystem + "_automatic_reloads_total",
    	}
    
    	deprecatedEncryptionConfigAutomaticReloadFailureTotal.Reset()
    	encryptionConfigAutomaticReloadsTotal.Reset()
    	RegisterMetrics()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics.go

    	deprecatedEncryptionConfigAutomaticReloadFailureTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Namespace:         namespace,
    			Subsystem:         subsystem,
    			Name:              "automatic_reload_failures_total",
    			Help:              "Total number of failed automatic reloads of encryption configuration split by apiserver identity.",
    			StabilityLevel:    metrics.ALPHA,
    			DeprecatedVersion: "1.30.0",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top