Skip to content

Commit

Permalink
Added LONG_RUNNING tag to the GUI
Browse files Browse the repository at this point in the history
(cherry picked from commit 6ce5c28)
  • Loading branch information
sidoruka committed Oct 18, 2024
1 parent 2cf17ad commit 87d37dd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion client/src/components/runs/run-tags/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ const KNOWN_TAG_NAMES = {
node_unavailable: 'node_unavailable',
proc_out_of_memory: 'proc_out_of_memory',
network_limit: 'network_limit',
network_pressure: 'network_pressure'
network_pressure: 'network_pressure',
long_running: 'long_running'
};

const KNOWN_TAG_RENDER = {
Expand Down Expand Up @@ -91,6 +92,9 @@ const PREDEFINED_TAGS = [{
}, {
tag: KNOWN_TAG_NAMES.network_pressure,
color: 'critical'
}, {
tag: KNOWN_TAG_NAMES.long_running,
color: 'warning'
}];

const KNOWN_COLORS = {
Expand Down

0 comments on commit 87d37dd

Please sign in to comment.