For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation and Upgrade

This guide covers installing and upgrading Rumi Monitor.

Overview

Rumi Monitor provides pre-built Grafana dashboards for visualizing telemetry data collected by the Rumi Agent. There are two deployment options:

  • Bundled with Rumi Admin (Recommended) — Grafana runs as a child process of Rumi Admin

  • Standalone Grafana — Use your own Grafana installation with imported Rumi dashboards

Prerequisites

Bundled Deployment (via Rumi Admin)

No additional prerequisites — Grafana is included in the Rumi Admin distribution.

Standalone Deployment

  • Grafana 9.x or later

  • InfluxDB with telemetry data from the Rumi Agent

  • Network access from Grafana to the InfluxDB instance

Bundled Deployment with Rumi Admin

When using Rumi Admin, Grafana is automatically started as a child process. The canned Rumi dashboards are loaded during the Admin startup sequence.

Installation

Follow the Admin Installation Guide to install Rumi Admin. Monitor capabilities are included automatically.

Startup Sequence

On startup, Rumi Admin:

  1. Spawns Grafana as a child process

  2. Waits for Grafana to become ready

  3. Creates a Grafana API key for internal access

  4. Creates the default InfluxDB data source

  5. Loads the pre-built dashboards

Grafana Configuration

The bundled Grafana configuration is stored in:

This file is automatically bootstrapped on first startup. You can customize Grafana settings by editing this file and restarting Rumi Admin.

Accessing Dashboards

After starting Rumi Admin, access the dashboards at:

The Rumi Admin UI provides navigation to all Monitor dashboards.

Docker Deployment

When deploying Rumi Admin via Docker, Monitor is included automatically.

Running the Container

Docker Configuration

Setting
Value

Base image

Ubuntu 22.04

Exposed port

8001

Data volume

/home/rumi/rumi-admin/data

Grafana config

/home/rumi/rumi-admin/data/grafana/conf/server.ini

The Grafana data and configuration persist in the mounted data volume across container restarts.

See the Admin Installation Guide for complete Docker deployment instructions.

Standalone Grafana Deployment

To use Rumi Monitor with a standalone Grafana installation:

Install Grafana

Install Grafana following the official Grafana documentation.

Configure the InfluxDB Data Source

  1. In Grafana, navigate to Configuration > Data Sources.

  2. Click Add data source and select InfluxDB.

  3. Configure the connection:

Setting
Value

URL

http://<agent-host>:8086

Database

rumi

Retention policy

rumi_heartbeat_rp

  1. Click Save & Test to verify the connection.

Import the Dashboards

The canned dashboards are provided as JSON files:

Dashboard
File
Description

Home

home.json

Overview and navigation

Container Stats

xvm-stats.json

Per-container CPU, memory, GC, threads

Application Stats

app-stats.json

Per-application store, messaging, latency

Host Stats

host-stats.json

Per-host disk, CPU, memory

To import a dashboard:

  1. Navigate to Dashboards > Import.

  2. Upload the JSON file or paste its contents.

  3. Select the InfluxDB data source.

  4. Click Import.

Dashboard JSON files are included in the Rumi Admin distribution under the app/ directory.

Data Source Binding

The dashboards expect an InfluxDB data source. If your data source name differs from the default, update the data source bindings during import or edit the dashboard settings after import.

Upgrade

Bundled Deployment

Upgrading Rumi Admin automatically upgrades the bundled Grafana and dashboards.

  1. Stop Rumi Admin:

  2. Run the Admin installer:

  3. Start the new version:

Your Grafana configuration in data/grafana/conf/server.ini is preserved across upgrades.

Standalone Deployment

To upgrade Rumi Monitor dashboards in a standalone Grafana:

  1. Export any customizations you've made to existing dashboards.

  2. Delete or update the existing dashboards.

  3. Import the updated dashboard JSON files from the new Rumi Admin distribution.

  4. Re-apply customizations if needed.

If you've modified canned dashboards, consider saving your customizations as separate dashboards to avoid losing changes during upgrades.

Troubleshooting

Dashboards Not Loading (Bundled)

  1. Verify Rumi Admin is running:

  2. Check the Grafana configuration file exists:

  3. If the configuration is corrupted, delete it and restart Admin to regenerate:

No Data in Dashboards

  1. Verify the Rumi Agent is running and collecting heartbeats:

  2. Check that InfluxDB contains data:

  3. Verify the data source configuration in Grafana points to the correct InfluxDB instance.

Data Source Connection Failed (Standalone)

  1. Verify InfluxDB is accessible from the Grafana host:

  2. Check the database name and retention policy are correct.

  3. If using authentication, verify the credentials.

Last updated