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.9.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.9-cp310-cp310-macosx_13_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

File details

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

File metadata

  • Download URL: pyftdc-0.3.9.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.9.tar.gz
Algorithm Hash digest
SHA256 69c20e8d53460f7931b34a906b4bdf94d4e8057351b9a24bc0142848aba0af8f
MD5 4dfee7b1eb9939d32e2c0fb7d91d681a
BLAKE2b-256 e2fb9960a73de9993a7a8d9f128da4eb811b9aa2b15340cf2846445fe9c79779

See more details on using hashes here.

File details

Details for the file pyftdc-0.3.9-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pyftdc-0.3.9-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 20ae01a5128b5e7f0df5ad786144e821d75169ae198b9a52e2ab11070ee3078a
MD5 bb5e5c728da0bb55e7bfc74268e8a7de
BLAKE2b-256 76b25cced320ff126e5e5b0d86e407f8a325cd87cb3796d49295b0875c04be4c

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