Skip to content

Commit

Permalink
Notes about milestone 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashid Khan committed Jul 15, 2013
1 parent 1d4af12 commit b96277c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 17 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
7 changes: 0 additions & 7 deletions panels/map/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ <h6>Field</h6>
<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>
Expand Down
8 changes: 0 additions & 8 deletions panels/table/editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,6 @@ <h6>Page Overflow</h6>
<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">
Expand Down

2 comments on commit b96277c

@tomrade
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is there any equivalent functionality to grouping?

@jsm-oxa
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wrote a comment about this too :
de8f8c5

Please sign in to comment.