Popularity
2.2
Stable
Activity
0.0
Stable
6
5
1
Monthly Downloads: 24
Programming language: Elixir
License:
Tags:
Applications
Latest version: v0.1.2
medex alternatives and similar packages
Based on the "Applications" category.
Alternatively, view medex alternatives based on common mentions on social networks and blogs.
-
Logflare
Never get surprised by a logging bill again. Centralized structured logging for Cloudflare, Vercel, Elixir and Javascript. -
CaptainFact
๐ CaptainFact - API. The one that serves and process all the data for https://captainfact.io -
Startup Job
An app to search startup jobs scraped from websites written in Elixir, Phoenix, React and styled-components. -
Exon
Exon is a โmess managerโ developed in Elixir and provides a simple API to manage & document your stuff. -
chat
๐ฌ CHAT: Instant Messenger. ISO/IEC: 20922; ITU/IETF: 3394, 3565, 5280, 5480, 5652, 5755 8551, X.509, CMS, PKCS-10, PCKS-7, OCSP, LDAP, DNS; ANSI: X9-42, X9-62, X25519, X488; NIST: SECP384r1. -
majremind
A self-maintained database of your updated server which tells you which one needs to be updated.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of medex or a related project?
Popular Comparisons
README
Medex 
Medical Examination - application for register health check callbacks and represent their state via HTTP.
Installation
Add medex to your list of dependencies in
mix.exs
:def deps do [{:medex, github: "xerions/medex"}] end
Ensure medex is started before your application:
def application do [applications: [:medex]] end
Example
Register new check callback:
Medex.register "db", fn ->
case :erlang.phash2(:erlang.now, 3) do
0 -> :ok
1 -> :warning
2 -> :critical
end
end
and get state
$ curl -v http://localhost:4000/health/db
Consul
Medex suports pushing health check statutes to Consul. It is disabled by default but you can turn it on:
# use consul, false by default
config :medex, consul: true
# which service name will be using for consul health-checks (optional)
config :medex, service_id: "service_example"
And ensure start of consul application.