Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lpil/glatus
Gleam bindings to the API of the Gatus health check tool
https://github.com/lpil/glatus
Last synced: 22 days ago
JSON representation
Gleam bindings to the API of the Gatus health check tool
- Host: GitHub
- URL: https://github.com/lpil/glatus
- Owner: lpil
- Created: 2023-11-10T12:55:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-10T13:42:19.000Z (about 1 year ago)
- Last Synced: 2024-11-12T22:23:38.075Z (about 1 month ago)
- Language: Gleam
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-gleam - glatus - [📚](https://hexdocs.pm/glatus/) - Gleam bindings to the API of the Gatus health check tool (Packages / API Clients)
README
# glatus
Gleam bindings to the API of the Gatus health check tool.
[![Package Version](https://img.shields.io/hexpm/v/glatus)](https://hex.pm/packages/glatus)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/glatus/)```sh
gleam add glatus
```
```gleam
import glatus
import gleam/httpcpub fn main() {
// Build a request
let request =
glatus.statuses_request(host: "status.lpil.uk", page: 1)// Send the request with a HTTP client
let assert Ok(response) = httpc.send(request)// Decode the response
let information = glatus.handle_statuses_response(response)
}
```Documentation can be found at .