1. 07 1月, 2016 3 次提交
  2. 06 1月, 2016 9 次提交
  3. 05 1月, 2016 5 次提交
  4. 04 1月, 2016 11 次提交
  5. 03 1月, 2016 1 次提交
  6. 01 1月, 2016 6 次提交
  7. 31 12月, 2015 3 次提交
  8. 30 12月, 2015 1 次提交
  9. 29 12月, 2015 1 次提交
    • Y
      Write to InfluxDB directly via UDP · 620e7bb3
      Yorick Peterse 提交于
      This removes the need for Sidekiq and any overhead/problems introduced
      by TCP. There are a few things to take into account:
      
      1. When writing data to InfluxDB you may still get an error if the
         server becomes unavailable during the write. Because of this we're
         catching all exceptions and just ignore them (for now).
      2. Writing via UDP apparently requires the timestamp to be in
         nanoseconds. Without this data either isn't written properly.
      3. Due to the restrictions on UDP buffer sizes we're writing metrics one
         by one, instead of writing all of them at once.
      620e7bb3