Skip to content

Commit

Permalink
reorder ax fields
Browse files Browse the repository at this point in the history
  • Loading branch information
theganyo committed May 29, 2020
1 parent 0096dc5 commit 88d93b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions analytics/record.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ import (
type Record struct {
ClientReceivedStartTimestamp int64 `json:"client_received_start_timestamp"`
ClientReceivedEndTimestamp int64 `json:"client_received_end_timestamp"`
ClientSentStartTimestamp int64 `json:"client_sent_start_timestamp"`
ClientSentEndTimestamp int64 `json:"client_sent_end_timestamp"`
TargetReceivedStartTimestamp int64 `json:"target_received_start_timestamp,omitempty"`
TargetReceivedEndTimestamp int64 `json:"target_received_end_timestamp,omitempty"`
TargetSentStartTimestamp int64 `json:"target_sent_start_timestamp,omitempty"`
TargetSentEndTimestamp int64 `json:"target_sent_end_timestamp,omitempty"`
TargetReceivedStartTimestamp int64 `json:"target_received_start_timestamp,omitempty"`
TargetReceivedEndTimestamp int64 `json:"target_received_end_timestamp,omitempty"`
ClientSentStartTimestamp int64 `json:"client_sent_start_timestamp"`
ClientSentEndTimestamp int64 `json:"client_sent_end_timestamp"`
RecordType string `json:"recordType"`
APIProxy string `json:"apiproxy"`
RequestURI string `json:"request_uri"`
Expand Down

0 comments on commit 88d93b3

Please sign in to comment.