Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endpoint_no_pod (0.33 sec)

  1. pilot/pkg/model/push_context.go

    	metricMap[key] = ev
    }
    
    var (
    
    	// EndpointNoPod tracks endpoints without an associated pod. This is an error condition, since
    	// we can't figure out the labels. It may be a transient problem, if endpoint is processed before
    	// pod.
    	EndpointNoPod = monitoring.NewGauge(
    		"endpoint_no_pod",
    		"Endpoints without an associated pod.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	log.Debugf("Endpoint without pod %s %s.%s", ip, ep.Name, ep.Namespace)
    	endpointsWithNoPods.Increment()
    	if c.opts.Metrics != nil {
    		c.opts.Metrics.AddMetric(model.EndpointNoPod, string(host), "", ip)
    	}
    	// Tell pod cache we want to queue the endpoint event when this pod arrives.
    	c.pods.queueEndpointEventOnPodArrival(config.NamespacedName(ep), ip)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top