Skip to content

Commit

Permalink
changed to time time
Browse files Browse the repository at this point in the history
  • Loading branch information
sagostin committed Jul 11, 2024
1 parent 4f4ea32 commit 0e8c7dc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions internal/agent/probe_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -518,15 +518,15 @@ type HostMemoryInfo struct {
}

type TrafficSimClientStats struct {
AverageRTT float64 `json:"averageRTT" bson:"averageRTT"`
DuplicatePackets int `json:"duplicatePackets" bson:"duplicatePackets"`
LostPackets int `json:"lostPackets" bson:"lostPackets"`
MaxRTT int `json:"maxRTT" bson:"maxRTT"`
MinRTT int `json:"minRTT" bson:"minRTT"`
OutOfSequence int `json:"outOfSequence" bson:"outOfSequence"`
StdDevRTT float64 `json:"stdDevRTT" bson:"stdDevRTT"`
TotalPackets int `json:"totalPackets" bson:"totalPackets"`
ReportTime int64 `json:"reportTime" bson:"reportTime"`
AverageRTT float64 `json:"averageRTT" bson:"averageRTT"`
DuplicatePackets int `json:"duplicatePackets" bson:"duplicatePackets"`
LostPackets int `json:"lostPackets" bson:"lostPackets"`
MaxRTT int `json:"maxRTT" bson:"maxRTT"`
MinRTT int `json:"minRTT" bson:"minRTT"`
OutOfSequence int `json:"outOfSequence" bson:"outOfSequence"`
StdDevRTT float64 `json:"stdDevRTT" bson:"stdDevRTT"`
TotalPackets int `json:"totalPackets" bson:"totalPackets"`
ReportTime time.Time `json:"reportTime" bson:"reportTime"`
}

/*return map[string]interface{}{
Expand Down

0 comments on commit 0e8c7dc

Please sign in to comment.