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.6.tar.gz (1.3 MB view details)

Uploaded Source

File details

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

File metadata

  • Download URL: pyftdc-0.3.6.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.6.tar.gz
Algorithm Hash digest
SHA256 bf14f881640f2561e0016a312a2bc6e10b660025aa17ca3349d5b1fc5716a4ca
MD5 764b3dff8ab59b285d8a1f265eaddb7b
BLAKE2b-256 623d56b7756c6515a10e96a1a250cadfd6219ab00d45d8f4328690cc945d0efc

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