-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
92 lines (88 loc) · 2.77 KB
/
mkdocs.yml
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
82
83
84
85
86
87
88
89
90
91
92
site_name: 🔬 pgwatch | v3
site_description: pgwatch is a flexible PostgreSQL-specific monitoring solution
site_url: https://pgwat.ch/
use_directory_urls: false
copyright: Made by and for PostgreSQL lovers! 🐘❤️
repo_name: pgwatch by Cybertec
repo_url: https://github.com/cybertec-postgresql/pgwatch
theme:
name: material
language: en
include_search_page: false
search_index_only: true
palette:
- media: "(prefers-color-scheme: light)" # Light mode
scheme: default
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)" # Dark mode
scheme: slate
primary: light blue
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to light mode
features:
- announce.dismiss
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.action.edit
- navigation.footer
- navigation.instant
- navigation.tracking
- navigation.tabs
- content.tabs.link
plugins:
- search
- tags
- glightbox
# - minify:
# minify_html: true
nav:
- Intro:
- Hello World!: index.md
- Project Background: intro/project_background.md
- Features: intro/features.md
- Concepts:
- Components: concept/components.md
- Installation Options: concept/installation_options.md
- Long Term Installations: concept/long_term_installations.md
- Web UI: concept/web_ui.md
- Tutorials:
- Docker Installation: tutorial/docker_installation.md
- Custom Installation: tutorial/custom_installation.md
- Preparing Databases: tutorial/preparing_databases.md
- Upgrading: tutorial/upgrading.md
- How-To Guides:
- Dashboarding and Alerting: howto/dashboarding_alerting.md
- Using Managed Services: howto/using_managed_services.md
- Sizing Recommendations: howto/sizing_recommendations.md
- Bootstrapping metrics database: howto/metrics_db_bootstrap.md
- Reference:
- Advanced Features: reference/advanced_features.md
- Metric Definitions: reference/metric_definitions.md
- Technical Details: reference/technical_details.md
- Security: reference/security.md
- Kubernetes: reference/kubernetes.md
- Environment Variables: reference/env_variables.md
- Gallery:
- Dashboards: gallery/dashboards.md
- Web UI: gallery/webui.md
- Developer:
- Documentation: developer/godoc.md
- Contributing: developer/contributing.md
- Code of Conduct: developer/CODE_OF_CONDUCT.md
- License: developer/LICENSE.md
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list