influxdb-rails
influxdb-rails copied to clipboard
Ruby on Rails bindings to automatically write metrics into InfluxDB
It would be nice to add UDP support, and also the `discard_write_errors` support too. This could add more performance and also avoid spamming the logs it the influxdb server goes...
Hello, I noticed when scheduling a bunch of jobs where each sends one mail, the stats in the Performance Dashboard on jobs executed and mails sent is incorrect. The affected...
Hello, just wanted to ask real quick if the updates to dashboards in this repo will be published on grafana.com? Greetings, Michael
Hello again, looking at entries with `process_action` == `hook`, I noticed that the `status` is missing for entries that were redirected with the warden middleware. For redirects within my application...
When I use `InfluxDB::Rails.instrument` in a background process, I would like to override the default location ``` InfluxDB::Rails.instrument "expensive_operation", tags: {location: "Foo#bar }, values: { } do expensive_operation end ```...
We could get rid of a lot of code in `InfluxDB::Rails::Railtie` if we inherit from `ActiveSupport::Subscriber` in our own `Subscriber` classes and subscribe to the events in that way.
Hiyo, Just wondering if there was any plans for supporting Influx DB 2.0? I noticed that it requires a different client library and it's API is quite different too. However...
The request id is a unique UUID and therefore we store it in a field. Unfortunately fields can not be grouped in InfluxDB. For ActiveRecord SQL, the data schema looks...
In our specs we use a test client to test if metrics were successfully written. https://github.com/influxdata/influxdb-rails/blob/1c9d6997c4add19f9189f1c62b2adff22644635e/spec/support/test_client.rb#L8-L10 The test client is basically just an array with hashes. To simplify our specs...
Samples
For some high throughput apps it would make sense to be able to specify a sample size. Something like ```ruby InfluxDB::Rails.configure do |config| config.sample_size = 10 # Only measure every...