31 lines
658 B
Elixir
31 lines
658 B
Elixir
use Mix.Config
|
|
|
|
config :elstat,
|
|
# where will elstat (backend and frontend)
|
|
# be served
|
|
port: 8069,
|
|
|
|
# which services will be managed by elstat?
|
|
# this follows a service spec
|
|
# the example here is for elixire
|
|
services: [
|
|
%{
|
|
id: :elixire,
|
|
description: "elixi.re",
|
|
adapter: Elstat.Adapter.Elixire,
|
|
adapter_opts: %{
|
|
base_url: "https://elixi.re",
|
|
},
|
|
# every 10 seconds
|
|
poll: 10,
|
|
},
|
|
%{
|
|
id: :genserver,
|
|
description: "genserver, elixire main server",
|
|
adapter: Elstat.Adapter.Ping,
|
|
adapter_opts: %{
|
|
address: "192.168.1.1",
|
|
},
|
|
poll: 15,
|
|
},
|
|
]
|