Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ENVOY_PROMETHEUS_PORT (0.32 sec)

  1. pkg/bootstrap/option/instances.go

    }
    
    func EnvoyStatusPort(value int) Instance {
    	return newOption("envoy_status_port", value)
    }
    
    func EnvoyPrometheusPort(value int) Instance {
    	return newOption("envoy_prometheus_port", value)
    }
    
    func STSPort(value int) Instance {
    	return newOption("sts_port", value)
    }
    
    func GCPProjectID(value string) Instance {
    	return newOption("gcp_project_id", value)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/options.go

    	envoyStatusPortEnv = env.Register("ENVOY_STATUS_PORT", 15021,
    		"Envoy health status port value").Get()
    	envoyPrometheusPortEnv = env.Register("ENVOY_PROMETHEUS_PORT", 15090,
    		"Envoy prometheus redirection port value").Get()
    
    	// Defined by https://github.com/grpc/proposal/blob/c5722a35e71f83f07535c6c7c890cf0c58ec90c0/A27-xds-global-load-balancing.md#xdsclient-and-bootstrap-file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top