mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
34 lines
723 B
JavaScript
Executable file
34 lines
723 B
JavaScript
Executable file
module.exports = {
|
|
someSidebar: [
|
|
{
|
|
type: "category",
|
|
label: "Installation",
|
|
items: ["introduction", "getting-started", "setup"],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Configuration",
|
|
items: [
|
|
"configuration",
|
|
"queries",
|
|
"logging",
|
|
"cache",
|
|
"devices",
|
|
"commands",
|
|
"ui",
|
|
"api",
|
|
"messages",
|
|
"structured-data",
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Linux Agent",
|
|
items: ["agent/installation", "agent/setup"],
|
|
},
|
|
{ type: "doc", id: "production" },
|
|
{ type: "doc", id: "upgrading" },
|
|
{ type: "doc", id: "platforms" },
|
|
{ type: "doc", id: "license" },
|
|
],
|
|
};
|