I have a Rails application and I want to start tracking some metrics and events. I must track this information using Microsoft Azure, so I found a the gem AppInsights-Ruby developed by Microsoft itself.
I got my instrumentation_key
and did what the README says but I can't see any information on the Azure portal.
I thought it could be a problem with the queues so I filled up the queue with
2000.times {|x| tc.track_metric 'My metric', x }
6000.times {|x| tc.track_event 'My event' }
But again, there is no metrics or events on the Azure portal.
Does anybody used this gem? Am I missing something?