A set example apps demonstrating and validating built-in instrumentation.
In CI, these test are always run. When developing locally, you can run the tests easily by first starting the dependent docker services:
docker compose up
mix test
Create the app
cd apps
mix new --sup example
Point to the agent
defp deps do
[
{:new_relic_agent, path: "../../../"},
# ...
]
end