-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathdocs-config.ts
More file actions
81 lines (73 loc) · 2.01 KB
/
Copy pathdocs-config.ts
File metadata and controls
81 lines (73 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { DocsConfig } from "./src/docs-config-types";
export default {
siteUrl: "https://prometheus.io",
announcement: {
text: "Join [PromCon EU 2026](https://promcon.io/2026-munich/), the Prometheus users conference, on October 7–8, 2026 in Munich.",
mobileText: "[PromCon EU 2026](https://promcon.io/2026-munich/) — Oct 7–8, Munich.",
startDate: "2026-07-17",
endDate: "2026-10-08",
},
kapa: {
websiteId: "3a0017cf-dd4b-4884-96fb-1bbe1b621d1e",
projectName: "Prometheus",
projectColor: "#D86444",
projectLogoPath: "/assets/prometheus-logo.svg",
mcpServerUrl: "https://prometheus.mcp.kapa.ai",
},
// 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,
},
],
// Single pages to fetch from external repos (not versioned).
githubSinglePageSources: [
{
owner: "prometheus",
repo: "governance",
branch: "main",
filePath: "GOVERNANCE.md",
outputPath: "governance/GOVERNANCE.md",
},
],
// Long-term support versions configuration.
ltsVersions: {
prometheus: ["3.5", "3.13"],
},
// 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;