mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add query button to rule expressions, improve styling
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
bc48d19d8c
commit
b29be5e6f8
|
@ -4,3 +4,12 @@
|
|||
var(--mantine-color-gray-9)
|
||||
);
|
||||
}
|
||||
|
||||
.queryButton {
|
||||
opacity: 0;
|
||||
transition: opacity 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.codebox:hover .queryButton {
|
||||
opacity: 1;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
import { Badge, Box, Card, Group, useComputedColorScheme } from "@mantine/core";
|
||||
import { IconClockPause, IconClockPlay } from "@tabler/icons-react";
|
||||
import {
|
||||
ActionIcon,
|
||||
Badge,
|
||||
Box,
|
||||
Card,
|
||||
Group,
|
||||
rem,
|
||||
Tooltip,
|
||||
useComputedColorScheme,
|
||||
} from "@mantine/core";
|
||||
import { IconClockPause, IconClockPlay, IconSearch } from "@tabler/icons-react";
|
||||
import { FC } from "react";
|
||||
import { formatPrometheusDuration } from "../lib/formatTime";
|
||||
import codeboxClasses from "./RuleDefinition.module.css";
|
||||
|
@ -14,15 +23,17 @@ import {
|
|||
} from "../codemirror/theme";
|
||||
import { PromQLExtension } from "@prometheus-io/codemirror-promql";
|
||||
import { LabelBadges } from "./LabelBadges";
|
||||
import { useSettings } from "../state/settingsSlice";
|
||||
|
||||
const promqlExtension = new PromQLExtension();
|
||||
|
||||
const RuleDefinition: FC<{ rule: Rule }> = ({ rule }) => {
|
||||
const theme = useComputedColorScheme();
|
||||
const { pathPrefix } = useSettings();
|
||||
|
||||
return (
|
||||
<>
|
||||
<Card p="xs" className={codeboxClasses.codebox} shadow="xs">
|
||||
<Card p="xs" className={codeboxClasses.codebox} fz="sm" shadow="none">
|
||||
<CodeMirror
|
||||
basicSetup={false}
|
||||
value={rule.query}
|
||||
|
@ -37,9 +48,27 @@ const RuleDefinition: FC<{ rule: Rule }> = ({ rule }) => {
|
|||
EditorView.lineWrapping,
|
||||
]}
|
||||
/>
|
||||
|
||||
<Tooltip label={"Query rule expression"} withArrow position="top">
|
||||
<ActionIcon
|
||||
pos="absolute"
|
||||
top={7}
|
||||
right={7}
|
||||
variant="light"
|
||||
onClick={() => {
|
||||
window.open(
|
||||
`${pathPrefix}/query?g0.expr=${encodeURIComponent(rule.query)}&g0.tab=1`,
|
||||
"_blank"
|
||||
);
|
||||
}}
|
||||
className={codeboxClasses.queryButton}
|
||||
>
|
||||
<IconSearch style={{ width: rem(14) }} />
|
||||
</ActionIcon>
|
||||
</Tooltip>
|
||||
</Card>
|
||||
{rule.type === "alerting" && (
|
||||
<Group mt="md" gap="xs">
|
||||
<Group mt="lg" gap="xs">
|
||||
{rule.duration && (
|
||||
<Badge
|
||||
variant="light"
|
||||
|
@ -61,7 +90,7 @@ const RuleDefinition: FC<{ rule: Rule }> = ({ rule }) => {
|
|||
</Group>
|
||||
)}
|
||||
{rule.labels && Object.keys(rule.labels).length > 0 && (
|
||||
<Box mt="md">
|
||||
<Box mt="lg">
|
||||
<LabelBadges labels={rule.labels} />
|
||||
</Box>
|
||||
)}
|
||||
|
|
|
@ -11,6 +11,7 @@ import {
|
|||
Alert,
|
||||
TextInput,
|
||||
Anchor,
|
||||
Divider,
|
||||
} from "@mantine/core";
|
||||
import { useSuspenseAPIQuery } from "../api/api";
|
||||
import { AlertingRule, AlertingRulesResult } from "../api/responseTypes/rules";
|
||||
|
@ -352,7 +353,9 @@ export default function AlertsPage() {
|
|||
{a.state}
|
||||
</Badge>
|
||||
</Table.Td>
|
||||
<Table.Td>
|
||||
<Table.Td
|
||||
style={{ whiteSpace: "nowrap" }}
|
||||
>
|
||||
<Tooltip label={a.activeAt}>
|
||||
<Box>
|
||||
{humanizeDurationRelative(
|
||||
|
@ -363,12 +366,24 @@ export default function AlertsPage() {
|
|||
</Box>
|
||||
</Tooltip>
|
||||
</Table.Td>
|
||||
<Table.Td>{a.value}</Table.Td>
|
||||
<Table.Td
|
||||
style={{ whiteSpace: "nowrap" }}
|
||||
>
|
||||
{isNaN(Number(a.value))
|
||||
? a.value
|
||||
: Number(a.value)}
|
||||
</Table.Td>
|
||||
</Table.Tr>
|
||||
{showAnnotations && (
|
||||
<Table.Tr>
|
||||
<Table.Td colSpan={4}>
|
||||
<Table mt="md" mb="xl">
|
||||
<Table
|
||||
mt="md"
|
||||
mb="xl"
|
||||
withTableBorder
|
||||
withColumnBorders
|
||||
bg="var(--mantine-color-body)"
|
||||
>
|
||||
<Table.Tbody>
|
||||
{Object.entries(
|
||||
a.annotations
|
||||
|
|
Loading…
Reference in a new issue