Packages
Dead-man's-switch / heartbeat monitor — flags a job as down when it stops checking in — with its dashboard panel bundled in the same package as a separate module (Integrations.Heartbeat.Display) — one install, both halves; a release without raven_web simply runs the monitor headless.
Current section
Files
Jump to
Current section
Files
raven_integration_heartbeat
mix.exs
mix.exs
defmodule RavenIntegrationHeartbeat.MixProject do
use Mix.Project
def project do
[
app: :raven_integration_heartbeat,
version: "0.4.2",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps()
]
end
def application, do: [extra_applications: [:logger]]
defp deps do
[
{:raven_observer_sdk, "~> 0.5", only: :dev},
{:raven_observer_display_sdk, "~> 0.1", only: :dev}
]
end
defp package do
[
description: "Dead-man's-switch / heartbeat monitor — flags a job as down when it stops checking in — with its dashboard panel bundled in the same package as a separate module (Integrations.Heartbeat.Display) — one install, both halves; a release without raven_web simply runs the monitor headless.",
licenses: ["0BSD"],
links: %{
"Website" => "https://raven.observer/",
"Codeberg" => "https://codeberg.org/Raven-Observer/raven-observer-integrations",
"Raven Observer" => "https://codeberg.org/Raven-Observer/raven-observer"
}
]
end
end