View Source Unplug.Predicates.RequestPathNotIn (Unplug v1.1.0)

Given a request path, do not execute the plug if the request value is in the the provided enumerable of values.

Usage:

plug Unplug,
  if: {Unplug.Predicates.RequestPathNotIn, ["/metrics", "/healthcheck"]},
  do: MyApp.Plug