16 lines
510 B
Erlang
16 lines
510 B
Erlang
%% -*- mode: erlang -*-
|
|
{application, emqx_prometheus,
|
|
[{description, "Prometheus for EMQ X"},
|
|
{vsn, "5.0.0"}, % strict semver, bump manually!
|
|
{modules, []},
|
|
{registered, [emqx_prometheus_sup]},
|
|
{applications, [kernel,stdlib,prometheus,emqx]},
|
|
{mod, {emqx_prometheus_app,[]}},
|
|
{env, []},
|
|
{licenses, ["Apache-2.0"]},
|
|
{maintainers, ["EMQ X Team <contact@emqx.io>"]},
|
|
{links, [{"Homepage", "https://emqx.io/"},
|
|
{"Github", "https://github.com/emqx/emqx-prometheus"}
|
|
]}
|
|
]}.
|