Packages
prometheus
3.4.5
6.1.3
6.1.2
6.1.1
6.1.0
6.0.3
6.0.2
6.0.1
6.0.0
5.1.1
5.1.0
5.0.0
4.13.0
retired
4.12.0
4.11.0
4.10.0
4.9.1
4.9.0
4.8.2
4.8.1
4.8.0
4.6.0
4.5.0
4.4.1
4.4.0
4.3.0
4.2.2
4.2.0
4.1.0
4.0.1
4.0.0
3.5.1
3.5.0
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.3
3.2.2
3.2.1
3.1.1
3.1.0
3.0.1
3.0.0
3.0.0-rc1
3.0.0-alpha9
3.0.0-alpha8
3.0.0-alpha7
3.0.0-alpha6
3.0.0-alpha5
3.0.0-alpha4
3.0.0-alpha3
3.0.0-alpha2
3.0.0-alpha10
3.0.0-alpha1
2.2.0
2.1.0
2.0.0
1.7.0
1.6.0
1.5.0
1.0.2
1.0.1
1.0.0
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
Prometheus.io client in Erlang
Current section
Files
Jump to
Current section
Files
prometheus
mix.exs
mix.exs
defmodule Prometheus.Mixfile do
use Mix.Project
def project do
[app: :prometheus,
version: "3.4.5",
description: description(),
package: package()]
end
defp description do
"""
Prometheus monitoring system and time series database client in Erlang.
"""
end
def application do
[mod: { :prometheus, [] }]
end
defp package do
[build_tools: ["rebar3", "mix"],
maintainers: ["Ilya Khaprov"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/deadtrickster/prometheus.erl",
"Cowboy exporter/instrumenter" => "https://hex.pm/packages/prometheus_cowboy",
"Inets HTTPD Exporter" => "https://hex.pm/packages/prometheus_httpd",
"Prometheus.ex" => "https://hex.pm/packages/prometheus_ex",
"Ecto Instrumenter" => "https://hex.pm/packages/prometheus_ecto",
"Phoenix Instrumenter" => "https://hex.pm/packages/prometheus_phoenix",
"Plugs Instrumenter/Exporter" => "https://hex.pm/packages/prometheus_plugs",
"Process info Collector" => "https://hex.pm/packages/prometheus_process_collector"},
files: ["mix.exs", "bin", "src", "include", "README.md", "LICENSE", "rebar.config"]]
end
end