mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-21 22:59:07 +00:00
92 lines
1.9 KiB
TypeScript
92 lines
1.9 KiB
TypeScript
export interface NavLink {
|
|
title: string;
|
|
url: string;
|
|
}
|
|
|
|
// Define an interface for a navigation group
|
|
export interface NavGroup {
|
|
title: string;
|
|
links: NavLink[];
|
|
}
|
|
|
|
// Define an array of navigation groups
|
|
const DocsNav: NavGroup[] = [
|
|
{
|
|
title: "Introduction",
|
|
links: [
|
|
{
|
|
title: "Getting Started",
|
|
url: "/docs/introduction/getting-started",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Installation",
|
|
links: [
|
|
{
|
|
title: "Local Development",
|
|
url: "/docs/installation/local-development",
|
|
},
|
|
{
|
|
title: "Docker Compose",
|
|
url: "/docs/installation/docker-compose",
|
|
},
|
|
{
|
|
title: "Kubernetes and Helm",
|
|
url: "https://artifacthub.io/packages/helm/oneuptime/oneuptime",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Configuration",
|
|
links: [
|
|
{
|
|
title: "IP Addresses",
|
|
url: "/docs/configuration/ip-addresses",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Monitor",
|
|
links: [
|
|
{
|
|
title: "Custom Code Monitor",
|
|
url: "/docs/monitor/custom-code-monitor",
|
|
},
|
|
{
|
|
title: "Synthetic Monitor",
|
|
url: "/docs/monitor/synthetic-monitor",
|
|
},
|
|
{
|
|
title: "JavaScript Expressions",
|
|
url: "/docs/monitor/javascript-expression",
|
|
},
|
|
{
|
|
title: "Monitor Secrets",
|
|
url: "/docs/monitor/monitor-secrets",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Probe",
|
|
links: [{ title: "Custom Probes", url: "/docs/probe/custom-probe" }],
|
|
},
|
|
{
|
|
title: "Telemetry",
|
|
links: [
|
|
{ title: "OpenTelemetry", url: "/docs/telemetry/open-telemetry" },
|
|
{ title: "Fluentd", url: "/docs/telemetry/fluentd" },
|
|
],
|
|
},
|
|
{
|
|
title: "Copilot",
|
|
links: [
|
|
{ title: "Installation", url: "/docs/copilot/introduction" },
|
|
{ title: "Deploy LLM Server", url: "/docs/copilot/deploy-llm-server" },
|
|
],
|
|
},
|
|
];
|
|
|
|
// Export the array of navigation groups
|
|
export default DocsNav;
|