Docs / Monitoring & Logging / Setting Up Alertmanager for Prometheus Alerts

Setting Up Alertmanager for Prometheus Alerts

By Admin · Jan 17, 2026 · Updated Apr 25, 2026 · 5 views · 3 min read

Setting Up Alertmanager for Prometheus Alerts is a common requirement for VPS administrators. This guide provides practical instructions that you can follow on Ubuntu 22.04/24.04 or Debian 12, though most steps apply to other distributions as well.

Prerequisites

  • Open ports: 3000 (Grafana), 9090 (Prometheus)
  • Basic familiarity with the Linux command line
  • A registered domain name (for public-facing services)
  • Root or sudo access to the server

Stack Installation

The prometheus component plays a crucial role in the overall architecture. Understanding how it interacts with alertmanager will help you make better configuration decisions.


# docker-compose.yml for monitoring stack
version: '3.8'
services:
  prometheus:
    image: prom/prometheus:latest
    volumes:
      - ./prometheus.yml:/etc/prometheus/prometheus.yml
      - prometheus_data:/prometheus
    ports:
      - "9090:9090"
    restart: unless-stopped

  grafana:
    image: grafana/grafana:latest
    volumes:
      - grafana_data:/var/lib/grafana
    ports:
      - "3000:3000"
    environment:
      - GF_SECURITY_ADMIN_PASSWORD=changeme
    restart: unless-stopped

volumes:
  prometheus_data:
  grafana_data:

This configuration provides a good balance between performance and resource usage. For high-traffic scenarios, you may need to increase the limits further.

Security Implications

The alertmanager configuration requires careful attention to resource limits and security settings. On a VPS with limited resources, it's important to tune these parameters according to your available RAM and CPU cores.

Dashboard Configuration

The alertmanager configuration requires careful attention to resource limits and security settings. On a VPS with limited resources, it's important to tune these parameters according to your available RAM and CPU cores.


# prometheus.yml
global:
  scrape_interval: 15s
  evaluation_interval: 15s

scrape_configs:
  - job_name: 'node'
    static_configs:
      - targets: ['localhost:9100']
  - job_name: 'alertmanager'
    static_configs:
      - targets: ['localhost:9090']

These commands should be run as root or with sudo privileges. If you're using a non-root user, prefix each command with sudo.

Advanced Settings

The default configuration works well for development environments, but production servers require additional tuning. Pay particular attention to connection limits, timeout values, and logging settings.

  • Set up monitoring before going to production
  • Document all configuration changes
  • Test disaster recovery procedures regularly
  • Maintain runbooks for common operations

Common Issues and Solutions

  • Connection timeout: Verify your firewall rules allow traffic on the required ports. Use ss -tlnp to confirm the service is listening on the expected port.
  • Permission denied errors: Ensure files and directories have the correct ownership. Use chown -R to fix ownership and chmod for permissions.

Summary

You've successfully configured alertmanager on your VPS. Remember to monitor performance, keep your software updated, and maintain regular backups. If you run into issues, consult the official documentation or open a support ticket for assistance.

Was this article helpful?