1
0
mirror of https://github.com/prometheus/docs.git synced 2026-02-05 06:45:01 +01:00
Files
docs/docs-config.ts
Bryan Boreham cda26d7c1f Add Release 3.5 as LTS (#2689)
Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
2025-07-14 17:54:42 +01:00

56 lines
1.2 KiB
TypeScript

import { DocsConfig } from "./src/docs-config-types";
export default {
siteUrl: "https://prometheus.io",
// Docs to load from repo-local files.
localMarkdownSources: [
{
docsDir: "docs",
slugPrefix: "",
},
],
// Sources for docs to load from external repos (Prometheus, Alertmanager).
githubMarkdownSources: [
{
owner: "prometheus",
repo: "prometheus",
repoDocsDir: "docs",
slugPrefix: "prometheus",
minNumVersions: 10,
},
{
owner: "prometheus",
repo: "alertmanager",
repoDocsDir: "docs",
slugPrefix: "alerting",
minNumVersions: 8,
},
],
// Long-term support versions configuration.
ltsVersions: {
prometheus: ["3.5"],
},
// Repositories for the downloads page. The order in this file is the
// order in which the repos are displayed on the downloads page.
downloads: {
owner: "prometheus",
repos: [
"prometheus",
"alertmanager",
"blackbox_exporter",
"consul_exporter",
"graphite_exporter",
"memcached_exporter",
"mysqld_exporter",
"node_exporter",
"promlens",
"pushgateway",
"statsd_exporter",
],
},
} satisfies DocsConfig;