mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Nicer panel health colors for both light and dark modes
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
dffc526b2b
commit
6cfee68b72
|
@ -9,7 +9,7 @@
|
||||||
.labelBadge {
|
.labelBadge {
|
||||||
background-color: light-dark(
|
background-color: light-dark(
|
||||||
var(--mantine-color-gray-1),
|
var(--mantine-color-gray-1),
|
||||||
var(--mantine-color-gray-9)
|
var(--mantine-color-gray-8)
|
||||||
);
|
);
|
||||||
color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-gray-5));
|
color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-gray-5));
|
||||||
}
|
}
|
||||||
|
|
19
web/ui/mantine-ui/src/Panel.module.css
Normal file
19
web/ui/mantine-ui/src/Panel.module.css
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
.panelHealthOk {
|
||||||
|
border-left: 5px solid
|
||||||
|
light-dark(var(--mantine-color-green-3), var(--mantine-color-green-8)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panelHealthErr {
|
||||||
|
border-left: 5px solid
|
||||||
|
light-dark(var(--mantine-color-red-3), var(--mantine-color-red-9)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panelHealthWarn {
|
||||||
|
border-left: 5px solid
|
||||||
|
light-dark(var(--mantine-color-orange-3), var(--mantine-color-yellow-9)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panelHealthUnknown {
|
||||||
|
border-left: 5px solid
|
||||||
|
light-dark(var(--mantine-color-gray-3), var(--mantine-color-gray-6)) !important;
|
||||||
|
}
|
|
@ -14,6 +14,7 @@ import {
|
||||||
import { useSuspenseAPIQuery } from "../api/api";
|
import { useSuspenseAPIQuery } from "../api/api";
|
||||||
import { AlertingRulesResult } from "../api/responseTypes/rules";
|
import { AlertingRulesResult } from "../api/responseTypes/rules";
|
||||||
import badgeClasses from "../Badge.module.css";
|
import badgeClasses from "../Badge.module.css";
|
||||||
|
import panelClasses from "../Panel.module.css";
|
||||||
import RuleDefinition from "../components/RuleDefinition";
|
import RuleDefinition from "../components/RuleDefinition";
|
||||||
import { humanizeDurationRelative, now } from "../lib/formatTime";
|
import { humanizeDurationRelative, now } from "../lib/formatTime";
|
||||||
import { Fragment } from "react";
|
import { Fragment } from "react";
|
||||||
|
@ -113,16 +114,24 @@ export default function AlertsPage() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Accordion.Item
|
<Accordion.Item
|
||||||
|
styles={{
|
||||||
|
item: {
|
||||||
|
// TODO: This transparency hack is an OK workaround to make the collapsed items
|
||||||
|
// have a different background color than their surrounding group card in dark mode,
|
||||||
|
// but it would be better to use CSS to override the light/dark colors for
|
||||||
|
// collapsed/expanded accordion items.
|
||||||
|
backgroundColor: "#c0c0c015",
|
||||||
|
},
|
||||||
|
}}
|
||||||
key={j}
|
key={j}
|
||||||
value={j.toString()}
|
value={j.toString()}
|
||||||
style={{
|
className={
|
||||||
borderLeft:
|
numFiring > 0
|
||||||
numFiring > 0
|
? panelClasses.panelHealthErr
|
||||||
? "5px solid var(--mantine-color-red-4)"
|
: numPending > 0
|
||||||
: numPending > 0
|
? panelClasses.panelHealthWarn
|
||||||
? "5px solid var(--mantine-color-orange-5)"
|
: panelClasses.panelHealthOk
|
||||||
: "5px solid var(--mantine-color-green-4)",
|
}
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Group wrap="nowrap" justify="space-between" mr="lg">
|
<Group wrap="nowrap" justify="space-between" mr="lg">
|
||||||
|
|
|
@ -109,6 +109,15 @@ export default function RulesPage() {
|
||||||
<Accordion multiple variant="separated">
|
<Accordion multiple variant="separated">
|
||||||
{g.rules.map((r, j) => (
|
{g.rules.map((r, j) => (
|
||||||
<Accordion.Item
|
<Accordion.Item
|
||||||
|
styles={{
|
||||||
|
item: {
|
||||||
|
// TODO: This transparency hack is an OK workaround to make the collapsed items
|
||||||
|
// have a different background color than their surrounding group card in dark mode,
|
||||||
|
// but it would be better to use CSS to override the light/dark colors for
|
||||||
|
// collapsed/expanded accordion items.
|
||||||
|
backgroundColor: "#c0c0c015",
|
||||||
|
},
|
||||||
|
}}
|
||||||
key={j}
|
key={j}
|
||||||
value={j.toString()}
|
value={j.toString()}
|
||||||
style={{
|
style={{
|
||||||
|
@ -116,8 +125,8 @@ export default function RulesPage() {
|
||||||
r.health === "err"
|
r.health === "err"
|
||||||
? "5px solid var(--mantine-color-red-4)"
|
? "5px solid var(--mantine-color-red-4)"
|
||||||
: r.health === "unknown"
|
: r.health === "unknown"
|
||||||
? "5px solid var(--mantine-color-gray-5)"
|
? "5px solid var(--mantine-color-gray-5)"
|
||||||
: "5px solid var(--mantine-color-green-4)",
|
: "5px solid var(--mantine-color-green-4)",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
|
|
|
@ -14,7 +14,6 @@ import { IconAlertTriangle, IconInfoCircle } from "@tabler/icons-react";
|
||||||
import { useSuspenseAPIQuery } from "../../api/api";
|
import { useSuspenseAPIQuery } from "../../api/api";
|
||||||
import { Target, TargetsResult } from "../../api/responseTypes/targets";
|
import { Target, TargetsResult } from "../../api/responseTypes/targets";
|
||||||
import React, { FC, useState } from "react";
|
import React, { FC, useState } from "react";
|
||||||
import badgeClasses from "../../Badge.module.css";
|
|
||||||
import {
|
import {
|
||||||
humanizeDurationRelative,
|
humanizeDurationRelative,
|
||||||
humanizeDuration,
|
humanizeDuration,
|
||||||
|
@ -26,6 +25,9 @@ import { setCollapsedPools } from "../../state/targetsPageSlice";
|
||||||
import EndpointLink from "../../components/EndpointLink";
|
import EndpointLink from "../../components/EndpointLink";
|
||||||
import CustomInfiniteScroll from "../../components/CustomInfiniteScroll";
|
import CustomInfiniteScroll from "../../components/CustomInfiniteScroll";
|
||||||
|
|
||||||
|
import badgeClasses from "../../Badge.module.css";
|
||||||
|
import panelClasses from "../../Panel.module.css";
|
||||||
|
|
||||||
type ScrapePool = {
|
type ScrapePool = {
|
||||||
targets: Target[];
|
targets: Target[];
|
||||||
count: number;
|
count: number;
|
||||||
|
@ -38,6 +40,15 @@ type ScrapePools = {
|
||||||
[scrapePool: string]: ScrapePool;
|
[scrapePool: string]: ScrapePool;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const poolPanelHealthClass = (pool: ScrapePool) =>
|
||||||
|
pool.count > 1 && pool.downCount === pool.count
|
||||||
|
? panelClasses.panelHealthErr
|
||||||
|
: pool.downCount >= 1
|
||||||
|
? panelClasses.panelHealthWarn
|
||||||
|
: pool.unknownCount === pool.count
|
||||||
|
? panelClasses.panelHealthUnknown
|
||||||
|
: panelClasses.panelHealthOk;
|
||||||
|
|
||||||
const healthBadgeClass = (state: string) => {
|
const healthBadgeClass = (state: string) => {
|
||||||
switch (state.toLowerCase()) {
|
switch (state.toLowerCase()) {
|
||||||
case "up":
|
case "up":
|
||||||
|
@ -47,7 +58,8 @@ const healthBadgeClass = (state: string) => {
|
||||||
case "unknown":
|
case "unknown":
|
||||||
return badgeClasses.healthUnknown;
|
return badgeClasses.healthUnknown;
|
||||||
default:
|
default:
|
||||||
return badgeClasses.warn;
|
// Should never happen.
|
||||||
|
return badgeClasses.healthWarn;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -206,14 +218,7 @@ const ScrapePoolList: FC<ScrapePoolListProp> = ({
|
||||||
<Accordion.Item
|
<Accordion.Item
|
||||||
key={poolName}
|
key={poolName}
|
||||||
value={poolName}
|
value={poolName}
|
||||||
style={{
|
className={poolPanelHealthClass(pool)}
|
||||||
borderLeft:
|
|
||||||
pool.upCount === 0
|
|
||||||
? "5px solid var(--mantine-color-red-4)"
|
|
||||||
: pool.upCount !== pool.count
|
|
||||||
? "5px solid var(--mantine-color-orange-5)"
|
|
||||||
: "5px solid var(--mantine-color-green-4)",
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Group wrap="nowrap" justify="space-between" mr="lg">
|
<Group wrap="nowrap" justify="space-between" mr="lg">
|
||||||
|
|
Loading…
Reference in a new issue