Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created March 31, 2020 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/0491b25163b20825db8754d9bbb3b923 to your computer and use it in GitHub Desktop.
Save r-ryantm/0491b25163b20825db8754d9bbb3b923 to your computer and use it in GitHub Desktop.
/nix/store/jkw33axw0pbnhi9vsnhv2y684ivabzyr-circus-0.16.1
├── bin
│   ├── circusctl
│   ├── circusd
│   ├── circusd-stats
│   ├── circus-plugin
│   └── circus-top
├── lib
│   └── python3.7
│   └── site-packages
│   ├── circus
│   │   ├── arbiter.py
│   │   ├── circusctl.py
│   │   ├── circusd.py
│   │   ├── client.py
│   │   ├── commands
│   │   │   ├── addwatcher.py
│   │   │   ├── base.py
│   │   │   ├── decrproc.py
│   │   │   ├── dstats.py
│   │   │   ├── errors.py
│   │   │   ├── get.py
│   │   │   ├── globaloptions.py
│   │   │   ├── incrproc.py
│   │   │   ├── __init__.py
│   │   │   ├── ipythonshell.py
│   │   │   ├── kill.py
│   │   │   ├── listen.py
│   │   │   ├── list.py
│   │   │   ├── listsockets.py
│   │   │   ├── numprocesses.py
│   │   │   ├── numwatchers.py
│   │   │   ├── options.py
│   │   │   ├── __pycache__
│   │   │   │   ├── addwatcher.cpython-37.pyc
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── decrproc.cpython-37.pyc
│   │   │   │   ├── dstats.cpython-37.pyc
│   │   │   │   ├── errors.cpython-37.pyc
│   │   │   │   ├── get.cpython-37.pyc
│   │   │   │   ├── globaloptions.cpython-37.pyc
│   │   │   │   ├── incrproc.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ipythonshell.cpython-37.pyc
│   │   │   │   ├── kill.cpython-37.pyc
│   │   │   │   ├── list.cpython-37.pyc
│   │   │   │   ├── listen.cpython-37.pyc
│   │   │   │   ├── listsockets.cpython-37.pyc
│   │   │   │   ├── numprocesses.cpython-37.pyc
│   │   │   │   ├── numwatchers.cpython-37.pyc
│   │   │   │   ├── options.cpython-37.pyc
│   │   │   │   ├── quit.cpython-37.pyc
│   │   │   │   ├── reloadconfig.cpython-37.pyc
│   │   │   │   ├── reload.cpython-37.pyc
│   │   │   │   ├── restart.cpython-37.pyc
│   │   │   │   ├── rmwatcher.cpython-37.pyc
│   │   │   │   ├── sendsignal.cpython-37.pyc
│   │   │   │   ├── set.cpython-37.pyc
│   │   │   │   ├── start.cpython-37.pyc
│   │   │   │   ├── stats.cpython-37.pyc
│   │   │   │   ├── status.cpython-37.pyc
│   │   │   │   ├── stop.cpython-37.pyc
│   │   │   │   └── util.cpython-37.pyc
│   │   │   ├── quit.py
│   │   │   ├── reloadconfig.py
│   │   │   ├── reload.py
│   │   │   ├── restart.py
│   │   │   ├── rmwatcher.py
│   │   │   ├── sendsignal.py
│   │   │   ├── set.py
│   │   │   ├── start.py
│   │   │   ├── stats.py
│   │   │   ├── status.py
│   │   │   ├── stop.py
│   │   │   └── util.py
│   │   ├── config.py
│   │   ├── consumer.py
│   │   ├── controller.py
│   │   ├── exc.py
│   │   ├── fixed_threading.py
│   │   ├── green
│   │   │   ├── arbiter.py
│   │   │   ├── client.py
│   │   │   ├── consumer.py
│   │   │   ├── controller.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── arbiter.cpython-37.pyc
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── consumer.cpython-37.pyc
│   │   │   │   ├── controller.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── sighandler.cpython-37.pyc
│   │   │   └── sighandler.py
│   │   ├── __init__.py
│   │   ├── papa_process_proxy.py
│   │   ├── _patch.py
│   │   ├── pidfile.py
│   │   ├── plugins
│   │   │   ├── command_reloader.py
│   │   │   ├── flapping.py
│   │   │   ├── http_observer.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── command_reloader.cpython-37.pyc
│   │   │   │   ├── flapping.cpython-37.pyc
│   │   │   │   ├── http_observer.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── redis_observer.cpython-37.pyc
│   │   │   │   ├── resource_watcher.cpython-37.pyc
│   │   │   │   ├── _statsd.cpython-37.pyc
│   │   │   │   ├── statsd.cpython-37.pyc
│   │   │   │   └── watchdog.cpython-37.pyc
│   │   │   ├── redis_observer.py
│   │   │   ├── resource_watcher.py
│   │   │   ├── _statsd.py
│   │   │   ├── statsd.py
│   │   │   └── watchdog.py
│   │   ├── process.py
│   │   ├── py3compat.py
│   │   ├── __pycache__
│   │   │   ├── arbiter.cpython-37.pyc
│   │   │   ├── circusctl.cpython-37.pyc
│   │   │   ├── circusd.cpython-37.pyc
│   │   │   ├── client.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── consumer.cpython-37.pyc
│   │   │   ├── controller.cpython-37.pyc
│   │   │   ├── exc.cpython-37.pyc
│   │   │   ├── fixed_threading.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── papa_process_proxy.cpython-37.pyc
│   │   │   ├── _patch.cpython-37.pyc
│   │   │   ├── pidfile.cpython-37.pyc
│   │   │   ├── process.cpython-37.pyc
│   │   │   ├── py3compat.cpython-37.pyc
│   │   │   ├── sighandler.cpython-37.pyc
│   │   │   ├── sockets.cpython-37.pyc
│   │   │   ├── util.cpython-37.pyc
│   │   │   └── watcher.cpython-37.pyc
│   │   ├── sighandler.py
│   │   ├── sockets.py
│   │   ├── stats
│   │   │   ├── client.py
│   │   │   ├── collector.py
│   │   │   ├── __init__.py
│   │   │   ├── publisher.py
│   │   │   ├── __pycache__
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── collector.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── publisher.cpython-37.pyc
│   │   │   │   └── streamer.cpython-37.pyc
│   │   │   └── streamer.py
│   │   ├── stream
│   │   │   ├── file_stream.py
│   │   │   ├── __init__.py
│   │   │   ├── papa_redirector.py
│   │   │   ├── __pycache__
│   │   │   │   ├── file_stream.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── papa_redirector.cpython-37.pyc
│   │   │   │   └── redirector.cpython-37.pyc
│   │   │   └── redirector.py
│   │   ├── tests
│   │   │   ├── generic.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── generic.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── support.cpython-37.pyc
│   │   │   │   ├── test_arbiter.cpython-37.pyc
│   │   │   │   ├── test_circusctl.cpython-37.pyc
│   │   │   │   ├── test_circusd.cpython-37.pyc
│   │   │   │   ├── test_client.cpython-37.pyc
│   │   │   │   ├── test_command_decrproc.cpython-37.pyc
│   │   │   │   ├── test_command_incrproc.cpython-37.pyc
│   │   │   │   ├── test_command_kill.cpython-37.pyc
│   │   │   │   ├── test_command_list.cpython-37.pyc
│   │   │   │   ├── test_command_quit.cpython-37.pyc
│   │   │   │   ├── test_command_set.cpython-37.pyc
│   │   │   │   ├── test_command_signal.cpython-37.pyc
│   │   │   │   ├── test_command_stats.cpython-37.pyc
│   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   ├── test_controller.cpython-37.pyc
│   │   │   │   ├── test_convert_option.cpython-37.pyc
│   │   │   │   ├── test_logging.cpython-37.pyc
│   │   │   │   ├── test_papa_stream.cpython-37.pyc
│   │   │   │   ├── test_pidfile.cpython-37.pyc
│   │   │   │   ├── test_plugin_command_reloader.cpython-37.pyc
│   │   │   │   ├── test_plugin_flapping.cpython-37.pyc
│   │   │   │   ├── test_plugin_resource_watcher.cpython-37.pyc
│   │   │   │   ├── test_plugin_statsd.cpython-37.pyc
│   │   │   │   ├── test_plugin_watchdog.cpython-37.pyc
│   │   │   │   ├── test_process.cpython-37.pyc
│   │   │   │   ├── test_reloadconfig.cpython-37.pyc
│   │   │   │   ├── test_runner.cpython-37.pyc
│   │   │   │   ├── test_sighandler.cpython-37.pyc
│   │   │   │   ├── test_sockets.cpython-37.pyc
│   │   │   │   ├── test_stats_client.cpython-37.pyc
│   │   │   │   ├── test_stats_collector.cpython-37.pyc
│   │   │   │   ├── test_stats_publisher.cpython-37.pyc
│   │   │   │   ├── test_stats_streamer.cpython-37.pyc
│   │   │   │   ├── test_stdin_socket.cpython-37.pyc
│   │   │   │   ├── test_stream.cpython-37.pyc
│   │   │   │   ├── test_umask.cpython-37.pyc
│   │   │   │   ├── test_util.cpython-37.pyc
│   │   │   │   ├── test_validate_option.cpython-37.pyc
│   │   │   │   └── test_watcher.cpython-37.pyc
│   │   │   ├── support.py
│   │   │   ├── test_arbiter.py
│   │   │   ├── test_circusctl.py
│   │   │   ├── test_circusd.py
│   │   │   ├── test_client.py
│   │   │   ├── test_command_decrproc.py
│   │   │   ├── test_command_incrproc.py
│   │   │   ├── test_command_kill.py
│   │   │   ├── test_command_list.py
│   │   │   ├── test_command_quit.py
│   │   │   ├── test_command_set.py
│   │   │   ├── test_command_signal.py
│   │   │   ├── test_command_stats.py
│   │   │   ├── test_config.py
│   │   │   ├── test_controller.py
│   │   │   ├── test_convert_option.py
│   │   │   ├── test_logging.py
│   │   │   ├── test_papa_stream.py
│   │   │   ├── test_pidfile.py
│   │   │   ├── test_plugin_command_reloader.py
│   │   │   ├── test_plugin_flapping.py
│   │   │   ├── test_plugin_resource_watcher.py
│   │   │   ├── test_plugin_statsd.py
│   │   │   ├── test_plugin_watchdog.py
│   │   │   ├── test_process.py
│   │   │   ├── test_reloadconfig.py
│   │   │   ├── test_runner.py
│   │   │   ├── test_sighandler.py
│   │   │   ├── test_sockets.py
│   │   │   ├── test_stats_client.py
│   │   │   ├── test_stats_collector.py
│   │   │   ├── test_stats_publisher.py
│   │   │   ├── test_stats_streamer.py
│   │   │   ├── test_stdin_socket.py
│   │   │   ├── test_stream.py
│   │   │   ├── test_umask.py
│   │   │   ├── test_util.py
│   │   │   ├── test_validate_option.py
│   │   │   └── test_watcher.py
│   │   ├── util.py
│   │   └── watcher.py
│   └── circus-0.16.1.dist-info
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
20 directories, 239 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment