We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
I'm just wondering how I might access predefined exomter reports. I tried to add a predefined section to the config but that didn't work:
predefined
# Configure Elixometer Instrumentation config(:exometer_core, report: [ reporters: [ {:exometer_report_tty, []} ] ], predefined: [ { ~w(erlang memory)a, {:function, :erlang, :memory, [], :proplist, ~w(atom binary ets processes total)a}, [] }, { ~w(erlang statistics)a, {:function, :erlang, :statistics, [:'$dp'], :value, [:run_queue]}, [] } ]) config(:elixometer, reporter: :exometer_report_tty, env: Mix.env, metric_prefix: "bms")
The text was updated successfully, but these errors were encountered:
I think you need to subscribe to it:
config(:exometer_core, report: [ reporters: [ {:exometer_report_tty, []} ], subscribers: [ { :exometer_report_tty, [:erlang, :memory], ~w(atom binary ets processes total)a, 1_000, true } ] ], # rest of config here...
Sorry, something went wrong.
scohen
No branches or pull requests
Hi!
I'm just wondering how I might access predefined exomter reports. I tried to add a
predefined
section to the config but that didn't work:The text was updated successfully, but these errors were encountered: