New Relic Elixir Agent. This uses the official New Relic Agent SDK.
The New Relic agent SDK can only be built on linux currently. This is a pre-release, only a simple transaction and error tracing is currently available.
def deps do
[{:elixir_newrelic, "~> 0.2.1"}]
end
mix deps.get
mix deps.compile
In the releases there is a 'newrelic' application or you can compile it from source
git clone this repository.
mix deps.get
mix deps.compile
mix compile
mic compile.cure
This will also run the Makefile and create the newrelic application file
- Install libcurl
- Install openssl
- Install protobuf (used for Elixir to C++ communication)
- Copy the New Relic shared object to /usr/local/lib (can also be found in the release)
config :elixir_newrelic,
newrelic_location: "/absolute/path/to/newrelic/application",
license: "my_newrelic_license_key",
app_name: "my_appname_in_newrelic"
{:ok, server} = ElixirNewrelic.start_link
{:ok, init} = ElixirNewrelic.Api.Agent.init(server)
{:ok, response} = ElixirNewrelic.Api.Transaction.transaction_begin(server, "test")
exception_type = "Error"
error_message = "Something went wrong"
stack_trace = "..."
stack_frame_delimiter = "\n"
transaction_id = response.transaction_id
{:ok, response} = ElixirNewrelic.Api.Transaction.transaction_notice_error(server, transaction_id, exception_type, error_message, stack_trace, stack_frame_delimiter)
{:ok, response} = ElixirNewrelic.Api.Transaction.transaction_end(server, transaction_id)