Skip to content

Commit a646deb

Browse files
authored
Chore bump 3h queue threshholds to 4h (#40)
Signed-off-by: Jordan Conway <[email protected]>
1 parent af93e82 commit a646deb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/check-long-queue-intel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const jsonData = dd.response.body;
55
const parsedData = JSON.parse(jsonData);
66

77
const highQueueItems = parsedData
8-
.filter(item => item.machine_type.includes(MACHINE_TYPE_FILTER) && item.avg_queue_s > 10800)
8+
.filter(item => item.machine_type.includes(MACHINE_TYPE_FILTER) && item.avg_queue_s > 14400)
99
.map(item => ({ machine_type: item.machine_type, avg_queue_s: item.avg_queue_s }));
1010

1111
if (highQueueItems.length > 0) {

scripts/check-long-queue-lf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const jsonData = dd.response.body;
55
const parsedData = JSON.parse(jsonData);
66

77
const highQueueItems = parsedData
8-
.filter(item => item.machine_type.startsWith(MACHINE_TYPE_FILTER) && item.avg_queue_s > 10800)
8+
.filter(item => item.machine_type.startsWith(MACHINE_TYPE_FILTER) && item.avg_queue_s > 14400)
99
.map(item => ({ machine_type: item.machine_type, avg_queue_s: item.avg_queue_s }));
1010

1111
if (highQueueItems.length > 0) {

scripts/check-long-queue-meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const highQueueItems = parsedData
99
pattern.startsWith('^') ?
1010
new RegExp(pattern).test(machineType) :
1111
machineType.includes(pattern)
12-
) && item.avg_queue_s > 10800;
12+
) && item.avg_queue_s > 14400;
1313
})
1414
.map(item => ({ machine_type: item.machine_type, avg_queue_s: item.avg_queue_s }));
1515
if (highQueueItems.length > 0) {

scripts/check-long-queue-nvidia.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const jsonData = dd.response.body;
55
const parsedData = JSON.parse(jsonData);
66

77
const highQueueItems = parsedData
8-
.filter(item => item.machine_type.includes(MACHINE_TYPE_FILTER) && item.avg_queue_s > 10800)
8+
.filter(item => item.machine_type.includes(MACHINE_TYPE_FILTER) && item.avg_queue_s > 14400)
99
.map(item => ({ machine_type: item.machine_type, avg_queue_s: item.avg_queue_s }));
1010

1111
if (highQueueItems.length > 0) {

0 commit comments

Comments
 (0)