Closed binarylogic closed 5 years ago
Fix released in Timber Phoenix 1.0.1
I just upgraded to 1.0.1
using this config
config :timber_phoenix, Timber.Phoenix,
controller_actions_blacklist: [
{StudioWeb.HealthController, :show}
]
Doesn't seem to work for some reason. It's still logging my health check.
@zacksiri the configuration documentation had an error previously, but was recently fixed.
The config should look something like:
config :timber_phoenix,
parsed_controller_actions_blacklist: [
{StudioWeb.HealthController, :show}
]
More documentation is available here: https://hexdocs.pm/timber_phoenix/Timber.Phoenix.html#module-ignoring-controller-actions-for-instrumentation
We've had a couple of customers complain that blacklisting is not working as expected. I'd like to verify that this did not break in the transition to 3.0, and possibly get some tests in place to prevent regression going forward
From our customer:
We are happily on timber for elixir 3.0 and are using timber_phoenix. we have this configuration:
but we are still seeing these in our logs:
is there some extra special thing we need to do to get rid of these?