Created
February 14, 2021 16:06
-
-
Save bottlenecked/6944746cf174f2cc0f6a2acbc0796102 to your computer and use it in GitHub Desktop.
Dashboard dummy metrics generation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def metrics do | |
[ | |
distribution("a.b.c", | |
tags: [:foo], | |
unit: {:native, :millisecond} | |
), | |
distribution("a.b.c", | |
tags: [:foo, :bar], | |
unit: {:native, :millisecond} | |
), | |
distribution("a.b.c", | |
unit: {:native, :millisecond} | |
), | |
# Phoenix Metrics | |
# ... | |
] | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Dummy do | |
@labels ~w[foo bar baz qux bim bom someversysuperultralargepagepath/with/subpaths nairobi mediteranean_sea] | |
|> List.to_tuple() | |
def metric_value do | |
value = :rand.uniform(125_000_000) | |
case :rand.uniform(2) do | |
1 -> value | |
2 -> -value | |
end | |
end | |
def tag_value do | |
length = tuple_size(@labels) | |
idx = :rand.uniform(length) - 1 | |
elem(@labels, idx) | |
end | |
def execute do | |
for _i <- 1..200 do | |
:telemetry.execute( | |
[:a, :b], | |
%{c: metric_value(), d: metric_value()}, | |
%{foo: tag_value(), bar: tag_value()} | |
) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment