Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xds_proxy_responses (0.13 sec)

  1. 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)
  2. 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