github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/loadbalancer/lb_service_statisitcs_counter.go (about) 1 package loadbalancer 2 3 type LbServiceStatisticsCounter struct { 4 // Number of l4 current sessions 5 L4CurrentSessions int64 `json:"l4_current_sessions,omitempty"` 6 7 // The average number of l4 current sessions per second, the number is averaged over the last 5 one-second intervals. 8 L4CurrentSessionRate float64 `json:"l4_current_session_rate,omitempty"` 9 10 // Number of l4 maximum sessions 11 L4MaxSessions int64 `json:"l4_max_sessions,omitempty"` 12 13 // Number of l4 total sessions 14 L4TotalSessions int64 `json:"l4_total_sessions,omitempty"` 15 16 // Number of l7 current sessions 17 L7CurrentSessions int64 `json:"l7_current_sessions,omitempty"` 18 19 // The average number of l7 current sessions per second, the number is averaged over the last 5 one-second intervals. 20 L7CurrentSessionRate float64 `json:"l7_current_session_rate,omitempty"` 21 22 // Number of l7 maximum sessions 23 L7MaxSessions int64 `json:"l7_max_sessions,omitempty"` 24 25 // Number of l7 total sessions 26 L7TotalSessions int64 `json:"l7_total_sessions,omitempty"` 27 }