Skip to content

Commit 73659c6

Browse files
committed
sqPoller schema: add statusStr, units to fields
Signed-off-by: Dinesh Dutt <[email protected]>
1 parent 2d3212e commit 73659c6

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

suzieq/config/schema/sqPoller.avsc

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
},
2323
"display": 4,
24-
"description": "[min, max, avg] of time taken to get data, computed over the greater between the last 5 mins and the polling period"
24+
"description": "[min, max, avg] of time(ms) taken to get data, computed over the greater between the last 5 mins and the polling period"
2525
},
2626
{
2727
"name": "totalTime",
@@ -33,7 +33,7 @@
3333
}
3434
},
3535
"display": 5,
36-
"description": "[min, max, avg] of time taken to get & process data,computed over the greater between the last 5 mins and the polling period"
36+
"description": "[min, max, avg] of time(ms) taken to get & process data,computed over the greater between the last 5 mins and the polling period"
3737
},
3838
{
3939
"name": "svcQsize",
@@ -45,7 +45,7 @@
4545
}
4646
},
4747
"display": 6,
48-
"description": "[min, max, avg] of service queue size, computed over the greater between the last 5 mins and the polling period"
48+
"description": "[min, max, avg] of service queue length, computed over the greater between the last 5 mins and the polling period"
4949
},
5050
{
5151
"name": "wrQsize",
@@ -57,7 +57,7 @@
5757
}
5858
},
5959
"display": 7,
60-
"description": "[min, max, avg] of write queue size, computed over the greater between the last 5 mins and the polling period"
60+
"description": "[min, max, avg] of write queue length, computed over the greater between the last 5 mins and the polling period"
6161
},
6262
{
6363
"name": "nodeQsize",
@@ -69,7 +69,7 @@
6969
}
7070
},
7171
"display": 8,
72-
"description": "[min, max, avg] of node queue size, computed over the greater between the last 5 mins and the polling period"
72+
"description": "[min, max, avg] of node queue length, computed over the greater between the last 5 mins and the polling period"
7373
},
7474
{
7575
"name": "rxBytes",
@@ -97,8 +97,14 @@
9797
{
9898
"name": "status",
9999
"type": "long",
100+
"description": "Service polling status code. 0 or 200 means successfully polled, -1 means time timeout, other values mean failed to poll"
101+
},
102+
{
103+
"name": "statusStr",
104+
"type": "string",
100105
"display": 3,
101-
"description": "Service polling status. 0 or 200 means successfully polled, -1 means time timeout, other values mean failed to poll"
106+
"description": "Service polling status string",
107+
"depends": "status"
102108
},
103109
{
104110
"name": "nodesPolledCnt",

0 commit comments

Comments
 (0)