An open API service indexing awesome lists of open source software.

https://github.com/drobban/service_status

wip. Register services to monitor.
https://github.com/drobban/service_status

Last synced: about 2 months ago
JSON representation

wip. Register services to monitor.

Awesome Lists containing this project

README

        

# ServiceStatus

Monitors registered web-services.

supply url and interval given in seconds and you will recieve events informing about status.

## Installation

```elixir
def deps do
[
{:service_status, git: "[email protected]:drobban/service_status.git", ref: "9cb5b18b1c81a"}
]
end
```

## Example

```elixir

iex> ServiceStatus.register("google", %ServiceStatus.Config{
iex> interval: 180,
iex> url: "https://google.com",
iex> client: self(),
iex> internal_id: 1
iex> })
:ok

```