Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CDSUpdatesSuccess (0.14 sec)

  1. pilot/cmd/pilot-agent/status/util/stats.go

    type stat struct {
    	name  string
    	value *uint64
    	found bool
    }
    
    // Stats contains values of interest from a poll of Envoy stats.
    type Stats struct {
    	// Update Stats.
    	CDSUpdatesSuccess   uint64
    	CDSUpdatesRejection uint64
    	LDSUpdatesSuccess   uint64
    	LDSUpdatesRejection uint64
    	// Server State of Envoy.
    	ServerState    uint64
    	WorkersStarted uint64
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/status/ready/probe.go

    		return nil
    	}
    	if p.receivedFirstUpdate {
    		return nil
    	}
    
    	s, err := util.GetUpdateStatusStats(p.LocalHostAddr, p.AdminPort)
    	if err != nil {
    		return err
    	}
    
    	CDSUpdated := s.CDSUpdatesSuccess > 0
    	LDSUpdated := s.LDSUpdatesSuccess > 0
    	if CDSUpdated && LDSUpdated {
    		p.receivedFirstUpdate = true
    		return nil
    	}
    
    	if !CDSUpdated && !LDSUpdated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top