docs/main/administration-guide/scale/deploy-grafana-loki-for-centralized-logging.mdx
This guide extends your existing Prometheus and Grafana performance monitoring deployment by adding Grafana Loki for centralized log aggregation. While Prometheus collects metrics (CPU, request latency, goroutine counts), Loki collects logs — giving your operations team the ability to search, filter, and correlate Mattermost application logs across all servers from a single Grafana interface.
With Loki in place you can:
This guide assumes you have already deployed Prometheus and Grafana by following the performance monitoring guide. Loki and the OpenTelemetry Collector will be added to that existing infrastructure.
</Tip>The deployment adds two components to your monitoring stack:
┌──────────────────────┐ ┌──────────────────────┐
│ Mattermost App 01 │ │ Mattermost App 02 │
│ │ │ │
│ /opt/mattermost/ │ │ /opt/mattermost/ │
│ logs/mattermost.log│ │ logs/mattermost.log│
│ │ │ │ │ │
│ [ OTel Col ] │ │ [ OTel Col ] │
└─────────┬────────────┘ └─────────┬────────────┘
│ push (:3100/otlp) │
▼ ▼
┌─────────────────────────────────────────────────────┐
│ Monitoring Server │
│ │
│ [ Prometheus :9090 ] [ Loki :3100 ] │
│ │ │ │
│ └──────┬──────────────┘ │
│ ▼ │
│ [ Grafana :3000 ] │
│ Metrics + Logs │
└─────────────────────────────────────────────────────┘
Optional: Add the OpenTelemetry Collector on your PostgreSQL server to also
ship database logs to Loki.
Before starting, confirm the following:
/opt/mattermost (the default location). If your installation path differs, substitute your path wherever /opt/mattermost appears.Mattermost must be writing JSON-formatted file logs for Loki queries to work. This is the default on all plans — verify it on each application server:
tail -1 /opt/mattermost/logs/mattermost.log
A JSON-formatted line looks like:
{"timestamp":"2025-01-15T14:32:01.123Z","level":"info","msg":"Server is listening on [::]:8065","caller":"app/server.go:482"}
If you see plain-text output instead, go to System Console > Environment > Logging and set Output file logs as JSON to true, then restart Mattermost:
sudo systemctl restart mattermost
Install Loki on the same server that runs Grafana and Prometheus. All commands in this section are run on the monitoring server.
The commands below use Loki version 3.4.2. Check the Loki releases page for the latest version and substitute the version number as needed.
Create the Loki user, directories, and download the binary:
# Create a dedicated system user
sudo useradd --system --no-create-home --shell /bin/false loki
# Create directories
sudo mkdir -p /opt/loki/data /opt/loki/bin
# Download and extract Loki
sudo apt-get install -y unzip
cd /tmp
curl -LO https://github.com/grafana/loki/releases/download/v3.4.2/loki-linux-amd64.zip
unzip loki-linux-amd64.zip
sudo mv loki-linux-amd64 /opt/loki/bin/loki
sudo chmod +x /opt/loki/bin/loki
Download and install the production configuration file:
sudo cp loki-config.yaml /opt/loki/loki-config.yaml
Tip
</div>Log retention is set to 14 days by default. To change this, edit /opt/loki/loki-config.yaml and update the retention_period value under limits_config. Loki requires this value in hours — common values:
336h = 14 days (default)720h = 30 days2160h = 90 days8760h = 365 daysLonger retention increases disk usage. As a rough guide, expect 1–3 GB per day for a moderately active Mattermost deployment (varies with log volume). Monitor /opt/loki/data/ after the first week to project storage needs. The compactor.retention_enabled setting must remain true for retention enforcement to work.
Set ownership:
sudo chown -R loki:loki /opt/loki
Create a systemd service file:
sudo tee /etc/systemd/system/loki.service > /dev/null <<'EOF'
[Unit]
Description=Grafana Loki Log Aggregation
Documentation=https://grafana.com/docs/loki/latest/
After=network-online.target
Wants=network-online.target
[Service]
Type=simple
User=loki
Group=loki
ExecStart=/opt/loki/bin/loki -config.file=/opt/loki/loki-config.yaml
Restart=on-failure
RestartSec=5
LimitNOFILE=65536
StandardOutput=journal
StandardError=journal
[Install]
WantedBy=multi-user.target
EOF
Start Loki:
sudo systemctl daemon-reload
sudo systemctl enable --now loki
Verify Loki is running:
sudo systemctl status loki
curl -s http://localhost:3100/ready
The /ready endpoint should return ready. Loki may take 15–20 seconds after startup before it reports ready — this warmup delay is normal.
The OpenTelemetry (OTel) Collector runs on each Mattermost application server and pushes logs to Loki. Repeat these steps on every Mattermost application server.
Replace <LOKI_HOST> with the IP address or hostname of your monitoring server, <HOSTNAME> with this server's hostname (e.g., mm-app-01), and <SERVICE_NAME> with the service type (e.g., mattermost or postgres).
Install the OTel Collector Contrib distribution:
# Add OTel Collector repository and install
# Commands below are for Ubuntu/Debian
wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v0.145.0/otelcol-contrib_0.145.0_linux_amd64.deb
sudo dpkg -i otelcol-contrib_0.145.0_linux_amd64.deb
Note
</div>The installation process automatically creates a system user and group named otelcol-contrib.
Download and edit the OpenTelemetry Collector configuration:
sudo cp otel-collector-config-mattermost.yaml /etc/otelcol-contrib/config.yaml
Edit /etc/otelcol-contrib/config.yaml and replace the placeholders:
<LOKI_HOST> with your monitoring server's address.<HOSTNAME> with this server's hostname.<SERVICE_NAME> with the service type (e.g., mattermost).sudo vi /etc/otelcol-contrib/config.yaml
Grant the collector read access to the Mattermost log directory:
# Grant the collector access to read Mattermost logs.
# Substitute 'mattermost' for the group that owns your log file.
sudo usermod -aG mattermost otelcol-contrib
# Ensure logs are group-readable
sudo chmod 640 /opt/mattermost/logs/mattermost.log
sudo chmod g+rx /opt/mattermost/logs
Restart the service:
sudo systemctl restart otelcol-contrib
sudo systemctl enable otelcol-contrib
Verify the collector is running and shipping logs:
sudo systemctl status otelcol-contrib
sudo journalctl -u otelcol-contrib -f
http://<monitoring-server>:3000).Lokihttp://localhost:3100 (since Loki is colocated with Grafana)A pre-built Grafana dashboard is recommended for monitoring your logs. This dashboard is provided as a basic example:
<Note>While the dashboard provides a useful starting point, users can gain full query flexibility using the Explore tab in Grafana to build custom LogQL queries on the fly.
</Note>The dashboard provides:
To import the dashboard:
mattermost-loki-logs.json file.You can run these queries directly in Grafana Explore (select the Loki data source) or use them to build additional dashboard panels.
Search all Mattermost logs:
{service_name="mattermost"}
Filter by log level:
{service_name="mattermost"} | json | detected_level="error"
Search for all HTTP 4xx responses:
{service_name="mattermost"} | json | status_code >= 400
Search for all HTTP 5xx responses:
{service_name="mattermost"} | json | status_code >= 500
Top 5 error messages over 5-minute windows:
topk(5, sum(count_over_time({service_name="mattermost"} | json | detected_level="error" [5m])) by (msg))
Count errors by message over 5-minute windows:
sum(count_over_time({service_name="mattermost"} | json | detected_level="error" [5m])) by (msg)
Free-text search (e.g., plugin errors):
{service_name="mattermost"} |~ "plugin"
Authentication-related log lines:
{service_name="mattermost"} |~ "(?i)(auth|login|token|session)"
Logs from a specific server instance:
{service_name="mattermost", service_instance_id="mm-app-01"}
For a full LogQL reference, see the Grafana Loki LogQL documentation.
</Tip>If your PostgreSQL database runs on a dedicated server (not RDS), you can ship its logs to Loki as well. This is useful for correlating slow queries or database errors with Mattermost application events.
<Note>A separate configuration file is provided for PostgreSQL log collection. Install the OpenTelemetry Collector on the PostgreSQL server using the same steps from Step 3, then use this configuration file instead of the Mattermost one:
The PostgreSQL configuration handles common Ubuntu/Debian JSON log paths (/var/log/postgresql/*.json). Replace the same <LOKI_HOST>, <HOSTNAME>, and <SERVICE_NAME> placeholders as described in Step 3.
Once running, PostgreSQL logs appear in Grafana under the label {service_name="postgres"}:
{service_name="postgres"} | json | detected_level="error"
End-to-end verification checklist:
Loki is healthy:
curl -s http://<monitoring-server>:3100/ready
# Expected: "ready"
OpenTelemetry Collector is shipping logs (run on each Mattermost server):
sudo journalctl -u otelcol-contrib -n 100
# Look for export successful messages or lack of errors
Logs are visible in Grafana: Go to Explore, select the Loki data source, and run {service_name="mattermost"}. You should see recent log lines.
The dashboard loads: Open the Mattermost Log Aggregation dashboard and confirm panels are populated. (Note: You may need to update dashboard queries to use <code>service_name</code> and <code>service_instance_id</code>).
Common issues:
<table> <colgroup> <col style={{width: '40%'}} /> <col style={{width: '60%'}} /> </colgroup> <thead> <tr> <th>Symptom</th> <th>Resolution</th> </tr> </thead> <tbody> <tr> <td>OTel Col target shows errors</td> <td>Verify the file paths in the config match the actual log file location. Check file permissions (<code>otelcol-contrib</code> user must be able to read the file).</td> </tr> <tr> <td><code>connection refused</code> on port 3100</td> <td>Ensure Loki is running (<code>systemctl status loki</code>). Check firewall rules: <code>sudo iptables -L -n | grep 3100</code> or check your AWS security group allows TCP 3100 from the Mattermost servers.</td> </tr> <tr> <td>Logs appear in Loki but fields aren't parsed</td> <td>Confirm Mattermost is writing JSON-formatted logs (see Step 1). Check that the <code>json_parser</code> operator (for Postgres) or OTel processors are correctly configured.</td> </tr> <tr> <td><code>/ready</code> returns an error</td> <td>Check Loki logs: <code>sudo journalctl -u loki -f</code>. Common cause: permissions on <code>/opt/loki/data/</code> — ensure the <code>loki</code> user owns the directory.</td> </tr> <tr> <td>Old logs are not being deleted</td> <td>Verify <code>compactor.retention_enabled: true</code> and <code>limits_config.retention_period</code> are both set in the Loki config. The compactor runs on the <code>compaction_interval</code> (default: 10 minutes) and applies a <code>retention_delete_delay</code> (default: 2 hours) before actually removing data.</td> </tr> <tr> <td>High disk usage on the monitoring server</td> <td>Review the retention period in the configuration. Consider reducing it or adding more disk. Check <code>du -sh /opt/loki/data/</code> to see current usage.</td> </tr> </tbody> </table>