Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tatsuya6502/recon_ex
Elixir wrapper for Recon, tools to diagnose Erlang VM safely in production
https://github.com/tatsuya6502/recon_ex
elixir erlang recon
Last synced: 7 days ago
JSON representation
Elixir wrapper for Recon, tools to diagnose Erlang VM safely in production
- Host: GitHub
- URL: https://github.com/tatsuya6502/recon_ex
- Owner: tatsuya6502
- License: bsd-3-clause
- Created: 2015-12-26T02:42:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-10-17T16:41:01.000Z (about 1 year ago)
- Last Synced: 2024-10-16T12:45:40.627Z (22 days ago)
- Topics: elixir, erlang, recon
- Language: Elixir
- Size: 39.1 KB
- Stars: 64
- Watchers: 3
- Forks: 7
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ReconEx
ReconEx is an Elixir wrapper for [Recon](https://ferd.github.io/recon/).
It is a library to be dropped into any other Elixir project, to be
used to assist DevOps people diagnose problems from `iex` shell in
production Erlang VMs.Included modules are:
- **Recon**
* gathers information about processes and the general state of
the VM, ports, and OTP behaviours running in the node.- **ReconAlloc**
* provides functions to deal with Erlang's memory allocators.- **ReconLib**
* provides useful functionality used by Recon when dealing
with data from the node.- **ReconTrace**
* production-safe tracing facilities.Documentation for the library can be obtained at
https://hex.pm/packages/recon_ex (**TODO**)It is recommended that you use tags (**TODO**: create tags) if you do
not want bleeding edge and development content for this library.## Current Status
Versions supported:
- Elixir 1.1 or newer
- Recon 2.5.0 or newer## Try Them Out
To build the library:
```shell-session
mix deps.get
mix compile
iex -S mix
```**TODO**: Some examples.
## Install As Dependency
**TODO**
## Change Log
**TODO**
## Special Thanks
- Special thanks to Fred Hebert, the author of [Recon](https://ferd.github.io/recon/),
and the all contributors to it.## License
This code, as the original Recon, is published under the BSD 3-clause
License. See LICENSE file for more information.