GithubHelp home page GithubHelp logo

ianmiell / autotrace Goto Github PK

View Code? Open in Web Editor NEW
71.0 4.0 0.0 6.15 MB

Runs a process, and gives you the output along with other telemetry on the process, all in one terminal window.

Python 98.02% Shell 1.98%
automation debugging-tool

autotrace's Introduction

autotrace

Runs a process, and gives you the output along with other telemetry on the process, all in one terminal window.

Here's me seeing what ping google.com (after 'forgetting' to run it under autotrace) does by looking at strace and tcpdump, with the command:

autotrace

You can also run:

autotrace 'ping google.com' 'strace -p PID' 'any other commands' ...

Demo

See here for more.

Features:

  • Pause program in-flight to see what's going on

  • Supply PID to pane's command and it gets the main pid sub'd in (see strace in the example above)

  • Colorised, multi-pane output

  • Output of all commands captured to files (in /tmp/tmpautotrace/PID/*)

  • Raise PR if you want other features

Install

# Requires:
# python (2 or 3)
# pip
pip install autotrace

Examples

Mac example:

$ sudo autotrace \
    'find /' \
    'dtruss -f -p PID' \
    'iostat 1'

PID is replaced with the PID of the main (-c) command

Linux example with strace and vmstat:

$ sudo autotrace \
    'find /' \
    'strace -p PID' \
    'vmstat 1'

Linux example with strace and tcpdump:

$ sudo autotrace \
     'nmap localhost' \
     'strace -p PID' \
     'tcpdump -XXs 20000'

Example with while true script to iterate output:

$ sudo autotrace \
    'nmap localhost' \
    'strace -p PID' \
    'tcpdump -XXs 20000' \
    'bash -c "while true; do free; sleep 5; done"'

Linux example with more than four panes that can be cycled through by hitting 'm':

$ sudo autotrace \
    'nmap localhost' \
    'strace -p PID' \
    'tcpdump -XXs 20000' \
    'bash -c "while true; do free; sleep 5; done"' \
    'bash -c "while true; do lsof -p PID | tail -5; sleep 5; done"' \

A (Linux) monster:

$ sudo autotrace \
    'nmap localhost' \
    'strace -p PID' \
    'tcpdump -XXs 20000' \
    'bash -c "while true; do free; sleep 5; done"' \
    'bash -c "while true; do lsof -p PID | tail -5; sleep 5; done"' \
    'bash -c "while true; do pstree -p PID | tail -5; sleep 5; done"' \
    'bash -c "while true; do cat /proc/interrupts; sleep 1; done"'

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.