Marcus Efraimsson
39669e5002
fix redirect to panel when using an outdated dashboard slug ( #12901 )
2018-08-13 15:41:15 +02:00
Marcus Efraimsson
d110343e53
Merge pull request #12838 from grafana/12476-show-teams-on-profile
...
show teams on profile
2018-08-13 15:16:04 +02:00
Patrick O'Carroll
535bab1baa
now hides team header when no teams + fix for list hidden when only one team
2018-08-13 15:07:29 +02:00
Patrick O'Carroll
bdd9af0864
changed const members to filteredMembers to trigger get filtered members, changed input value to team.search ( #12885 )
2018-08-13 11:34:16 +02:00
Julien Pivotto
48364f0111
Add support for $__range_s ( #12883 )
...
Fixes #12882
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2018-08-13 07:53:41 +02:00
Daniel Lee
2770a7bc0c
Merge pull request #12843 from pgiraud/plugin_readme_links
...
Convert URL-like text to links in plugins readme
2018-08-10 14:01:05 +02:00
Daniel Lee
71630e4a7b
Merge pull request #12856 from grafana/12855-team-members-delete-button
...
Delete button for team members page
2018-08-10 13:46:13 +02:00
Marcus Efraimsson
1bb3cf1c31
keep legend scroll position when series are toggled ( #12845 )
2018-08-09 16:04:56 +03:00
Patrick O'Carroll
f339b3502a
replaced confirm delete modal with deleteButton component in teams members list
2018-08-09 12:56:55 +02:00
David Kaltschmidt
128a5d98e1
Explore: expand recording rules for queries
...
- load recording rules from prometheus
- map rule name to rule query
- query hint to detect recording rules in query
- click on hint fix expands rule name to query
2018-08-08 16:56:21 +02:00
David
c1b9bbc2cf
Explore: Query hints for prometheus ( #12833 )
...
* Explore: Query hints for prometheus
- time series are analyzed on response
- hints are shown per query
- some hints have fixes
- fix rendered as link after hint
- click on fix executes the fix action
* Added tests for determineQueryHints()
* Fix index for rate hints in explore
2018-08-08 17:50:30 +03:00
Pierre GIRAUD
d7fb704e27
Convert URL-like text to links in plugins readme
2018-08-08 16:07:33 +02:00
Patrick O'Carroll
a94406ac53
added more info about the teams
2018-08-08 11:22:47 +02:00
Patrick O'Carroll
ca06893e69
removed mock-teams, now gets teams from backend
2018-08-08 10:50:27 +02:00
Marcus Efraimsson
8952137ea2
Merge pull request #12753 from svenklemm/sql-fillmode-last
...
Add fill mode to fill in previously seen value when point is missing to SQL datasources
2018-08-08 10:29:56 +02:00
Patrick O'Carroll
b0ddc15e1a
team list for profile page + mock teams
2018-08-08 09:23:36 +02:00
Sven Klemm
52c7edf2f4
rename last fillmode to previous
2018-08-07 21:11:51 +02:00
David
91d04b87ad
Merge pull request #12821 from grafana/davkal/explore-query-ux
...
Explore: prometheus query helpers
2018-08-07 17:56:08 +02:00
David Kaltschmidt
2961c3b3b9
Review feedback
...
- use color variables for cascader styles
- fix Table value type
2018-08-07 17:42:00 +02:00
Marcus Efraimsson
cfe81510f9
Merge pull request #12796 from dehrax/12768-panel-heights
...
WIP: Fit panels to screen height
2018-08-07 15:57:40 +02:00
Tobias Skarhed
2ad358215a
Remove window
2018-08-07 14:49:11 +02:00
Tobias Skarhed
a0da66610e
Fix url param errors
2018-08-07 14:48:22 +02:00
David Kaltschmidt
642374de25
Explore: Metrics chooser for prometheus
...
- load all histogrammable metrics on start, based on `{le!=''}` series
query
- select dropdown shows all those metrics as well as histograms in a
special group
- select a metric will write fill the metric in the query box
- if a histogram is chosen, it will write a complete
`histogram_quantile` query
- added new dependency: rc-cascader
2018-08-07 13:43:32 +02:00
David Kaltschmidt
307248f713
Add clear row button
...
- clears the content of a query row
2018-08-07 13:43:32 +02:00
David Kaltschmidt
00f04f4ea0
Add clear button to Explore
...
- Clear All button to clear all queries and results
- moved result viewer buttons below query rows to make it more clear
that they govern result options
2018-08-07 13:42:32 +02:00
David Kaltschmidt
f1c1633d15
Explore: show message if queries did not return data
...
- every result viewer displays a message that it received an empty data
set
2018-08-07 13:03:33 +02:00
David
0f94d2f5f1
Fix closing parens completion for prometheus queries in Explore ( #12810 )
...
- position was determined by SPACE, but Prometheus selectors can
contain spaces
- added negative lookahead to check if space is outside a selector
- moved braces plugin into PromQueryField since braces are prom specific
2018-08-07 13:34:12 +03:00
David
34761205fd
Merge pull request #12799 from grafana/davkal/explore-history
...
Explore: Add history to query fields
2018-08-06 17:46:15 +02:00
Marcus Efraimsson
b3c25076d0
Merge pull request #12746 from grafana/11305_mssql_logo
...
Mssql: add logo
2018-08-06 17:19:53 +02:00
David Kaltschmidt
cda3b01781
Reversed history direction for explore
...
- _.reverse() was modifying state.history
2018-08-06 14:45:03 +02:00
David Kaltschmidt
eaff7b0f68
Explore: Add history to query fields
...
- queries are saved to localstorage history array
- one history per datasource type (plugin ID)
- 100 items kept with timestamps
- history suggestions can be pulled up with Ctrl-SPACE
2018-08-06 14:45:03 +02:00
David
5da3584dd4
Explore: facetting for label completion ( #12786 )
...
* Explore: facetting for label completion
- unified metric and non-metric label completion
- label keys and values are now fetched fresh for each valid selector
- complete selector means only values are suggested that are supported
by the selector
- properly implemented metric lookup for selectors (until the first
metric was used which breaks when multiple metrics are present)
- typeahead tests now need a valid selection to demark the cursor
* Fix facetting queries for empty selector
2018-08-06 15:36:02 +03:00
Tobias Skarhed
9f87f6081a
Remove Karma test
2018-08-06 11:23:50 +02:00
Tobias Skarhed
46dd4eba9e
All tests passing
2018-08-06 11:23:50 +02:00
Tobias Skarhed
034ca69610
Add mock constructor
2018-08-06 11:23:50 +02:00
Tobias Skarhed
7f4723a9a7
Begin conversion
2018-08-06 11:23:50 +02:00
Tobias Skarhed
ccd964e1df
Convert query control
2018-08-06 10:57:58 +02:00
Tobias Skarhed
45eadae692
Convert datasource
2018-08-06 10:42:35 +02:00
Torkel Ödegaard
624f3a0173
refactor: take submenu into account PR #12796
2018-08-05 11:39:46 +02:00
Torkel Ödegaard
b1b8a38061
refactor: renaming variables, refactoring PR #12796
2018-08-05 11:39:46 +02:00
Torkel Ödegaard
013f8cd8ea
refactor: moving code around a bit, refactoring PR #12796
2018-08-05 11:39:46 +02:00
Tobias Skarhed
f00b5eee83
Remove weird import
2018-08-05 11:39:46 +02:00
Tobias Skarhed
4b84a58575
Disable submenu when autopanels is enabled
2018-08-05 11:39:46 +02:00
Tobias Skarhed
36c406eefb
Extract to own method
2018-08-05 11:39:46 +02:00
Tobias Skarhed
1618b095c7
Use and add keybard shortcut
2018-08-05 11:39:46 +02:00
Tobias Skarhed
63fa9fdc6d
Add temporary url parameter
2018-08-05 11:39:46 +02:00
Tobias Skarhed
338a37abc8
Replace floor with round
2018-08-05 11:39:46 +02:00
Tobias Skarhed
9e4748e2aa
Go with just single margin compensation
2018-08-05 11:39:46 +02:00
Tobias Skarhed
78b3dc40f1
Add margin and padding compensation
2018-08-05 11:39:46 +02:00
Tobias Skarhed
a9f24bb36d
Remove weird import
2018-08-05 11:39:45 +02:00