mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-09 12:57:28 -08:00
d6a347e5de
Signed-off-by: Julius Volz <julius.volz@gmail.com>
28 lines
827 B
TypeScript
28 lines
827 B
TypeScript
import { Card, Group, Text } from "@mantine/core";
|
|
import { IconSpy } from "@tabler/icons-react";
|
|
import { FC } from "react";
|
|
|
|
const Agent: FC = () => {
|
|
return (
|
|
<Card shadow="xs" withBorder radius="md" p="md">
|
|
<Group wrap="nowrap" align="center" ml="xs" mb="sm" gap="xs">
|
|
<IconSpy size={22} />
|
|
<Text fz="xl" fw={600}>
|
|
Prometheus Agent
|
|
</Text>
|
|
</Group>
|
|
<Text p="md">
|
|
This Prometheus instance is running in <strong>agent mode</strong>. In
|
|
this mode, Prometheus is only used to scrape discovered targets and
|
|
forward the scraped metrics to remote write endpoints.
|
|
</Text>
|
|
<Text p="md">
|
|
Some features are not available in this mode, such as querying and
|
|
alerting.
|
|
</Text>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default Agent;
|