1. 07 Jul, 2018 2 commits
  2. 06 Jul, 2018 9 commits
  3. 05 Jul, 2018 2 commits
  4. 04 Jul, 2018 16 commits
  5. 03 Jul, 2018 8 commits
  6. 02 Jul, 2018 3 commits
    • Make table sorting stable when null values exist (#12362) · 6046c8b4
      Currently if a null appears in a table column, for instance in data
      returned by postgres, sorting on that gives an arbitrary order. This
      is due to null being neither greater or less than any string, which
      makes the sort unstable.
      
      Change the table sort function to compare on nullness first. Note
      this is a slight behaviour change for numbers, which would otherwise
      treat null and 0 as equivalent.
      
      Signed-off-by: Martin Packman <gzlist@googlemail.com>
      Martin Packman committed
    • Fix bar width issue in aligned prometheus queries (#12483) · 0d1f7c87
      * Fix bar width issue in aligned prometheus queries
      
      This was broken because null values were filled in with unaligned times.
      
      * use aligned times for result transformation
      * add tests
      
      An earlier version of this fix aligned the times again in the transformer, but
      I think it's safe to only deal with aligned times in the response.
      
      * Fixed prometheus heatmap tranformer test
      
      The interval needs to be 1 to prevent step alignment.
      David committed
    • correct example (#12481) · a89351e8
      foo.bar.com in description, but foo.bar in configuration.
      Updated description, makes more sense then changing the configuration :)
      zicklam committed