Description
An API client library for Mackerel.
Description
This library provides bindings to Mackerel APIs.
The official site of Mackerel: https://mackerel.io/. The reference of Mackerel API: https://mackerel.io/api-docs/.
README.md
mackerel-client-hs
An API client library for Mackerel.
API documents: Mackerel API Documents (v0)
The official Go client library: mackerel-client-go
Example
import Data.Default
import Web.Mackerel
main :: IO ()
main = do
let client = def { apiKey = "<Mackerel-API-KEY>" }
print =<< getOrganization client
print =<< listUsers client
print =<< listHosts client def { listHostsParamsService = Just "servicename", listHostsParamsRoles = ["role1", "role2"] }
print =<< listMonitors client
print =<< updateMonitor client monitor { monitorName = "Monitor name renamed" }
print =<< deleteMonitor client (MonitorId "<Monitor-ID>")
print =<< listAlerts client
print =<< closeAlert client (AlertId "<Alert-ID>") "this is not an important alert"
Author
itchyny [email protected]
License
This software is released under the MIT License, see LICENSE.