Skip to content

Commit 946245d

Browse files
authored
EOP-275: Updating summary pages with new DNS info (#780)
1 parent 4f5a1e7 commit 946245d

File tree

2 files changed

+169
-10
lines changed

2 files changed

+169
-10
lines changed

content/momentum/4/console-commands/summary.md

+92-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
lastUpdated: "05/08/2023"
2+
lastUpdated: "11/05/2024"
33
title: "summary"
44
description: "summary show global metrics summary with mobile Perhaps the most common and useful command for the console summary will produce global metrics such as queue sizes message counts and throughput rates since startup or the last reset of statistics If you have configured your control listener to listen on the..."
55
---
@@ -26,12 +26,20 @@ Summary Statistics
2626
Active Domains: 35711
2727
Active Queue Size: 8793
2828
Delayed Queue Size: 263175
29-
Destaged Queue Size: 0
3029
Total Queue Size: 272334
30+
DNS Resolver: ares
3131
DNS A Queries: 565284
32+
DNS A Timeouts: 11
33+
DNS AAAA Queries: 0
34+
DNS AAAA Timeouts: 0
3235
DNS MX Queries: 243281
36+
DNS MX Timeouts: 6
37+
DNS TXT Queries: 39841
38+
DNS TXT Timeouts: 0
3339
Pending DNS Queries: 116
3440
Query Rate: 9.08 queries/second
41+
DNS Response Time Peak: 469 ms
42+
DNS Response Time Average: 0.302 ms
3543
Successfully Delivered Messages: 2102439
3644
Failed Messages: 2508439
3745
Rejected Messages: 1
@@ -88,35 +96,91 @@ The number of messages in the system that have been delayed. A message is delaye
8896

8997
</dd>
9098

91-
<dt>Destaged Queue Size</dt>
99+
<dt>Total Queue Size</dt>
92100

93101
<dd>
94102

95-
The number of messages that have been destaged from the system.
103+
The sum of all queues.
96104

97105
</dd>
98106

99-
<dt>Total Queue Size</dt>
107+
<dt>DNS Resolver</dt>
100108

101109
<dd>
102110

103-
The sum of all queues.
111+
The library used to resolve DNS queries.
104112

105113
</dd>
106114

107115
<dt>DNS A Queries</dt>
108116

109117
<dd>
110118

111-
The total number of A/AAAA type queries issued since startup or last summary reset.
119+
The total number of A type queries issued since startup or last summary reset.
120+
121+
</dd>
122+
123+
<dt>DNS A Timeouts</dt>
124+
125+
<dd>
126+
127+
_Introduced in Momentum 4.8._
128+
129+
The total number of A type queries that resulted expired since startup or last summary reset.
130+
131+
</dd>
132+
133+
<dt>DNS AAAA Queries</dt>
134+
135+
<dd>
136+
137+
The total number of AAAA type queries issued since startup or last summary reset.
138+
139+
</dd>
140+
141+
<dt>DNS AAAA Timeouts</dt>
142+
143+
<dd>
144+
145+
_Introduced in Momentum 4.8._
146+
147+
The total number of AAAA type queries that resulted expired since startup or last summary reset.
112148

113149
</dd>
114150

115151
<dt>DNS MX Queries</dt>
116152

117153
<dd>
118154

119-
The total number of MX type DNS queries issued since startup or last summary reset.
155+
The total number of MX type queries issued since startup or last summary reset.
156+
157+
</dd>
158+
159+
<dt>DNS MX Timeouts</dt>
160+
161+
<dd>
162+
163+
_Introduced in Momentum 4.8._
164+
165+
The total number of MX type queries that resulted expired since startup or last summary reset.
166+
167+
<dt>DNS TXT Queries</dt>
168+
169+
<dd>
170+
171+
_Introduced in Momentum 4.8._
172+
173+
The total number of TXT type queries issued since startup or last summary reset.
174+
175+
</dd>
176+
177+
<dt>DNS TXT Timeouts</dt>
178+
179+
<dd>
180+
181+
_Introduced in Momentum 4.8._
182+
183+
The total number of TXT type queries that resulted expired since startup or last summary reset.
120184

121185
</dd>
122186

@@ -136,6 +200,26 @@ The average number of DNS queries/second performed since startup or last summary
136200

137201
</dd>
138202

203+
<dt>DNS Response Time Peak</dt>
204+
205+
<dd>
206+
207+
_Introduced in Momentum 4.8._
208+
209+
The peak of all answers response times since startup or last summary reset, in milliseconds.
210+
211+
</dd>
212+
213+
<dt>DNS Response Time Average</dt>
214+
215+
<dd>
216+
217+
_Introduced in Momentum 4.8._
218+
219+
The average of all answers response times since startup or last summary reset, in milliseconds.
220+
221+
</dd>
222+
139223
<dt>Successfully Delivered Messages</dt>
140224

141225
<dd>

content/momentum/4/http-api-stats/summary.md

+77-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
lastUpdated: "05/08/2023"
2+
lastUpdated: "11/05/2024"
33
title: "Summary"
44
description: "stats summary show global metrics Perhaps the most common API command stats summary will produce global metrics such as queue sizes message counts and throughput rates since startup or the last reset of statistics"
55
---
@@ -31,9 +31,16 @@ Sample output is shown below:
3131
"TotalQueueSize": 47,
3232
"DNSResolver": "ares",
3333
"DNSAQueries": 6307067,
34+
"DNSATimeouts": 34,
3435
"DNSAAAAQueries": 0,
36+
"DNSAAAATimeouts": 0,
3537
"DNSMXQueries": 5361180,
38+
"DNSMXTimeouts": 22,
39+
"DNSTXTQueries": 114992,
40+
"DNSTXTTimeouts": 57,
3641
"DNSQueryRate": 2.25,
42+
"DNSResponseTimePeak": 291,
43+
"DNSResponseTimeAverage": 1.04,
3744
"ResidentMessages": 120,
3845
"DiskQueueProgress": " 29/ 29",
3946
"DeliveredMessages": 516030153,
@@ -118,6 +125,16 @@ The total number of A type queries issued since startup or last summary reset.
118125

119126
</dd>
120127

128+
<dt>DNSATimeouts</dt>
129+
130+
<dd>
131+
132+
_Introduced in Momentum 4.8._
133+
134+
The total number of A type queries that resulted expired since startup or last summary reset.
135+
136+
</dd>
137+
121138
<dt>DNSAAAAQueries</dt>
122139

123140
<dd>
@@ -126,6 +143,16 @@ The total number of AAAA type queries issued since startup or last summary reset
126143

127144
</dd>
128145

146+
<dt>DNSAAAATimeouts</dt>
147+
148+
<dd>
149+
150+
_Introduced in Momentum 4.8._
151+
152+
The total number of AAAA type queries that resulted expired since startup or last summary reset.
153+
154+
</dd>
155+
129156
<dt>DNSMXQueries</dt>
130157

131158
<dd>
@@ -134,6 +161,34 @@ The total number of MX type DNS queries issued since startup or last summary res
134161

135162
</dd>
136163

164+
<dt>DNSMXTimeouts</dt>
165+
166+
<dd>
167+
168+
_Introduced in Momentum 4.8._
169+
170+
The total number of MX type queries that resulted expired since startup or last summary reset.
171+
172+
<dt>DNSTXTQueries</dt>
173+
174+
<dd>
175+
176+
_Introduced in Momentum 4.8._
177+
178+
The total number of TXT type queries issued since startup or last summary reset.
179+
180+
</dd>
181+
182+
<dt>DNSTXTTimeouts</dt>
183+
184+
<dd>
185+
186+
_Introduced in Momentum 4.8._
187+
188+
The total number of TXT type queries that resulted expired since startup or last summary reset.
189+
190+
</dd>
191+
137192
<dt>DNSQueryRate</dt>
138193

139194
<dd>
@@ -142,6 +197,26 @@ The average number of DNS queries/second performed since startup or last summary
142197

143198
</dd>
144199

200+
<dt>DNSResponseTimePeak</dt>
201+
202+
<dd>
203+
204+
_Introduced in Momentum 4.8._
205+
206+
The peak of all answers response times since startup or last summary reset, in milliseconds.
207+
208+
</dd>
209+
210+
<dt>DNSResponseTimeAverage</dt>
211+
212+
<dd>
213+
214+
_Introduced in Momentum 4.8._
215+
216+
The average of all answers response times since startup or last summary reset, in milliseconds.
217+
218+
</dd>
219+
145220
<dt>ResidentMessages</dt>
146221

147222
<dd>
@@ -254,4 +329,4 @@ The number of seconds that Momentum has been running continuously.
254329

255330
## Note
256331

257-
This command was implemented in Momentum 4.4.1.
332+
This command was first implemented in Momentum 4.4.1.

0 commit comments

Comments
 (0)