An error occurred fetching the project authors.
  1. 08 Jun, 2016 1 commit
    • Sean McGivern's avatar
      Allow custom text on 'almost there' page · 40b6d906
      Sean McGivern authored
      Add a new application setting, after_sign_up_text. This is text to be
      rendered as Markdown and shown on the 'almost there' page after a user
      signs up, but before they've confirmed their account.
      
      Tweak the styles for that page so that centered lists look reasonable.
      40b6d906
  2. 31 May, 2016 1 commit
  3. 16 May, 2016 3 commits
  4. 12 May, 2016 11 commits
  5. 19 Apr, 2016 1 commit
    • Yorick Peterse's avatar
      Configuring of points per UDP packet · 229f3ce9
      Yorick Peterse authored
      This allows users to configure the number of points stored in a single
      UDP packet. This in turn can be used to reduce the number of UDP packets
      being sent at the cost of these packets being somewhat larger.
      
      The default setting is 1 point per packet so nothing changes for
      existing users.
      229f3ce9
  6. 18 Apr, 2016 3 commits
  7. 12 Apr, 2016 3 commits
  8. 05 Apr, 2016 1 commit
    • Robert Speicher's avatar
      Standardize the way we check for and display form errors · 7a2370f7
      Robert Speicher authored
      - Some views had a "Close" button. We've removed this, because we don't
        want users accidentally hiding the validation errors and not knowing
        what needs to be fixed.
      - Some views used `li`, some used `p`, some used `span`. We've
        standardized on `li`.
      - Some views only showed the first error. We've standardized on showing
        all of them.
      - Some views added an `#error_explanation` div, which we've made
        standard.
      7a2370f7
  9. 31 Mar, 2016 1 commit
  10. 10 Mar, 2016 1 commit
  11. 09 Feb, 2016 1 commit
  12. 02 Feb, 2016 1 commit
  13. 01 Feb, 2016 1 commit
  14. 28 Jan, 2016 1 commit
  15. 26 Jan, 2016 2 commits
  16. 20 Jan, 2016 3 commits
  17. 18 Jan, 2016 1 commit
  18. 13 Jan, 2016 1 commit
  19. 06 Jan, 2016 1 commit
  20. 01 Jan, 2016 1 commit
  21. 29 Dec, 2015 1 commit
    • Yorick Peterse's avatar
      Write to InfluxDB directly via UDP · 620e7bb3
      Yorick Peterse authored
      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