Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msantos/runlet
Event stream query and flow control
https://github.com/msantos/runlet
chatbot flowcontrol monitoring riemann
Last synced: 14 days ago
JSON representation
Event stream query and flow control
- Host: GitHub
- URL: https://github.com/msantos/runlet
- Owner: msantos
- License: isc
- Created: 2019-09-15T12:06:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-07-12T11:08:48.000Z (6 months ago)
- Last Synced: 2024-12-13T03:28:08.903Z (21 days ago)
- Topics: chatbot, flowcontrol, monitoring, riemann
- Language: Elixir
- Size: 126 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Runlet
[![Package Version](https://img.shields.io/hexpm/v/runlet)](https://hex.pm/packages/runlet)
[![Hex Docs](https://img.shields.io/badge/hex-docs)](https://hexdocs.pm/runlet/)A job command language for querying and enforcing flow control on
event streams. `runlet` is a library used for event notifications in
monitoring systems.`runlets` are light weight processes connecting to an event source
similar to a shell pipeline. The output of a runlet can be temporarily
stopped or terminated using job control commands.An event source could be a monitoring system like
[Riemann](http://riemann.io/) or the standard output of a containerized
system process.The event stream is piped through commands to transform and rate limit
events before being outputted.## Installation
Add runlet to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:runlet, git: "https://github.com/msantos/runlet.git"}]
end
```