github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/monitoring/traceflow_observation_counters.go (about) 1 /* Copyright © 2017 VMware, Inc. All Rights Reserved. 2 SPDX-License-Identifier: BSD-2-Clause 3 4 Generated by: https://github.com/swagger-api/swagger-codegen.git */ 5 6 package monitoring 7 8 type TraceflowObservationCounters struct { 9 10 // Total number of delivered observations for this traceflow round. 11 DeliveredCount int64 `json:"delivered_count,omitempty"` 12 13 // Total number of dropped observations for this round. 14 DroppedCount int64 `json:"dropped_count,omitempty"` 15 16 // Total number of forwarded observations for this traceflow round. 17 ForwardedCount int64 `json:"forwarded_count,omitempty"` 18 19 // Total number of received observations for this traceflow round. 20 ReceivedCount int64 `json:"received_count,omitempty"` 21 }