Plug New Relic
Enable reporting to Newrelic through statman for Plug based web servers
##Setting Up ###Installation
-
Add amix to your
mix.exsdependencies:
def application do
[
...
applications: [ ... , :plug_newrelic, ...]
...
]
end```elixir
def deps do
[
{:plug_newrelic, "~> 0.0.5"}
]
end
```- Add Amix.Wrapper before the :match Plug
defmodule MyApp do
import Plug.Conn
use Application
use Plug.Router
plug PlugNewrelic.Wrapper, []
plug :match
plug :dispatch###Configuration
- Add Newrelic application to your config.exs file
config :newrelic,
application_name: 'MyApp Name',
license_key: '1234567890'And voila, you should see transactions in you application overview on Newrelic. The connector also reports responses with code >= 400 as error to Newrelic
####Installation troubleshooting if you find yourself struggling with lhttpc compilation errors, you should remove non standard characters from this extension Author name.
You can add lhttpc to the applications list in rel/config.exs file:
release :your_app do
set version: current_version(:your_app)
set vm_args: "rel/vm.args"
set applications: [
:runtime_tools,
:lhttpc
]
endIf you have problems with jiffy dependence add this to you mix.exs like this:
defp deps do
[
{:jiffy, "~> 0.14.7", override: true},