1. 04 Jul, 2019 3 commits
  2. 03 Jul, 2019 14 commits
  3. 02 Jul, 2019 8 commits
  4. 01 Jul, 2019 9 commits
  5. 28 Jun, 2019 6 commits
    • Elasticsearch: Fix default max concurrent shard requests (#17770) · 0833f26b
      Elasticsearch v7.0 changed the behavior of max concurrent shard
      requests and the default to 5. v5.6 and before 7.0 the default
      is 256. This adds some additional behavior given certain
      version is selected when configure the datasource to set
      default max concurrent shard requests.
      Changing from a version pre-v7.0+ to v7.0+ sets max
      concurrent shard requests to 5.
      Changing from a version v7.0+ to a pre-v7.0 sets max
      concurrent shard requests to 256.
      
      Fixes #17454
      Marcus Efraimsson committed
    • Explore: Fix filter by series level in logs graph (#17798) · 53db8235
      Adds back support for filtering log messages by series level 
      in logs graph which seem to have been broken since merging
      of #17027.
      
      Fixes #17769
      Marcus Efraimsson committed
    • Docs: Add v6.3 version notes and encryption format information (#17825) · c392a492
      Adds version note for alert rule tags.
      Adds version note for graph data links.
      Adds information about secret_key and encryption format in use
      
      Fixes #17815
      Fixes #17803
      Marcus Efraimsson committed
    • Graphite: use POST for /metrics/find requests (#17814) · d9fea07e
      * Add test that expects a POST request
      
      * Change graphite /metric/find request to POST
      
      Query parameter can become large enough
      to exceed GET URI limits.
      
      * Fix requests with time range
      
      Initialise httpOptions.params
      
      * Fix for supporting queries referencing template variable
      Sofia Papagiannaki committed
    • Toolkit: moved front end cli scripts to separate package and introduced very… · 742e0d56
      Toolkit: moved front end cli scripts to separate package and introduced very early version of plugin tools
      
      * Move cli to grafana-toolkit
      
      * Moving packages, fixing ts
      
      * Add basics of plugin build task
      
      * Add toolkit build task
      
      * Circle - use node 10 for test-frontend
      
      * Prettier fix
      
      * First attempt for having shared tsconfig for plugins
      
      * Add enzyme as peer depencency
      
      * Do not expose internal commands when using toolkit from npm package
      
      * Introduce plugin linting
      
      * Fix missing file
      
      * Fix shim extenstion
      
      * Remove rollup typings
      
      * Add tslint as dependency
      
      * Toolkit - use the same versions of enzyme and tslint as core does
      
      * Remove include property from plugin tsconfig
      
      * Take failed suites into consideration when tests failed
      
      * Set ts-jest preset for jest
      
      * Cleanup tsconfig.plugins
      
      * Add plugin:test task
      
      * Rename file causing build failute
      
      * Fixing those missed renames
      
      * Add ts as peer dependency
      
      * Remove enzyme dependency and tweak test plugin task
      
      * Allow jest options overrides via package.json config
      
      * Improvements
      
      * Remove rollup node packages
      
      * TMP : Fix ts errors when linked
      
      * use local tslint if it exists
      
      * support coverage commands
      
      * Fix merge
      
      * fix build
      
      * Some minors
      
      * Make jest pass when no tests discovered
      Dominik Prokop committed