Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
8b5ac5e5
Commit
8b5ac5e5
authored
Sep 11, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show _source by default, sort by _score by default
parent
14d525da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
panels/table/module.html
+9
-5
panels/table/module.js
+2
-2
No files found.
panels/table/module.html
View file @
8b5ac5e5
...
@@ -39,10 +39,12 @@
...
@@ -39,10 +39,12 @@
<i
ng-click=
"panel.offset = (panel.offset + panel.size)"
ng-show=
"data.length > panel.offset+panel.size"
class=
'icon-arrow-right pointer'
></i>
<i
ng-click=
"panel.offset = (panel.offset + panel.size)"
ng-show=
"data.length > panel.offset+panel.size"
class=
'icon-arrow-right pointer'
></i>
</div>
</div>
</div>
</div>
<div
class=
"small"
ng-show=
"panel.fields.length == 0"
><center>
No columns configured. You may want to select some from the list on the left.
</center></div>
<table
class=
"table-hover table table-condensed"
ng-style=
"panel.style"
>
<table
class=
"table-hover table table-condensed"
ng-style=
"panel.style"
>
<thead
ng-show=
"panel.header"
>
<thead
ng-show=
"panel.header"
>
<th
ng-show=
"panel.fields.length<1"
>
_source (select columns from the list to the left)
</th>
<th
style=
"white-space:nowrap"
ng-repeat=
"field in panel.fields"
>
<th
style=
"white-space:nowrap"
ng-repeat=
"field in panel.fields"
>
<i
ng-show=
"!$first"
class=
"pointer link icon-caret-left"
ng-click=
"_.move(panel.fields,$index,$index-1)"
></i>
<i
ng-show=
"!$first"
class=
"pointer link icon-caret-left"
ng-click=
"_.move(panel.fields,$index,$index-1)"
></i>
...
@@ -58,7 +60,8 @@
...
@@ -58,7 +60,8 @@
<tbody
ng-repeat=
"event in data | slice:panel.offset:panel.offset+panel.size"
ng-class-odd=
"'odd'"
>
<tbody
ng-repeat=
"event in data | slice:panel.offset:panel.offset+panel.size"
ng-class-odd=
"'odd'"
>
<tr
ng-click=
"toggle_details(event)"
class=
"pointer"
>
<tr
ng-click=
"toggle_details(event)"
class=
"pointer"
>
<!--<td ng-repeat="field in panel.fields" ng-bind-html-unsafe="(event.highlight[field]||event._source[field]) | tableFieldFormat:field:event:this |tableHighlight | tableTruncate:panel.trimFactor:panel.fields.length"></td>-->
<!--<td ng-repeat="field in panel.fields" ng-bind-html-unsafe="(event.highlight[field]||event._source[field]) | tableFieldFormat:field:event:this |tableHighlight | tableTruncate:panel.trimFactor:panel.fields.length"></td>-->
<td
ng-repeat=
"field in panel.fields"
ng-bind-html-unsafe=
"(event.highlight[field]||event._source[field]) |tableHighlight | tableTruncate:panel.trimFactor:panel.fields.length"
></td>
<td
ng-show=
"panel.fields.length<1"
>
{{event._source|stringify|tableTruncate:panel.trimFactor:1}}
</td>
<td
ng-show=
"panel.fields.length>0"
ng-repeat=
"field in panel.fields"
ng-bind-html-unsafe=
"(event.highlight[field]||event._source[field]) |tableHighlight | tableTruncate:panel.trimFactor:panel.fields.length"
></td>
</tr>
</tr>
<tr
ng-show=
"event.kibana.details"
>
<tr
ng-show=
"event.kibana.details"
>
<td
colspan=
1000
>
<td
colspan=
1000
>
...
@@ -70,9 +73,10 @@
...
@@ -70,9 +73,10 @@
</thead>
</thead>
<tr
ng-repeat=
"(key,value) in event.kibana.details._source"
ng-class-odd=
"'odd'"
>
<tr
ng-repeat=
"(key,value) in event.kibana.details._source"
ng-class-odd=
"'odd'"
>
<td>
{{key}}
</td>
<td>
{{key}}
</td>
<td>
<td
style=
"white-space:nowrap"
>
<i
class=
'icon-search pointer'
ng-click=
"build_search(key,value)"
></i>
<i
class=
'icon-search pointer'
ng-click=
"build_search(key,value)"
bs-tooltip=
"'Add filter to match this value'"
></i>
<i
class=
'icon-ban-circle pointer'
ng-click=
"build_search(key,value,true)"
></i>
<i
class=
'icon-ban-circle pointer'
ng-click=
"build_search(key,value,true)"
bs-tooltip=
"'Add filter to NOT match this value'"
></i>
<i
class=
"pointer icon-th"
ng-click=
"toggle_field(key)"
bs-tooltip=
"'Toggle table column'"
></i>
</td>
</td>
<!-- At some point we need to create a more efficient way of applying the filter pipeline -->
<!-- At some point we need to create a more efficient way of applying the filter pipeline -->
<td
style=
"white-space:pre-wrap"
ng-bind-html-unsafe=
"value|noXml|urlLink|stringify"
></td>
<td
style=
"white-space:pre-wrap"
ng-bind-html-unsafe=
"value|noXml|urlLink|stringify"
></td>
...
...
panels/table/module.js
View file @
8b5ac5e5
...
@@ -45,10 +45,10 @@ angular.module('kibana.table', [])
...
@@ -45,10 +45,10 @@ angular.module('kibana.table', [])
size
:
100
,
// Per page
size
:
100
,
// Per page
pages
:
5
,
// Pages available
pages
:
5
,
// Pages available
offset
:
0
,
offset
:
0
,
sort
:
[
'
@timestamp
'
,
'desc'
],
sort
:
[
'
_score
'
,
'desc'
],
group
:
"default"
,
group
:
"default"
,
style
:
{
'font-size'
:
'9pt'
},
style
:
{
'font-size'
:
'9pt'
},
overflow
:
'height'
,
overflow
:
'
min-
height'
,
fields
:
[],
fields
:
[],
highlight
:
[],
highlight
:
[],
sortable
:
true
,
sortable
:
true
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment