Skip to main content

A parser for MongoDB FTDC files, with Python bindings.

Project description

pyftdc

Link status
Conda builds https://anaconda.org/jimper/pyftdc
Pypi builds https://pypi.org/project/pyftdc/

A MongoDB FTDC files parser written in C++ that provides Python bindings using pybind11 and scikit-build.

Requisites

To build the source distribution, you will need Python 3.8 or newer, git, python3-dev/python3-devel installed.

Please read the build document for more details.

Installation

You can install the source distributions via pip or conda:

  • pip3 install pyftdc

  • conda install -c jimper pyftdc

Building

Building on Unix (Ubuntu, Centos, macOS)

  1. clone this repository and change to the top level directory.

    git clone git@gitlab.com:jimper/mongo_ftdc.git 
    cd mongo_ftdc
    
  2. Install Python libraries to build binaries. Create a virtual environment to make your life easier.

    python3 -m venv venv
    source venv/bin/activate
    pip3 install --user-pep517 .
    

    You will now have built and installed in your virtual environment.

Alternatively, you can use setup.py directly, but for that you will need to manually install the required libraries into your virtual environment by running

 cd mongo_ftdc
 pip install -r requirements.txt

After which you can create a source distribution or a binary wheel:

 python3 setup.py sdist
 python3 setup.py bdist_wheel

These will reside in the dist directory.

Building on Windows

Not tested yet, but 'It should work'(TM)

License

Apache V2

Usage

The module provides two classes, FTDCParser and Dataset. The proper usage is to obtain a Dataset object from a file by calling FTDCParse.parse_file(), or a list of Dataset objects from the FTDCParse.parse_dir(), and then call the methods on these objects.

FTDCParser

  • set_verbose(bool).

    Set verbosity flag.

  • parse_dir(dir, only_metadata, only_metrics_names, lazy)

    Returns a list of Dataset objects.

  • parse_file(file_path, only_metadata, only_metrics_names, lazy)

    Returns a single Dataset object.

  • get_parsed_file_info():

    Returns information on the last parsed file (absolute path, samples, start timestamp, end timestamp).

  • dump_file_as_json(input_file, output_file)

    Dumps the contents of an FTDC file to a JSON file. (WIP)

  • dump_file_as_csv(input_file, output_file) Dumps file contents to an FTDC file as CSV file. (WIP)

  • get_metric(metric_name, start, end, rated_metric).

    Returns a list of the values of a metric for the last file parsed. If rated_metric is true, will convert values to metrics per second. start and end are ignored.

  • get_metrics_list(metric_name_list)

    Returns a list of lists of values for the metrics specified in the list metric_name_list for the last file parsed. If rated_metric is true, will convert values to metrics per second. start and end are ignored.

  • get_timestamps(start, end)

    Returns the timestamps of the last file parsed.

  • metadata.

    Contains a string with the metadata of the last file parsed.

  • get_metric_numpy(metric_name, start, end, rated_metric)

    Returns a list of the values of a metric for the last file parsed as a numpy array. If rated_metric is true, will convert values to metrics per second. start and end are ignored.

  • get_metrics_list_numpy(metric_names_list, start, end, rated_metric)

    Returns a list of numpy arrays of the values of a metric for the last file parsed . If rated_metric is true, will convert values to metrics per second. start and end are ignored.

Dataset

  • interinm

    Contains a boolean that tells if this is an interim FTDC file.

  • metadata

    Contains the metadata associated with this datased.

  • metrics_names

    Contains a list of the metrics names contained in the dataset.

  • file

Contains the file name from which this dataset was parsed.

  • path

    Contains the full path to the file from which this dataset was parsed.

  • get_metric(metric_name, start, end, rated_metric)

    Returns a list of the values of a metric for this dataset. If rated_metric is true, will convert values to metrics per second. start and end are ignored.

  • get_metric_numpy(metric_name, start, end, rated_metric)

    Returns a list of the values of a metric for the last file parsed as a numpy array. If rated_metric is true, will convert values to metrics per second. start and end are ignored.

  • get_metrics_list_numpy(metric_names_list, start, end, rated_metric)

    Returns a list of numpy arrays of the values of a metric for the last file parsed . If rated_metric is true, will convert values to metrics per second. start and end are ignored.

Example

import pyftdc
import numpy

def get_prefixed_metrics_names(param, ds):
    ops_counters = []
    for name in ds.metrics_names:
        if name.startswith(param):
            ops = ds.get_metric(name)
            ops_counters.append((name, ops))

    return ops_counters


def open_files_in_dir(dir_path, prefix):
    from os import listdir

    files_read = []
    try:
        dir_list = listdir(dir_path)
        for file_name in dir_list:
            if file_name.startswith(prefix):
                parser = pyftdc.FTDCParser()
                ds = parser.parse_file(dir_path + '/' + file_name)
                if ds:
                    print(f'File: {ds.file}')
                    print(f'{ds.metadata}')
                    ts = ds.get_metric("start")
                    if ts:
                        ts_size = len(ts)

                        print(f'Timestamp count {ts_size}. Start:{ts[0]}  Last: {ts[-1]}')

                        op_counter_names = get_prefixed_metrics_names('serverStatus.opcounters', ds)
                        cpu = get_prefixed_metrics_names('systemMetrics.cpu', ds)
                        disk = get_prefixed_metrics_names('systemMetrics.disks.nvme1n1', ds)

                        xxx = ds.get_metric_list_numpy(['systemMetrics.cpu.iowait_ms', 'xxx', 'systemMetrics.cpu.num_cpus'])
                        disk_n = ds.get_metric_numpy('systemMetrics.disks.nvme1n1.writes')

                        files_read.append(file_name)
                    else:
                        print(f'No timestamps on this dataset.')
    except FileNotFoundError as not_found:
        print('Path not found.')

    return files_read

 

if __name__ == "__main__":
    files = open_files_in_dir('/somepath/diagnostic.data/',
                              'metrics.2022-11-13T21')
    print(files)

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

pyftdc-0.3.11.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

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

pyftdc-0.3.11-cp310-cp310-macosx_14_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file pyftdc-0.3.11.tar.gz.

File metadata

  • Download URL: pyftdc-0.3.11.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for pyftdc-0.3.11.tar.gz
Algorithm Hash digest
SHA256 801447320db3ef2cf32a9687448797a28689841e5b7fc8d6e3c59179dee25d50
MD5 1e4b4613553e177bf04bf12be9a4f4a6
BLAKE2b-256 80e061227a3bdfc771ff69cc472d7169c26cbbc9e0edaef1d221f978fa3db792

See more details on using hashes here.

File details

Details for the file pyftdc-0.3.11-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pyftdc-0.3.11-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 282c8294154685adb7537e27bae8c9a0fc46fe3994cd92bbae4756de7d36d4ac
MD5 d140373100b21baf5c5114e8612ceb45
BLAKE2b-256 0ccb4eb77181c2116124912165a6ae55eee6b5efc2a3450a369996f1eadc7ac6

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