Skip to content
Snippets Groups Projects
  1. Oct 21, 2016
  2. Oct 12, 2016
    • Cameron Sparr's avatar
      Use mysql.ParseDSN func instead of url.Parse · a65447d2
      Cameron Sparr authored
      The MySQL DB driver has it's own DSN parsing function. Previously we
      were using the url.Parse function, but this causes problems because a
      valid MySQL DSN can be an invalid http URL, namely when using some
      special characters in the password.
      
      This change uses the MySQL DB driver's builtin ParseDSN function and
      applies a timeout parameter natively via that.
      
      Another benefit of this change is that we fail earlier if given an
      invalid MySQL DSN.
      
      closes #870
      closes #1842
      a65447d2
  3. Sep 23, 2016
  4. Sep 02, 2016
  5. Aug 22, 2016
  6. Jul 19, 2016
  7. Jul 14, 2016
  8. May 17, 2016
  9. May 04, 2016
    • Lukasz Jagiello's avatar
      Fix #1148 - chatty MySQL · 4c28f15b
      Lukasz Jagiello authored
      Two additional config options to reduce MySQL metrics
      
      With:
       - gather_table_lock_waits = false
       - gather_event_waits = false
      
      ```
      | wc -l
      34
      ```
      
      With:
       - gather_table_lock_waits = true
       - gather_event_waits = true
      
      ```
      | wc -l
      50040
      ```
      
      closes #1148
      closes #1149
      4c28f15b
  10. May 02, 2016
  11. Apr 19, 2016
  12. Mar 01, 2016
  13. Feb 18, 2016
  14. Feb 09, 2016
  15. Jan 27, 2016
    • Cameron Sparr's avatar
      Create public models for telegraf metrics, accumlator, plugins · 9c0d14bb
      Cameron Sparr authored
      This will basically make the root directory a place for storing the
      major telegraf interfaces, which will make telegraf's godoc looks quite
      a bit nicer. And make it easier for contributors to lookup the few data
      types that they actually care about.
      
      closes #564
      9c0d14bb
  16. Jan 23, 2016
  17. Jan 20, 2016
  18. Jan 07, 2016
  19. Jan 06, 2016
  20. Oct 23, 2015
  21. Oct 19, 2015
  22. Oct 15, 2015
  23. Sep 16, 2015
  24. Sep 02, 2015
  25. Aug 26, 2015
  26. Aug 25, 2015
  27. Aug 24, 2015
Loading