mirror of
https://github.com/grafana/grafana.git
synced 2024-12-28 18:01:40 -06:00
Notes about milestone 3
This commit is contained in:
parent
1d4af12f57
commit
b96277c0c8
12
README.md
12
README.md
@ -5,8 +5,16 @@ Kibana 3 is completely new version of Kibana written entirely in HTML and Javasc
|
||||
the Kibana 2 repository at [https://github.com/rashidkpc/Kibana](https://github.com/rashidkpc/Kibana)
|
||||
|
||||
### Important!
|
||||
The index pattern format has changed in Kibana 3 milestone 2. Please update your index pattern in the
|
||||
timepicker panel for any dashboards you've built. The default has been updated.
|
||||
The dashboard storage format has changed in Kibana 3 milestone 3. Existing dashboards are unfortunately not backward compatible. However there's some great new features:
|
||||
* Every panel support multi-query
|
||||
* Customizable query colors and labels
|
||||
* Queries, label and colors are synced across panels at all times
|
||||
* New filtering functionality
|
||||
* Filters can be toggled and removed
|
||||
* Drill down won't overwrite your queries, labels or colors
|
||||
* Confusing group functionality has been removed
|
||||
* Index configuration has been moved from the timepicker, to the main dashboard editor
|
||||
* The stringquery panel has been replaced with a more polished 'query' panel
|
||||
|
||||
More information about Kibana 3 can be found at [http://three.kibana.org](http://three.kibana.org)
|
||||
|
||||
|
@ -11,13 +11,6 @@
|
||||
<input bs-typeahead="fields.list" type="text" class="input-small" ng-model="panel.field">
|
||||
</form>
|
||||
</div>
|
||||
<div class="span6">
|
||||
<form class="input-append">
|
||||
<h6>Query</h6>
|
||||
<input type="text" ng-model="panel.query">
|
||||
<button class="btn" ng-click="get_data();"><i class="icon-search"></i></button>
|
||||
</form>
|
||||
</div>
|
||||
<div class="span1"><h6>Map</h6>
|
||||
<select ng-change="$emit('render')" class="input-small" ng-model="panel.map" ng-options="f for f in ['world','europe','usa']"></select>
|
||||
</div>
|
||||
|
@ -68,14 +68,6 @@
|
||||
<select class="input-small" ng-model="panel.overflow" ng-options="f.value as f.key for f in [{key:'scroll',value:'height'},{key:'expand',value:'min-height'}]"></select>
|
||||
</div>
|
||||
</div>
|
||||
<!--<div class="row-fluid" ng-show='panel.sortable'>
|
||||
<div class="span11">
|
||||
<h6>A note about sorting</h6>
|
||||
Allowing sorting can incur a significant performance penalty if using timestamped indices.
|
||||
Kibana will be unable to query your indices sequentially and thus must query them all at
|
||||
once. Only enable sorting if your cluster is stout enough to handle it.
|
||||
</div>
|
||||
</div>-->
|
||||
<h5>Panel Spy</h5>
|
||||
<div class="row-fluid">
|
||||
<div class="span2">
|
||||
|
Loading…
Reference in New Issue
Block a user