maz
Configuring statix like so:
config :statix,
prefix: "asdf",
port: 8125
I’ve confirmed my statix calls are being received by statsd_logger(they appear in console). However whenever I send to the datadog agent(either on mac dev machine or running the agent from production), I do not see the tags appear in the Datadog Metrics summary(no user-generated tags have ever appeared so far), while there are definitely system-related tags appearing in the metric summary.
I’ve properly initialized statix in application.ex:
:ok = MyApp.Statix.connect()
and here is an example call:
MyApp.Statix.histogram(
"myapp.pipeline_rest.store_mby_seats_aggregator.seat_stored",
Timing.unix_ms_now() - unix_ms
)
Any ideas? – Michael
EDIT: while the datadog agent was running locally on my dev mac I did:
echo "asdffoo:2|c" | nc -u -w0 127.0.0.1 8125
but still did not see the tag appear in the Datadog metric summary. So I think it has something to do with Datadog.
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex











Showing Posts 1 to 1- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
maz
The issue was that I am on the 14-day trial and that plan doesn’t support Custom Metrics. Ouch.