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
Instead of emitting individual events like:
stats.timers.find.ms stats.timers.find.round.ms
stats.timers.find.ms
stats.timers.find.round.ms
perhaps instead emit a single telemetry event with content being self-describing:
telemetry
module=discover.target_type=timer.operation=find.unit=ms 10 module=discover.target_type=timer.operation=find_round.unit=ms 2
module=discover.target_type=timer.operation=find.unit=ms 10
module=discover.target_type=timer.operation=find_round.unit=ms 2
alternatively:
module=discover target_type=timer operation=find unit=ms 10 module=discover target_type=timer operation=find_round unit=ms 2
module=discover target_type=timer operation=find unit=ms 10
module=discover target_type=timer operation=find_round unit=ms 2
module=discover&target_type=timer&operation=find&unit=ms&10 module=discover&target_type=timer&operation=find_round&unit=ms&2
module=discover&target_type=timer&operation=find&unit=ms&10
module=discover&target_type=timer&operation=find_round&unit=ms&2
Background: http://engineering.indeed.com/talks/logrepo-enabling-data-driven-decisions/ http://dieter.plaetinck.be/metrics_2_a_proposal.html http://dieter.plaetinck.be/introduction_talk_to_metrics2-0_and_graph_explorer.html http://metrics20.org/
The text was updated successfully, but these errors were encountered:
Also consider https://github.com/tristanls/quantify along with https://github.com/tristanls/telemetry-events
Sorry, something went wrong.
No branches or pull requests
Instead of emitting individual events like:
stats.timers.find.ms
stats.timers.find.round.ms
perhaps instead emit a single
telemetry
event with content being self-describing:module=discover.target_type=timer.operation=find.unit=ms 10
module=discover.target_type=timer.operation=find_round.unit=ms 2
alternatively:
module=discover target_type=timer operation=find unit=ms 10
module=discover target_type=timer operation=find_round unit=ms 2
alternatively:
module=discover&target_type=timer&operation=find&unit=ms&10
module=discover&target_type=timer&operation=find_round&unit=ms&2
Background:
http://engineering.indeed.com/talks/logrepo-enabling-data-driven-decisions/
http://dieter.plaetinck.be/metrics_2_a_proposal.html
http://dieter.plaetinck.be/introduction_talk_to_metrics2-0_and_graph_explorer.html
http://metrics20.org/
The text was updated successfully, but these errors were encountered: