A metrics utility for Ansible
Project description
AAP metrics-utility
A standalone CLI utility for collecting and reporting metrics from Ansible Automation Platform (AAP) Controller instances. This tool allows users to:
- Collect and analyze Controller usage data
- Generate reports (
CCSP,CCSPv2,RENEWAL_GUIDANCE) - Support multiple storage adapters for data persistence (local dir, S3)
- Push metrics data to
console.redhat.com
Quick Start
The project can run in 2 modes - real controller, and standalone.
The controller mode is for running inside Controller containers and is more fully documented in docs/old-readme.md.
The standalone mode is currently used only for development & testing. It does not need a running awx instance (only a running postgres with imported data), and mocks some values otherwise obtained from awx (see mock_awx/settings/__init__.py).
Prerequisites (standalone)
- Python 3.11 or later
- uv package manager (Install with
pip install uvif not already installed) - Dependencies managed via
pyproject.toml(Ensureuv.lockis used for consistency) - MacOS
brew install postgresql, if you need the database or minio
Installation (standalone)
# Clone the repository
git clone https://github.com/ansible/metrics-utility.git
cd metrics-utility
# Install dependencies using uv
uv sync
For more about the development setup, see the Developer Setup Guide.
Tests (standalone)
Run tests using uv run pytest -s -v. Some tests depend on a running postgres & minio instance - run docker compose -f tools/docker/docker-compose.yaml up to get one.
You can also run pytest inside a container too - to run all tests once, you can docker compose -f tools/docker/docker-compose.yaml --profile=pytest up. You use also podman.
For more flexibility, use:
(host) $ docker compose -f tools/docker/docker-compose.yaml --profile=env up -d # runs a metrics-utility-env container with python & uv set up
(host) $ docker exec -it metrics-utility-env /bin/sh # (wait for postgres & minio containers to start before running)
(container) $ uv run pytest -vv metrics_utility/test/ccspv_reports/test_complex_CCSP_with_scope.py # 1 test
(container) $ uv run pytest -vv metrics_utility/test/ccspv_reports # all ccsp tests
Using Docker (in CI mode to be able to run all tests)
# Ensure SQL data is loaded (only needed once after starting containers)
docker compose -f tools/docker/docker-compose.yaml exec postgres bash -c \
'cat /docker-entrypoint-initdb.d/init-*.sql | psql -U awx -d postgres'
# Run all gather tests
docker compose -f tools/docker/docker-compose.yaml exec metrics-utility-env bash -c \
'sed -i "/NAME/s/awx/postgres/" mock_awx/settings/__init__.py && \
sed -i "/USER/s/myuser/awx/" mock_awx/settings/__init__.py && \
sed -i "/PASSWORD/s/mypassword/awx/" mock_awx/settings/__init__.py && \
sed -i "/HOST.*localhost/s/localhost/postgres/" mock_awx/settings/__init__.py && \
uv run pytest -s -v metrics_utility/test/gather/'
# Run a specific gather test
docker compose -f tools/docker/docker-compose.yaml exec metrics-utility-env bash -c \
'sed -i "/NAME/s/awx/postgres/" mock_awx/settings/__init__.py && \
sed -i "/USER/s/myuser/awx/" mock_awx/settings/__init__.py && \
sed -i "/PASSWORD/s/mypassword/awx/" mock_awx/settings/__init__.py && \
sed -i "/HOST.*localhost/s/localhost/postgres/" mock_awx/settings/__init__.py && \
uv run pytest -s -v metrics_utility/test/gather/test_jobhostsummary_gather.py::test_command'
# Run all tests (not just gather)
docker compose -f tools/docker/docker-compose.yaml exec metrics-utility-env bash -c \
'sed -i "/NAME/s/awx/postgres/" mock_awx/settings/__init__.py && \
sed -i "/USER/s/myuser/awx/" mock_awx/settings/__init__.py && \
sed -i "/PASSWORD/s/mypassword/awx/" mock_awx/settings/__init__.py && \
sed -i "/HOST.*localhost/s/localhost/postgres/" mock_awx/settings/__init__.py && \
uv run pytest -s -v'
Using Podman (in CI mode to be able to run all tests)
# Ensure SQL data is loaded (only needed once after starting containers)
podman compose -f tools/docker/docker-compose.yaml exec postgres bash -c \
'cat /docker-entrypoint-initdb.d/init-*.sql | psql -U awx -d postgres'
# Run all gather tests
podman compose -f tools/docker/docker-compose.yaml exec metrics-utility-env bash -c \
'sed -i "/NAME/s/awx/postgres/" mock_awx/settings/__init__.py && \
sed -i "/USER/s/myuser/awx/" mock_awx/settings/__init__.py && \
sed -i "/PASSWORD/s/mypassword/awx/" mock_awx/settings/__init__.py && \
sed -i "/HOST.*localhost/s/localhost/postgres/" mock_awx/settings/__init__.py && \
uv run pytest -s -v metrics_utility/test/gather/'
# Run a specific gather test
podman compose -f tools/docker/docker-compose.yaml exec metrics-utility-env bash -c \
'sed -i "/NAME/s/awx/postgres/" mock_awx/settings/__init__.py && \
sed -i "/USER/s/myuser/awx/" mock_awx/settings/__init__.py && \
sed -i "/PASSWORD/s/mypassword/awx/" mock_awx/settings/__init__.py && \
sed -i "/HOST.*localhost/s/localhost/postgres/" mock_awx/settings/__init__.py && \
uv run pytest -s -v metrics_utility/test/gather/test_jobhostsummary_gather.py::test_command'
# Run all tests (not just gather)
podman compose -f tools/docker/docker-compose.yaml exec metrics-utility-env bash -c \
'sed -i "/NAME/s/awx/postgres/" mock_awx/settings/__init__.py && \
sed -i "/USER/s/myuser/awx/" mock_awx/settings/__init__.py && \
sed -i "/PASSWORD/s/mypassword/awx/" mock_awx/settings/__init__.py && \
sed -i "/HOST.*localhost/s/localhost/postgres/" mock_awx/settings/__init__.py && \
uv run pytest -s -v'
Basic Usage
- Know the environment
- In Controller mode:
- make sure to connect to a running Controller instance,
- get metrics-utility (map a volume, or git clone),
- activate the virtual environment (
source /var/lib/awx/venv/awx/bin/activate), pip install .from themetrics-utilitydir,- run utility using
python manage.py ....
- In RPM mode:
- install the right RPM
- run utility using
metrics-utility ....
- In standalone mode:
- make sure to run
docker compose -f tools/docker/docker-compose.yaml upif you need the database or minio, - run utility using
uv run python manage.py ....
- make sure to run
- Pick a task (goes right after the previous command)
gather_automation_controller_billing_data- collects metrics from controller db, saves daily tarballs with csv/json insidebuild_report- builds a XLSX report, either from controller db or collected tarballs
- Pick a report type (
export METRICS_UTILITY_REPORT_TYPE=...)
CCSPv2- uses metrics tarballs to produce a usage reportCCSP- similar to v2, slightly different aggregationRENEWAL_GUIDANCE- uses controller db to produce a renewal guidance report
- Pick a time period
--since=12m- and
--until=10m(only withCCSPandCCSPv2) - or
--month=2024-06(only withbuild_report)
- Use
--helpto see any other params
build_reportalso supports--ephemeral,--forceand--verbosegather_automation_controller_billing_dataalso supports--dry-runand--ship
- Set any other necessary environmental variable - see more in
docs/old-readme.md.
METRICS_UTILITY_BILLING_ACCOUNT_IDMETRICS_UTILITY_BILLING_PROVIDERMETRICS_UTILITY_BUCKET_ACCESS_KEYMETRICS_UTILITY_BUCKET_ENDPOINTMETRICS_UTILITY_BUCKET_NAMEMETRICS_UTILITY_BUCKET_REGIONMETRICS_UTILITY_BUCKET_SECRET_KEYMETRICS_UTILITY_CRC_INGRESS_URLMETRICS_UTILITY_CRC_SSO_URLMETRICS_UTILITY_OPTIONAL_CCSP_REPORT_SHEETSMETRICS_UTILITY_OPTIONAL_COLLECTORSMETRICS_UTILITY_ORGANIZATION_FILTERMETRICS_UTILITY_PRICE_PER_NODEMETRICS_UTILITY_PROXY_URLMETRICS_UTILITY_RED_HAT_ORG_IDMETRICS_UTILITY_REPORT_COMPANY_BUSINESS_LEADERMETRICS_UTILITY_REPORT_COMPANY_NAMEMETRICS_UTILITY_REPORT_COMPANY_PROCUREMENT_LEADERMETRICS_UTILITY_REPORT_EMAILMETRICS_UTILITY_REPORT_END_USER_CITYMETRICS_UTILITY_REPORT_END_USER_COMPANY_NAMEMETRICS_UTILITY_REPORT_END_USER_COUNTRYMETRICS_UTILITY_REPORT_END_USER_STATEMETRICS_UTILITY_REPORT_H1_HEADINGMETRICS_UTILITY_REPORT_PO_NUMBERMETRICS_UTILITY_REPORT_RHN_LOGINMETRICS_UTILITY_REPORT_SKUMETRICS_UTILITY_REPORT_SKU_DESCRIPTIONMETRICS_UTILITY_REPORT_TYPEMETRICS_UTILITY_SERVICE_ACCOUNT_IDMETRICS_UTILITY_SERVICE_ACCOUNT_SECRETMETRICS_UTILITY_SHIP_PATHMETRICS_UTILITY_SHIP_TARGET
Example CCSPv2 run
# You can use also an env-file but then you must export it with `export UV_ENV_FILE=<your_env_file>`
export METRICS_UTILITY_REPORT_TYPE="CCSPv2"
export METRICS_UTILITY_SHIP_PATH="./test/test_data/"
export METRICS_UTILITY_SHIP_TARGET="directory"
export METRICS_UTILITY_PRICE_PER_NODE=11.55 # in USD
export METRICS_UTILITY_REPORT_COMPANY_NAME="Partner A"
export METRICS_UTILITY_REPORT_EMAIL="email@email.com"
export METRICS_UTILITY_REPORT_END_USER_CITY="Springfield"
export METRICS_UTILITY_REPORT_END_USER_COMPANY_NAME="Customer A"
export METRICS_UTILITY_REPORT_END_USER_COUNTRY="US"
export METRICS_UTILITY_REPORT_END_USER_STATE="TX"
export METRICS_UTILITY_REPORT_H1_HEADING="CCSP NA Direct Reporting Template"
export METRICS_UTILITY_REPORT_PO_NUMBER="123"
export METRICS_UTILITY_REPORT_RHN_LOGIN="test_login"
export METRICS_UTILITY_REPORT_SKU="MCT3752MO"
export METRICS_UTILITY_REPORT_SKU_DESCRIPTION="EX: Red Hat Ansible Automation Platform, Full Support (1 Managed Node, Dedicated, Monthly)"
# collect data
uv run ./manage.py gather_automation_controller_billing_data --ship --until=10m --force
# collected tarballs somewhere here (by date and instance uuid)
ls metrics_utility/test/test_data/data/2024/04/*
# build report, overwrite existing if necessary
uv run ./manage.py build_report --month=2024-04 --force
# resulting XLSX
ls metrics_utility/test/test_data/reports/2024/04/
Example RENEWAL_GUIDANCE run
export METRICS_UTILITY_REPORT_TYPE="RENEWAL_GUIDANCE"
export METRICS_UTILITY_SHIP_PATH="./out"
export METRICS_UTILITY_SHIP_TARGET="controller_db"
uv run ./manage.py build_report --since=12months --ephemeral=1month --force
Documentation
Documentation is available in the /docs directory.
Please note that this is the upstream documentation for the metrics-utility project. Additional internal downstream documentation, accessible only to the Ansible organization, is maintained separately in the Ansible Handbook.
As the project grows, more guides and references will be added to the /docs folder.
Version mapping
| metrics-utility version | AAP version |
|---|---|
| 0.4.1 | 2.4* |
| 0.5.0 | 2.5-20250507 |
| 0.6.0 | 2.5.20250924 & 2.6 |
Contributing
Please follow our Contributor's Guide for details on submitting changes and documentation standards.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file metrics_utility-0.7.20251207.tar.gz.
File metadata
- Download URL: metrics_utility-0.7.20251207.tar.gz
- Upload date:
- Size: 861.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2deb850e46abded40857755fd1c9538c9a32c4abc831b8df69e39f9539ea3542
|
|
| MD5 |
d48c3250079796c7383babcdbc99b000
|
|
| BLAKE2b-256 |
2794869cee9db2c78c5c8c49cb0ec3c81b733658660993e9f70ef9fbe80ef467
|
File details
Details for the file metrics_utility-0.7.20251207-py3-none-any.whl.
File metadata
- Download URL: metrics_utility-0.7.20251207-py3-none-any.whl
- Upload date:
- Size: 369.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aff8fb866e18cef46881dd55ec83808a6743be6f67248857f1816312033316f0
|
|
| MD5 |
ee7be4d9f51d65444188fb7ac5213f72
|
|
| BLAKE2b-256 |
38fb1409cdfcb90c489a1377f345d46515fbe92efef75a29e2b260381bc3abf3
|