|
5 | 5 | /** counters for flow info */ |
6 | 6 | public class FlowInfoData { |
7 | 7 |
|
8 | | - @JsonProperty("duration") |
9 | | - private double duration; |
| 8 | + @JsonProperty("duration") |
| 9 | + private double duration; |
10 | 10 |
|
11 | | - @JsonProperty("last_data_recv") |
12 | | - private long lastDataRecv; |
| 11 | + @JsonProperty("last_data_recv") |
| 12 | + private long lastDataRecv; |
13 | 13 |
|
14 | | - @JsonProperty("options") |
15 | | - private String options; |
| 14 | + @JsonProperty("options") |
| 15 | + private String options; |
16 | 16 |
|
17 | | - @JsonProperty("origin") |
18 | | - private String origin; |
| 17 | + @JsonProperty("origin") |
| 18 | + private String origin; |
19 | 19 |
|
20 | | - @JsonProperty("rcv_mss") |
21 | | - private long rcvMss; |
| 20 | + @JsonProperty("rcv_mss") |
| 21 | + private long rcvMss; |
22 | 22 |
|
23 | | - @JsonProperty("rcv_nxt") |
24 | | - private long rcvNxt; |
| 23 | + @JsonProperty("rcv_nxt") |
| 24 | + private long rcvNxt; |
25 | 25 |
|
26 | | - @JsonProperty("rcv_ooopack") |
27 | | - private long rcvOoopack; |
| 26 | + @JsonProperty("rcv_ooopack") |
| 27 | + private long rcvOoopack; |
28 | 28 |
|
29 | | - @JsonProperty("rcv_space") |
30 | | - private long rcvSpace; |
| 29 | + @JsonProperty("rcv_space") |
| 30 | + private long rcvSpace; |
31 | 31 |
|
32 | | - @JsonProperty("rcv_wscale") |
33 | | - private short rcvWscale; |
| 32 | + @JsonProperty("rcv_wscale") |
| 33 | + private short rcvWscale; |
34 | 34 |
|
35 | | - @JsonProperty("rto") |
36 | | - private long rto; |
| 35 | + @JsonProperty("rto") |
| 36 | + private long rto; |
37 | 37 |
|
38 | | - @JsonProperty("rtt") |
39 | | - private long rtt; |
| 38 | + @JsonProperty("rtt") |
| 39 | + private long rtt; |
40 | 40 |
|
41 | | - @JsonProperty("rttvar") |
42 | | - private long rttvar; |
| 41 | + @JsonProperty("rttvar") |
| 42 | + private long rttvar; |
43 | 43 |
|
44 | | - @JsonProperty("snd_cwnd") |
45 | | - private long sndCwnd; |
| 44 | + @JsonProperty("snd_cwnd") |
| 45 | + private long sndCwnd; |
46 | 46 |
|
47 | | - @JsonProperty("snd_mss") |
48 | | - private long sndMss; |
| 47 | + @JsonProperty("snd_mss") |
| 48 | + private long sndMss; |
49 | 49 |
|
50 | | - @JsonProperty("snd_nxt") |
51 | | - private long sndNxt; |
| 50 | + @JsonProperty("snd_nxt") |
| 51 | + private long sndNxt; |
52 | 52 |
|
53 | | - @JsonProperty("snd_rexmitpack") |
54 | | - private long sndRexmitpack; |
| 53 | + @JsonProperty("snd_rexmitpack") |
| 54 | + private long sndRexmitpack; |
55 | 55 |
|
56 | | - @JsonProperty("snd_ssthresh") |
57 | | - private long sndSsthresh; |
| 56 | + @JsonProperty("snd_ssthresh") |
| 57 | + private long sndSsthresh; |
58 | 58 |
|
59 | | - @JsonProperty("snd_wnd") |
60 | | - private long sndWnd; |
| 59 | + @JsonProperty("snd_wnd") |
| 60 | + private long sndWnd; |
61 | 61 |
|
62 | | - @JsonProperty("snd_wscale") |
63 | | - private short sndWscale; |
| 62 | + @JsonProperty("snd_wscale") |
| 63 | + private short sndWscale; |
64 | 64 |
|
65 | | - @JsonProperty("snd_zerowin") |
66 | | - private long sndZerowin; |
| 65 | + @JsonProperty("snd_zerowin") |
| 66 | + private long sndZerowin; |
67 | 67 |
|
68 | | - @JsonProperty("state") |
69 | | - private long state; |
| 68 | + @JsonProperty("state") |
| 69 | + private long state; |
70 | 70 |
|
71 | | - public double getDuration() { |
72 | | - return duration; |
73 | | - } |
| 71 | + public double getDuration() { |
| 72 | + return duration; |
| 73 | + } |
74 | 74 |
|
75 | | - public long getLastDataRecv() { |
76 | | - return lastDataRecv; |
77 | | - } |
| 75 | + public long getLastDataRecv() { |
| 76 | + return lastDataRecv; |
| 77 | + } |
78 | 78 |
|
79 | | - public String getOptions() { |
80 | | - return options; |
81 | | - } |
| 79 | + public String getOptions() { |
| 80 | + return options; |
| 81 | + } |
82 | 82 |
|
83 | | - public String getOrigin() { |
84 | | - return origin; |
85 | | - } |
| 83 | + public String getOrigin() { |
| 84 | + return origin; |
| 85 | + } |
86 | 86 |
|
87 | | - public long getRcvMss() { |
88 | | - return rcvMss; |
89 | | - } |
| 87 | + public long getRcvMss() { |
| 88 | + return rcvMss; |
| 89 | + } |
90 | 90 |
|
91 | | - public long getRcvNxt() { |
92 | | - return rcvNxt; |
93 | | - } |
| 91 | + public long getRcvNxt() { |
| 92 | + return rcvNxt; |
| 93 | + } |
94 | 94 |
|
95 | | - public long getRcvOoopack() { |
96 | | - return rcvOoopack; |
97 | | - } |
| 95 | + public long getRcvOoopack() { |
| 96 | + return rcvOoopack; |
| 97 | + } |
98 | 98 |
|
99 | | - public long getRcvSpace() { |
100 | | - return rcvSpace; |
101 | | - } |
| 99 | + public long getRcvSpace() { |
| 100 | + return rcvSpace; |
| 101 | + } |
102 | 102 |
|
103 | | - public short getRcvWscale() { |
104 | | - return rcvWscale; |
105 | | - } |
| 103 | + public short getRcvWscale() { |
| 104 | + return rcvWscale; |
| 105 | + } |
106 | 106 |
|
107 | | - public long getRto() { |
108 | | - return rto; |
109 | | - } |
| 107 | + public long getRto() { |
| 108 | + return rto; |
| 109 | + } |
110 | 110 |
|
111 | | - public long getRtt() { |
112 | | - return rtt; |
113 | | - } |
| 111 | + public long getRtt() { |
| 112 | + return rtt; |
| 113 | + } |
114 | 114 |
|
115 | | - public long getRttvar() { |
116 | | - return rttvar; |
117 | | - } |
| 115 | + public long getRttvar() { |
| 116 | + return rttvar; |
| 117 | + } |
118 | 118 |
|
119 | | - public long getSndCwnd() { |
120 | | - return sndCwnd; |
121 | | - } |
| 119 | + public long getSndCwnd() { |
| 120 | + return sndCwnd; |
| 121 | + } |
122 | 122 |
|
123 | | - public long getSndMss() { |
124 | | - return sndMss; |
125 | | - } |
| 123 | + public long getSndMss() { |
| 124 | + return sndMss; |
| 125 | + } |
126 | 126 |
|
127 | | - public long getSndNxt() { |
128 | | - return sndNxt; |
129 | | - } |
| 127 | + public long getSndNxt() { |
| 128 | + return sndNxt; |
| 129 | + } |
130 | 130 |
|
131 | | - public long getSndRexmitpack() { |
132 | | - return sndRexmitpack; |
133 | | - } |
| 131 | + public long getSndRexmitpack() { |
| 132 | + return sndRexmitpack; |
| 133 | + } |
134 | 134 |
|
135 | | - public long getSndSsthresh() { |
136 | | - return sndSsthresh; |
137 | | - } |
| 135 | + public long getSndSsthresh() { |
| 136 | + return sndSsthresh; |
| 137 | + } |
138 | 138 |
|
139 | | - public long getSndWnd() { |
140 | | - return sndWnd; |
141 | | - } |
| 139 | + public long getSndWnd() { |
| 140 | + return sndWnd; |
| 141 | + } |
142 | 142 |
|
143 | | - public short getSndWscale() { |
144 | | - return sndWscale; |
145 | | - } |
| 143 | + public short getSndWscale() { |
| 144 | + return sndWscale; |
| 145 | + } |
146 | 146 |
|
147 | | - public long getSndZerowin() { |
148 | | - return sndZerowin; |
149 | | - } |
| 147 | + public long getSndZerowin() { |
| 148 | + return sndZerowin; |
| 149 | + } |
150 | 150 |
|
151 | | - public long getState() { |
152 | | - return state; |
153 | | - } |
| 151 | + public long getState() { |
| 152 | + return state; |
| 153 | + } |
154 | 154 | } |
0 commit comments