-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathsidebars.js
79 lines (79 loc) · 1.64 KB
/
sidebars.js
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
module.exports = {
docsSidebar: [
'introduction',
{
type: "category",
label: "Guides",
collapsed: false,
items: [
"guides/create_firehose",
"guides/json-based-filters",
"guides/jexl-based-filters",
"guides/deployment",
"guides/manage",
],
},
{
type: "category",
label: "Sinks",
collapsed: false,
items: [
"sinks/http-sink",
"sinks/grpc-sink",
"sinks/jdbc-sink",
"sinks/bigquery-sink",
"sinks/influxdb-sink",
"sinks/prometheus-sink",
"sinks/mongo-sink",
"sinks/redis-sink",
"sinks/elasticsearch-sink",
"sinks/blob-sink",
],
},
{
type: "category",
label: "Concepts",
items: [
"concepts/overview",
"concepts/architecture",
"concepts/filters",
"concepts/templating",
"concepts/consumer",
"concepts/decorators",
"concepts/offsets",
"concepts/monitoring",
],
},
{
type: "category",
label: "Advance",
items: [
"advance/generic",
"advance/errors",
"advance/dlq",
"advance/filters",
"advance/retries",
"advance/sink-pool",
],
},
{
type: "category",
label: "Reference",
items: [
"reference/metrics",
"reference/core-faqs",
"reference/faq",
"reference/glossary",
],
},
{
type: "category",
label: "Contribute",
items: [
"contribute/contribution",
"contribute/development",
],
},
'roadmap',
],
};