- 15 Nov, 2017 5 commits
-
-
bergquist committed
-
Alerting for prometheus have been depending on the step parameter from each query. In https://github.com/grafana/grafana/pull/9226 we changed the behavior for step in the frontend which caused problems for alerting. This commit fixes that by introducing a default min interval value so alerting always have something to depend on. closes #9777
Carl Bergquist committed -
Sven Klemm committed
-
Torkel Ödegaard committed
-
Torkel Ödegaard committed
-
- 14 Nov, 2017 9 commits
-
-
Torkel Ödegaard committed
-
Sven Klemm committed
-
Torkel Ödegaard committed
-
Torkel Ödegaard committed
-
fix: Html escaping caused issue in InfluxDB query editor, could not pick greater than or less then operators, fixes #9871
Torkel Ödegaard committed -
bergquist committed
-
bergquist committed
-
bergquist committed
-
Anton Huck committed
-
- 13 Nov, 2017 14 commits
-
-
Adds dependencies for node-gyp to the building from source docs page. ref #9861
Daniel Lee committed -
Torkel Ödegaard committed
-
Alexander Zobnin committed
-
Marcus Efraimsson committed
-
Daniel Lee committed
-
Fixes #9790
Daniel Lee committed -
Torkel Ödegaard committed
-
* fix cloudwatch ec2_instance_attribute * add test * minor fix
Mitsuhiro Tanda committed -
graph: the stack & legend sort sync was not working correctly, the z-index sorting that happened in after the legend sort order was applied and messed with the order even though the sort function returned zero for all entries, combined the sort function to one sort function, fixes #9789 (#9797)
Torkel Ödegaard committed -
Patrick O'Carroll committed
-
Add AWS/NetworkELB to cloudwatch definitions
Carl Bergquist committed -
bergquist committed
-
(cloudwatch) fix query inspector
Carl Bergquist committed -
(cloudwatch) return empty array for no datapoints
Carl Bergquist committed
-
- 11 Nov, 2017 2 commits
-
-
Mitsuhiro Tanda committed
-
Mitsuhiro Tanda committed
-
- 10 Nov, 2017 1 commit
-
-
Scott Nelson Windels committed
-
- 09 Nov, 2017 4 commits
-
-
bergquist committed
-
MySQL Performance when using GF_DATABASE_URL
Carl Bergquist committed -
Use hex.EncodeToString to encode to hex
Carl Bergquist committed -
bergquist committed
-
- 08 Nov, 2017 4 commits
-
-
Dan Cech committed
-
Using the EncodeToString function from the encoding/hex package is much faster than calling the fmt.Sprintf with %x Benchmark results below with the following code func BenchmarkHexPrint(b *testing.B) { data := []byte("hellothere") for n := 0; n < b.N; n++ { // _ = fmt.Sprintf("%x", data) _ = hex.EncodeToString(data) } } name old time/op new time/op delta HexPrint-4 188ns ± 1% 99ns ± 1% -47.40% (p=0.008 n=5+5) name old alloc/op new alloc/op delta HexPrint-4 64.0B ± 0% 64.0B ± 0% ~ (all equal) name old allocs/op new allocs/op delta HexPrint-4 2.00 ± 0% 2.00 ± 0% ~ (all equal)
Agniva De Sarker committed -
Seuf committed
-
Mitsuhiro Tanda committed
-
- 07 Nov, 2017 1 commit
-
-
Daniel Lee committed
-