screeps-grafana-go_carbon
v1.1.0
Published
## Requirements
Downloads
12
Readme
An easy-to-use, high-performance Graphite + Grafana service
Requirements
- Docker-Compose
- Node (any version)
Installation
- Clone this repository
- Run
npm install
to install dependencies
Setup
- Update all .example files and/or folders to match your needs. This step is not required if you are using the default setup.
- Add your own Grafana variables in
grafanaConfig/.env.grafana
. This file will be updated after a volume reset.
User Setup
- Remove all users from the setup
- Add users in the following format:
A. MMO:
{
# Prefix is entirely optional
"prefix": "a.b.c",
"username": "PandaMaster",
"type": "mmo",
"shards": ["shard0"],
"token": "TOKEN_FOR_THIS_USER!",
}
B. Private:
{
# Prefix is entirely optional
"prefix": "a.b.c",
"username": "EMAIL",
# If your email has a period in it, grafana displays it incorrectly
# Its reccomended to change this to the username you set for MMO.
"replaceName": "USERNAME HERE",
"type": "private",
"shards": ["screeps"],
"password": "password",
}
If the private server is not hosted on localhost, add the host to the user:
{
"username": "EMAIL",
"replaceName": "USERNAME",
"type": "private",
"shards": ["screeps"],
"password": "password",
"host": "192.168.1.10",
}
If the segment of the stats is not memory, add it to the user:
{
"username": "W1N1",
"type": "private",
"shards": ["screeps"],
"password": "password",
"host": "123.456.789",
"segment": 0,
}
Update all .example files and/or folders to match your needs. This step is not required if you are using the default setup.
Run Commands
Config
--force
: force the non .example config files to be overwritten.--debug
: listen to setup Docker logs--username
: overwrite the username for the Grafana admin user--password
: overwrite the password for the Grafana admin user--enableAnonymousAccess
: enable anonymous access to Grafana
Network
--grafanaDomain
: Overwrite grafana.ini domain--grafanaPort
: port for Grafana to run on--relayPort
: port for relay-ng to run on (default: 2003)--pushStatusPort
: port for the stats-getter push API (default: disabled)
Exporting
--deleteLogs
: deletes the logs folder--removeWhisper
: Deletes the carbon whisper folder--removeVolumes
: Remove all volumes, including the grafana database.
Usage
npm run setup
: to execute setup onlynpm run start
: to configure and start it- For other run commands like eslint, check out package.json scripts object.
Go to localhost:3000 (if you used port 3000) and login with admin
and password
(or your custom set login info).
Its possible to use https for your grafana instance, check out this tutorial for example on how to do this, enough info online about it. I dont support this (yet)