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