Git Product home page Git Product logo

monitor_process_out's Introduction

monitor_process_out

Reads process output in real time and store results into files every N secons. Allows to run additionals process on saved files. Originally created to monitor output from kafka-console-consumer.sh

Start

$ monitor_process_out -cfg CONFIG_FILE

CONFIG_FILE - JSON config file (defualt 'config.json')

Structure:

{
    "write_interval": 10,
    "command": "ls",
    "command_args": ["-la"],
    "out_dir": "/out",
    "log_dir": "/log",
    "out_filename_pattern": "out_{{.Timestamp}}.txt",
    "out_process_script": "python",
    "out_process_script_params": ["process_out.py", "-additinal_flag"]
}

write_interval - interval in seconds, how often data will be save to file

command - process which output will be monitored

command_args - process arguments

out_dir - directory path where files will be stored

log_dir - directory path where logs will be stored

out_filename_pattern - name of the out file {{.Timestamp}} will be replaced by timestamp in format YYYYMMMDDDhhmmss[nanoseconds]`

out_process_script - optional script, which will called after each file save. As a parameter will be passed path to the saved file.

out_process_script_params - additionals parameters for out_process_script

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.