mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-09 21:07:27 -08:00
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;
|