Skip to main content

A package to collect and analyze basic performance data from clusters

Project description

Warning!

work in progress

This is work in progress!

Some features marked with Warning: TBD! are not yet developed.

Introduction

FrUCToSA stands for Frankfurt University Cluster Tool of Software Analysis.

It is a simple tool to

  1. collect, and

  2. analyze

data from software running on a cluster (like Goethe-HLR) —and from the cluster itself— and to analyze that data with performance “in mind”.

FrUCToSA is made of two elements:

  • LiMon: a Light Monitor that collects data.

  • PerA: a Performance Analyzer that analyzes the data and classifies it. Warning: TBD!

The package provides several programs:

  • fructosad: main program. It works in the background (as a service/daemon) orchestrating all the system. Warning: TBD!

  • lagent: LiMon agent. Customizable service/daemon that collects performance data from the a node on the cluster. It runs locally and collects data from sensors that can be activated and configured via a configuration file.

  • lmaster: LiMon master. Another service/daemon that controls the agents and collects data from them. It runs in a master node of the cluster; it is controled via a configuration file.

  • perad: another service/daemon that analyzes the data and classifies it according to the performance Warning: TBD!

  • make-fructosa-dashboard: to generate Grafana dashboards.

FrUCToSA is developed in Python at the CSC (Goethe Universitaet Frankfurt) under the GPL3 license.

Installation

Just install the FrUCToSA package from PyPI:

$ pip install FrUCToSA

Usage

  1. Configure lmaster and lagent

  2. [optional] Start Graphite (the data will be sent to it)

  3. [optional] Start Grafana and connect it to Graphite: this is an easy way to have nice plots and dashboards.

  4. Start lmaster (see the output of lmaster -h, to learn about some parameters to control lmaster):

    # lmaster start

    A configuration file is needed. By default the configuration file is /etc/fructosa/lmaster.conf but that can be changed from the command line.

    A typical configuration might be:

    [lmaster]
    host = localhost
    incoming data port = 7888
    
    [Graphite]
    host = localhost
    carbon receiver pickle port = 2004
    
    [logging]
    filename = /tmp/limon.log
    maxBytes = 1073741824
    backupCount = 10
    level = DEBUG

    No option is mandatory. In the file fructosa/constants.py the defaults are defined.

  5. Start lagent on one or several computers (again, see the output of lagent -h, for more details):

    # lagent start

    A configuration file is needed. By default the configuration file is /etc/fructosa/lagent.conf, but can be changed from the command line. In this configuration file is where the needed sensors are activated. A typical configuration with the master and the agent running locally looks like this:

    [lmaster]
    host = localhost
    incoming data port = 7888
    
    [logging]
    filename = /tmp/limon.log
    maxBytes = 1073741824
    backupCount = 10
    level = DEBUG
    
    [sensor:CPUPercent]
    time_interval = 10
    
    [sensor:VirtualMemory]
    time_interval = 30
    
    [sensor:CPUTimes]
    time_interval = 30
    
    [sensor:CPUTimesPercent]
    time_interval = 10
    
    [sensor:CPUCount]
    time_interval = 300
    
    [sensor:CPUStats]
    time_interval = 30
    
    [sensor:CPUFreq]
    time_interval = 300
    
    [sensor:SwapMemory]
    time_interval = 60
    
    [sensor:DiskPartitions]
    time_interval = 60
    
    [sensor:DiskUsage]
    time_interval = 30
    #path = /
    
    [sensor:DiskIOCounters]
    time_interval = 20
    
    [sensor:NetIOCounters]
    time_interval = 10
    
    [sensor:NetConnections]
    time_interval = 20
    
    [sensor:NetIFAddrs]
    time_interval = 30
    
    [sensor:NetIFStats]
    time_interval = 30
    
    [sensor:SensorsTemperatures]
    time_interval = 30
    
    [sensor:SensorsFans]
    time_interval = 30
    
    [sensor:SensorsBattery]
    time_interval = 30
    
    [sensor:BootTime]
    time_interval = 300
    
    [sensor:Users]
    time_interval = 10

    This is just an example with many sensors active. No option is mandatory. But if lagent must measure anything, some sensor must be explicitly given. In the file fructosa/constants.py the defaults are defined. The time given in the time_interval option is understood to be in seconds. If the agent runs on a different computer as the master, the host entry in the lmaster section must be adjusted accordingly.

Security

All the communications between lmaster and lagent are bona fide. There are no authentication or encryption mechanisms for now.

TODO

  • Change constants.py: lagent, lmaster -> limon

  • lagent should have an option to display the available sensors and some help for each sensor.

  • Sensors should accept options: the mechanism is almost there, but need to be completed.

  • Add sensors to read data from GPUs.

  • Connect to Slurm.

  • Add configuration options to manage Graphite:

    • send data to it or not? (yes by default)

  • openrc scripts to manage the whole system:

    • start

      1. start graphite

      2. start grafana (?)

      3. start lmaster

      4. start lagents where needed

    • stop

      1. stop lagents

      2. stop lmaster

      3. stop grafana (?)

      4. stop graphite

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

FrUCToSA-0.2.0.tar.gz (94.0 kB view details)

Uploaded Source

Built Distribution

FrUCToSA-0.2.0-py3-none-any.whl (40.8 kB view details)

Uploaded Python 3

File details

Details for the file FrUCToSA-0.2.0.tar.gz.

File metadata

  • Download URL: FrUCToSA-0.2.0.tar.gz
  • Upload date:
  • Size: 94.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6

File hashes

Hashes for FrUCToSA-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b6a08f00744ed490c167cae15c5e96f7f789571b244810182f85a087c12a25d5
MD5 78349ed5a5bf1cc00701ae4c048e99fe
BLAKE2b-256 df0658b21e3e2dcf85230cd4565cc458c7f2ef65af384bba94f1e88e056d4c54

See more details on using hashes here.

File details

Details for the file FrUCToSA-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: FrUCToSA-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.6

File hashes

Hashes for FrUCToSA-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1285259ea7967b18c2a2f1256c341c17321c679068700e3fcda586daa28cfc56
MD5 30523bde0d9dfb6d01a7bc5f4b24e3c1
BLAKE2b-256 5991e130fdb7e9f40ac37f5a01afaa4ad42ef1a3038fe400f2af743585857214

See more details on using hashes here.

Supported by

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