Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xds_proxy_requests (0.19 sec)

  1. pkg/istio-agent/metrics/metrics.go

    		"The total number of connection errors from envoy",
    	)
    
    	// TODO: Add type url as type for requeasts and responses if needed.
    
    	// XdsProxyRequests records total number of downstream requests.
    	XdsProxyRequests = monitoring.NewSum(
    		"xds_proxy_requests",
    		"The total number of Xds Proxy Requests",
    	)
    
    	// XdsProxyResponses records total number of upstream responses.
    	XdsProxyResponses = monitoring.NewSum(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    				"sub", len(req.ResourceNamesSubscribe),
    				"unsub", len(req.ResourceNamesUnsubscribe),
    				"nonce", req.ResponseNonce,
    				"initial", len(req.InitialResourceVersions),
    			).Debugf("delta request")
    			metrics.XdsProxyRequests.Increment()
    			if req.TypeUrl == model.ExtensionConfigurationType {
    				p.ecdsLastNonce.Store(req.ResponseNonce)
    			}
    
    			if err := con.upstreamDeltas.Send(req); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    				// only send healthcheck probe after LDS request has been sent
    				continue
    			}
    			proxyLog.Debugf("request for type url %s", req.TypeUrl)
    			metrics.XdsProxyRequests.Increment()
    			if req.TypeUrl == model.ExtensionConfigurationType {
    				if req.VersionInfo != "" {
    					p.ecdsLastAckVersion.Store(req.VersionInfo)
    				}
    				p.ecdsLastNonce.Store(req.ResponseNonce)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top