Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for authorization_attempts_total (0.89 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    				authorizer.DecisionAllow,
    				"RBAC: allowed to patch pod",
    				nil,
    			},
    			want: `
    			# HELP authorization_attempts_total [ALPHA] Counter of authorization attempts broken down by result. It can be either 'allowed', 'denied', 'no-opinion' or 'error'.
    			# TYPE authorization_attempts_total counter
    			authorization_attempts_total{result="allowed"} 1
    				`,
    		},
    		{
    			desc: "decision forbid",
    			authorizer: fakeAuthorizer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"result"},
    	)
    
    	authorizationAttemptsCounter = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Name:           "authorization_attempts_total",
    			Help:           "Counter of authorization attempts broken down by result. It can be either 'allowed', 'denied', 'no-opinion' or 'error'.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"result"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - `kube-apiserver` added two new metrics `authorization_attempts_total` and `authorization_duration_seconds`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top