https://github.com/k8ieone/NetBoard
A multi-server dashboard for Netdata
https://github.com/k8ieone/NetBoard
html5 javascript js json netdata netdata-dashboards
Last synced: 10 months ago
JSON representation
A multi-server dashboard for Netdata
- Host: GitHub
- URL: https://github.com/k8ieone/NetBoard
- Owner: k8ieone
- License: mit
- Archived: true
- Created: 2020-06-10T17:55:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-23T16:33:40.000Z (about 3 years ago)
- Last Synced: 2024-08-02T15:53:34.933Z (over 1 year ago)
- Topics: html5, javascript, js, json, netdata, netdata-dashboards
- Language: JavaScript
- Homepage:
- Size: 170 KB
- Stars: 21
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Archival notice!
This project has been archived. I do not use Netdata anymore and I have no interest in maintaining this project anymore.
# NetBoard
[](https://www.codefactor.io/repository/github/satcom886/netboard)
A multi-server dashboard for Netdata.
Once you install this, it should look like this:

## Installation
Serve the entire NetBoard folder on a web server (e.g. Apache).
You don't need to have PHP, just a browser with JavaScript enabled.
## Basic configuration
The servers and server groups are configured in `storage/config.js`.
Copy the sample config file `config.js.example` to `storage/config.js` to get started!
There's an array called *groups*. This array contains groups.
Each *group* is an object and contains 2 variables:
1. `groupName` - a string that will be displayed on the page (can be any valid string)
1. `servers` - an array containing *server* objects
Each *server* object contains 2 variables:
1. `serverName` - a string that will be used as heading of the server card (also can be pretty much anything)
1. `serverURL` - (a string that) contains the URL of your Netdata node
## Advanced configuration
All *advanced options* are configured in the HTML itself.
I recommend changing what server `dashboard.js` is fetched from.
This can be done by changing the address of the script with the following comment:
> Here dashboard.js is loaded
Netdata setings (like unloading charts that are not visible, etc.) are also configurable in `index.html`.