-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
67 lines (59 loc) · 1.95 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
site_name: M3 Documentation
theme:
# Provide source
name: null
custom_dir: docs/theme
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Do not use tabs for navigation
feature:
tabs: false
# Default values, taken from mkdocs_theme.yml
language: en
palette:
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
favicon: assets/images/favicon.png
logo:
icon: "\uE80C"
edit_uri: edit/master/docs/
repo_name: m3db/m3
repo_url: https://github.com/m3db/m3
pages:
- "Introduction": "index.md"
- "Overview":
- "Components": "introduction/components/components.md"
- "Motivation": "introduction/motivation/motivation.md"
- "M3DB":
- "Introduction": "m3db/index.md"
- "Architecture":
- "Overview": "m3db/architecture/index.md"
- "Storage Engine": "m3db/architecture/engine.md"
- "Sharding and Replication": "m3db/architecture/sharding.md"
- "Consistency Levels": "m3db/architecture/consistencylevels.md"
- "Storage": "m3db/architecture/storage.md"
- "Commit Logs": "m3db/architecture/commitlogs.md"
- "Peer Streaming": "m3db/architecture/peer_streaming.md"
- "Caching": "m3db/architecture/caching.md"
- "Query Engine and Coordinator":
- "Introduction": "query_engine/index.md"
- "Roadmap": "query_engine/roadmap.md"
- "Architecture":
- "Overview": "query_engine/architecture/index.md"
- "Blocks": "query_engine/architecture/blocks.md"
- "Function Processing": "query_engine/architecture/functions.md"
- "How-To's":
- "M3DB Single Node Deployment": "how_to/single_node.md"
- "M3DB Cluster Deployment, Manually": "how_to/cluster_hard_way.md"
- "M3DB on Kubernetes": "how_to/kubernetes.md"
- "Integrations":
- "Prometheus": "integrations/prometheus.md"
- "Troubleshooting": "troubleshooting/index.md"
- "FAQs": "faqs/index.md"