defmodule CodeNameRaven.Runtime.NullAdapter do @moduledoc false # Implements the fallback adapter behaviour returning an empty list. def recent_samples(_monitor_id, _opts), do: [] def instance_id, do: "null-instance" end