space.highport.admin.getQueueStats
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.admin.getQueueStats",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"queued",
11
11
"running",
12
12
"failed",
13
13
"oldestQueuedAgeSeconds",
14
14
"byAction"
15
15
],
16
16
"properties": {
17
17
"failed": {
18
18
"type": "integer"
19
19
},
20
20
"queued": {
21
21
"type": "integer"
22
22
},
23
23
"running": {
24
24
"type": "integer"
25
25
},
26
26
"byAction": {
27
27
"type": "unknown",
28
-
"description": "Map of job action to a count object."
28
+
"description": "Job counts by action."
29
29
},
30
30
"oldestQueuedAgeSeconds": {
31
31
"type": "integer"
32
32
}
33
33
}
34
34
},
35
35
"encoding": "application/json"
36
36
},
37
37
"description": "Job queue depth, oldest job age, and failure counts."
38
38
}
39
39
},
40
40
"$type": "com.atproto.lexicon.schema",
41
41
"lexicon": 1
42
42
}