stack stopped and deployment exited warning instead of critical

This commit is contained in:
mbecker20
2026-02-26 14:25:31 -08:00
parent f41a61116a
commit d13314eb98

View File

@@ -168,7 +168,7 @@ export const stackStateIntention = (state?: Types.StackState) => {
case Types.StackState.Paused:
return "Warning";
case Types.StackState.Stopped:
return "Critical";
return "Warning";
case Types.StackState.Restarting:
return "Critical";
case Types.StackState.Down:
@@ -194,6 +194,8 @@ export const deploymentStateIntention: (
return "Neutral";
case Types.DeploymentState.Paused:
return "Warning";
case Types.DeploymentState.Exited:
return "Warning";
case Types.DeploymentState.Unknown:
return "Unknown";
default: