PrometheusPhoenix 

Phoenix integeration for Prometheus.erl.
Metrics
phoenix_controller_call_duration_microseconds- Whole controller pipeline execution time.
Configuration
This integartion is configured via <InstrumenterName> :prometheus app env key. Please see Prometheus.PhoenixInstrumenter module documentation for more information.
Documentation
Please find documentation on hexdocs.
Installation
Available in Hex, the package can be installed as:
-
Add
prometheus_phoenixto your list of dependencies inmix.exs:
```elixir
def deps do
[{:prometheus_phoenix, "~> 0.0.4"}]
end
```-
Ensure
prometheus_phoenixis started before your application:
```elixir
def application do
[applications: [:prometheus_phoenix]]
end
```