Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xds_proxy_responses (0.29 sec)

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

    	XdsProxyRequests = monitoring.NewSum(
    		"xds_proxy_requests",
    		"The total number of Xds Proxy Requests",
    	)
    
    	// XdsProxyResponses records total number of upstream responses.
    	XdsProxyResponses = monitoring.NewSum(
    		"xds_proxy_responses",
    		"The total number of Xds Proxy Responses",
    	)
    
    	IstiodConnectionCancellations = istiodDisconnections.With(disconnectionTypeTag.Value(Cancel))
    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

    				"type", model.GetShortType(resp.TypeUrl),
    				"nonce", resp.Nonce,
    				"resources", len(resp.Resources),
    				"removes", len(resp.RemovedResources),
    			).Debugf("upstream response")
    			metrics.XdsProxyResponses.Increment()
    			if h, f := p.handlers[resp.TypeUrl]; f {
    				if len(resp.Resources) == 0 {
    					// Empty response, nothing to do
    					// This assumes internal types are always singleton
    					break
    				}
    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

    			proxyLog.WithLabels(
    				"id", con.conID,
    				"type", model.GetShortType(resp.TypeUrl),
    				"resources", len(resp.Resources),
    			).Debugf("upstream response")
    			metrics.XdsProxyResponses.Increment()
    			if h, f := p.handlers[resp.TypeUrl]; f {
    				if len(resp.Resources) == 0 {
    					// Empty response, nothing to do
    					// This assumes internal types are always singleton
    					break
    				}
    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