Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

...

  1. Download and install InfluxDB from https://influxdata.com/downloads/#influxdb for your platform.

  2. Start InfluxDB

  3. Create a user and a database in InfluxDB using the Influx CLI and executing the commands below

    Bloque de código
    languagesql
    themeConfluence
    CREATE DATABASE worldserver
    CREATE USER grafana WITH PASSWORD 'grafana'
    GRANT READ ON worldserver TO grafana


...

  1. Download and install Grafana from http://docs.grafana.org/installation/
  2. Open the dashboard at http://localhost:3000
  3. Login with username admin and password admin (defaults can be changed in Grafana's .ini files)
  4. Go to Data Sources → + Add Data Source
    Name: Influx
    Type: InfluxDB
    Urlhttp://localhost:8086
    Access: ProxyServer
    Database: worldserver User: grafana Password: grafana
  5. Go to Dashboards Import and import each .json file in TrinityCore's /contrib/grafana

...