Skip to main content

Utilities for reading Atop files natively in Python

Project description

os: linux python: 3.10+ python style: google imports: isort code style: black code style: pycodestyle doc style: pydocstyle static typing: mypy linting: pylint testing: pytest security: bandit license: MIT

Atoparser

Atoparser is a zero dependency Atop log processing library written in Python. The library supports reading binary C data directly from compressed or uncompressed Atop log files, without the need to install Atop or call a subprocess. The converted data contains structured Python objects, that can then be used for JSON, CSV, or other types of output, storage, and analysis.

For full information on the amazing performance monitoring software that creates these files, known as "Atop", refer to:
Atop - The one stop shop for all your tops

Table Of Contents

Compatibility

  • Supports Python 3.10+
  • Supports Atop 1.26 and 2.3 through 2.12.

Getting Started

Installation

Install Atoparser via pip:

pip install atoparser

Or via git clone:

git clone <path to fork>
cd atoparser
pip install .

Or build and install from wheel:

# Build locally.
git clone <path to fork>
cd atoparser
make wheel

# Push dist/atoparser*.tar.gz to environment where it will be installed.
pip install dist/atoparser*.tar.gz

How Tos

Read an Atop log with the example JSON command:

atoparser ~/atop.log -P CPU --pretty

Iterate over the C structs as Python objects:

import atoparser

with open(file, 'rb') as raw_file:
    header = atoparser.get_header(raw_file)
    for record, sstat, tstats, cgroups in atoparser.generate_statistics(raw_file, header):
        total_cycles = record.interval * sstat.cpu.nrcpu * header.hertz
        usage = 1 - sstat.cpu.all.itime / total_cycles
        print(f'CPU usage was {usage:.02%}')

Convert the C structs into JSON compatible objects:

import json
import atoparser

with open(file, 'rb') as raw_file:
    header = atoparser.get_header(raw_file)
    print(json.dumps(atoparser.struct_to_dict(header), indent=2))

Contribute

Refer to the Contributing Guide for information on how to contribute to this project.

Advanced Guides

Refer to Advanced How Tos for more advanced topics, such as adding a new Atop version.

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

atoparser-3.3.1.tar.gz (25.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

atoparser-3.3.1-py3-none-any.whl (42.6 kB view details)

Uploaded Python 3

File details

Details for the file atoparser-3.3.1.tar.gz.

File metadata

  • Download URL: atoparser-3.3.1.tar.gz
  • Upload date:
  • Size: 25.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for atoparser-3.3.1.tar.gz
Algorithm Hash digest
SHA256 4e79312cc034e96f76924e5abc74f448bb0b43d2a37dce191534175cc730f8af
MD5 37c73beb02b1969cec5f0a4bd3843dda
BLAKE2b-256 e5e3a9df7da0d329f6e76a04678043f9efdfa99048a37a2ffa45e097d68c211a

See more details on using hashes here.

File details

Details for the file atoparser-3.3.1-py3-none-any.whl.

File metadata

  • Download URL: atoparser-3.3.1-py3-none-any.whl
  • Upload date:
  • Size: 42.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for atoparser-3.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0bdd42d23158fb1a995013ae6a625d5268c77be22acdb22d9f8de7761a7a4fd1
MD5 fa10ef37bdbfd4710f1ba96870288874
BLAKE2b-256 216c2d21b9aed79b20840febddfbf1b2d2016c5b981ea079316a5699b95921e4

See more details on using hashes here.

Supported by

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