Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for adsClientCount (0.24 sec)

  1. pilot/pkg/xds/ads.go

    	if !req.Full {
    		log.Infof("XDS: Incremental Pushing ConnectedEndpoints:%d Version:%s",
    			s.adsClientCount(), req.Push.PushVersion)
    	} else {
    		totalService := len(req.Push.GetAllServices())
    		log.Infof("XDS: Pushing Services:%d ConnectedEndpoints:%d Version:%s",
    			totalService, s.adsClientCount(), req.Push.PushVersion)
    		monServices.Record(float64(totalService))
    
    		// Make sure the ConfigsUpdated map exists
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    		_, _ = w.Write([]byte("Failed to parse request\n"))
    		return true
    	}
    	if req.Form.Get("push") != "" {
    		AdsPushAll(s)
    		_, _ = fmt.Fprintf(w, "Pushed to %d servers\n", s.adsClientCount())
    		return true
    	}
    	return false
    }
    
    // getDebugConnection fetches the Connection requested by proxyID
    func (s *DiscoveryServer) getDebugConnection(req *http.Request) (string, *Connection) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top