Skip to main content

The SAU Exporter is a Python-based application designed to collect and expose AWS EC2 and EBS volume metrics for monitoring and observability. It utilizes the Prometheus client library to provide an HTTP endpoint for scraping metrics.

Project description

SaU (Stopped and Unattached) Exporter

GitHub release (latest SemVer) GitHub Workflow Status GitHub pre-commit GitHub top language

Overview

The SaU Exporter is a Python-based application designed to collect and expose AWS EC2 and EBS volume metrics for monitoring and observability. It utilizes the Prometheus client library to provide an HTTP endpoint for scraping metrics.

Features

  • EC2 Metrics: Collects information about stopped EC2 instances in different AWS regions.
  • EBS Volume Metrics: Retrieves data on unattached/errored EBS volumes, including volume state, type, size, and region.
  • Prometheus Integration: Exposes metrics in the Prometheus format, making it compatible with Prometheus monitoring systems.
  • Exclude Tagging: Instances and/or volumes can be optionally omitted as metrics if their corresponding tags are included in the exclude_tags config.

Installing via pip

Pip package is available here

Prerequisites:

  • Python 3.8+ installed on your system.
  • Ensure the required Python libraries are installed by running the following command.
pip install -r requirements.txt
pip install sau

AWS Credentials

The exporter requires two AWS EC2 permissions, DescribeInstances and DescribeVolumes. A sample iam policy document can be seen below:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ec2:DescribeInstances",
                "ec2:DescribeVolumes"
            ],
            "Resource": "*"
        }
    ]
}

It would be easier to put the creds in a env file. Example .env file can be seen below:

AWS_ACCESS_KEY_ID=129QJDNC2OQD09N
AWS_SECRET_ACCESS_KEY=9KXXXXXXXXX
AWS_REGION=eu-central-1

then you can source the .env

source .env

Configuration

Create a YAML configuration file with the necessary settings.

Configuration Options

  • Regions: Specify the AWS regions for which you want to collect metrics.
  • Exporter Port: Define the port on which the exporter will expose metrics (default: 9191).
  • Logging Configuration: Customize logging settings, such as log file directory and retention. See example below.
# list of regions to scrape: REQUIRED
regions:
  - eu-central-1
  - eu-west-1

# exporter port. Defaults to 9191
exporter_port: 9191

# Logging configuration
logging:
  # Number of log files to retain after log rotation
  retention: 7
  # log directory. defaults to current working directory
  directory: "."
  # log level (debug, info, warn, error). Defaults to info
  level: info

# Optional: tags to exclude from monitoring
exclude_tags:
  inv_environment_id:
    - development
    - staging

Using pip package after installation

python3 -m sau -c /path/to/config.yaml

Installing using docker

The docker repository is available at link. You will need the following:

docker run -ti --env-file .env -v /path/to/config.yaml:/sau/config.yaml ugwuanyi/sau:latest -c /sau/config.yaml

Installing from source:

Prerequisites:

  • Python 3.8+ installed on your system.
  • clone the repository
git clone https://github.com/emylincon/sau.git
  • Ensure the required Python libraries are installed by running the following command.
pip install -r requirements.txt

You will need the following:

Execute the exporter by providing the path to the configuration file:

python3 src/sau/__main__.py -c /path/to/your/config.yaml

Metrics Endpoint:

Once the exporter is running, metrics can be accessed at http://localhost:<exporter_port>/.

Grafana Dashboard

Grafana dashboard of sample metrics Grafana dashboard

Customization

Feel free to extend or customize the exporter to meet your specific requirements. You can modify the provided code or add additional collectors to gather more AWS resource metrics.

License

This project is licensed under the MIT License. Feel free to use, modify, and distribute it according to the terms of the license.

Author

Created by Emeka Ugwuanyi. For questions or feedback, please contact me.

Upgrading version

  • enable pr-commit
pre-commit install
  • Increament version in docker/Taskfile
  • Commiting changes with update all the version references

Happy monitoring!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sau-0.0.9.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

sau-0.0.9-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file sau-0.0.9.tar.gz.

File metadata

  • Download URL: sau-0.0.9.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for sau-0.0.9.tar.gz
Algorithm Hash digest
SHA256 80461c82bc5417aaa995e01703074050dbdfd66fcdf0bf22cf231ecbc2a28497
MD5 41529a97088fa8321c798f2f9b2357dc
BLAKE2b-256 7d2037815c4b64f7fea76be2b00861029bcfe188601111a2baa6b00449bef2f8

See more details on using hashes here.

File details

Details for the file sau-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: sau-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for sau-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 7bd1209b18d75dc8c97595d799bc018d57868ee276863af51283f9fa180eea50
MD5 e1ceb42b5058f4a8fc761e1996b52f0f
BLAKE2b-256 af4d2449eb4c44d0448182b50b10de3e4ea055d8d076aa24d090788417f64865

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page