Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for citadel_server_csr_count (0.35 sec)

  1. security/pkg/server/ca/monitoring.go

    package ca
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    const (
    	errorlabel = "error"
    )
    
    var (
    	errorTag = monitoring.CreateLabel(errorlabel)
    
    	csrCounts = monitoring.NewSum(
    		"citadel_server_csr_count",
    		"The number of CSRs received by Citadel server.",
    	)
    
    	authnErrorCounts = monitoring.NewSum(
    		"citadel_server_authentication_failure_count",
    		"The number of authentication failures.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top