Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nameVal (0.15 sec)

  1. pilot/pkg/model/gateway.go

    }
    
    var (
    	typeTag = monitoring.CreateLabel("type")
    	nameTag = monitoring.CreateLabel("name")
    
    	totalRejectedConfigs = monitoring.NewSum(
    		"pilot_total_rejected_configs",
    		"Total number of configs that Pilot had to reject or ignore.",
    	)
    )
    
    func RecordRejectedConfig(gatewayName string) {
    	totalRejectedConfigs.With(typeTag.Value("gateway"), nameTag.Value(gatewayName)).Increment()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top