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
5a0f15ba
Commit
5a0f15ba
authored
Mar 05, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed height bug, improved documentation for time stamped indices
parent
b2c7f19c
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
17 additions
and
16 deletions
+17
-16
panels/dashcontrol/module.js
+0
-1
panels/histogram/module.html
+3
-2
panels/histogram/module.js
+0
-1
panels/map/module.html
+2
-1
panels/map/module.js
+0
-1
panels/pie/module.html
+2
-1
panels/pie/module.js
+0
-1
panels/table/module.html
+1
-1
panels/table/module.js
+0
-1
panels/timepicker/editor.html
+9
-6
No files found.
panels/dashcontrol/module.js
View file @
5a0f15ba
...
...
@@ -32,7 +32,6 @@ angular.module('kibana.dashcontrol', [])
// Long ugly if statement for figuring out which dashboard to load on init
// If there is no dashboard defined, find one
if
(
_
.
isUndefined
(
$scope
.
dashboards
))
{
console
.
log
(
'ok, defining'
)
// First check the URL for a path to a dashboard
if
(
!
(
_
.
isUndefined
(
$routeParams
.
type
))
&&
!
(
_
.
isUndefined
(
$routeParams
.
id
)))
{
var
_type
=
$routeParams
.
type
;
...
...
panels/histogram/module.html
View file @
5a0f15ba
<kibana-panel
ng-controller=
'histogram'
ng-init=
"init()"
style=
"height:{{row.height}}"
>
<div
histogram
params=
"{{panel}}"
style=
"height:{{panel.height}};position:relative"
></div>
<kibana-panel
ng-controller=
'histogram'
ng-init=
"init()"
style=
"height:{{
panel.height ||
row.height}}"
>
<div
histogram
params=
"{{panel}}"
style=
"height:{{panel.height
|| row.height
}};position:relative"
></div>
</kibana-panel>
\ No newline at end of file
panels/histogram/module.js
View file @
5a0f15ba
...
...
@@ -7,7 +7,6 @@ angular.module('kibana.histogram', [])
interval
:
secondsToHms
(
calculate_interval
(
$scope
.
from
,
$scope
.
to
,
40
,
0
)
/
1000
),
show
:
[
'bars'
,
'y-axis'
,
'x-axis'
,
'legend'
],
fill
:
3
,
height
:
$scope
.
panel
.
height
||
$scope
.
row
.
height
,
timezone
:
'browser'
,
// browser, utc or a standard timezone
group
:
"default"
,
}
...
...
panels/map/module.html
View file @
5a0f15ba
<kibana-panel
ng-controller=
'map'
ng-init=
"init()"
>
<div
map
params=
"{{panel}}"
style=
"height:{{panel.height}}"
></div>
<div
map
params=
"{{panel}}"
style=
"height:{{panel.height
|| row.height
}}"
></div>
</kibana-panel>
\ No newline at end of file
panels/map/module.js
View file @
5a0f15ba
...
...
@@ -8,7 +8,6 @@ angular.module('kibana.map', [])
colors
:
[
'#C8EEFF'
,
'#0071A4'
],
size
:
100
,
exclude
:
[],
height
:
$scope
.
panel
.
height
||
$scope
.
row
.
height
,
group
:
"default"
,
}
_
.
defaults
(
$scope
.
panel
,
_d
)
...
...
panels/pie/module.html
View file @
5a0f15ba
<kibana-panel
ng-controller=
'pie'
ng-init=
"init()"
>
<div
pie
params=
"{{panel}}"
style=
"height:{{panel.height}};position:relative"
></div>
<div
pie
params=
"{{panel}}"
style=
"height:{{panel.height
|| row.height
}};position:relative"
></div>
</kibana-panel>
\ No newline at end of file
panels/pie/module.js
View file @
5a0f15ba
...
...
@@ -4,7 +4,6 @@ angular.module('kibana.pie', [])
// Set and populate defaults
var
_d
=
{
query
:
{
field
:
"_all"
,
query
:
"*"
,
goal
:
1
},
height
:
$scope
.
panel
.
height
||
$scope
.
row
.
height
,
size
:
10
,
exclude
:
[],
donut
:
false
,
...
...
panels/table/module.html
View file @
5a0f15ba
<kibana-panel
ng-controller=
'table'
ng-init=
'init()'
>
<div
style=
"height:{{panel.height}};overflow-y:auto;overflow-x:auto"
>
<div
style=
"height:{{panel.height
|| row.height
}};overflow-y:auto;overflow-x:auto"
>
<div
class=
"row-fluid"
>
<div
class=
"span1 offset3"
style=
"text-align:right"
>
<i
ng-click=
"panel.offset = 0;get_data();"
ng-show=
"panel.offset > 0"
class=
'icon-circle-arrow-left pointer'
></i>
...
...
panels/table/module.js
View file @
5a0f15ba
...
...
@@ -6,7 +6,6 @@ angular.module('kibana.table', [])
query
:
"*"
,
size
:
100
,
offset
:
0
,
height
:
$scope
.
panel
.
height
||
$scope
.
row
.
height
,
sort
:
[
'@timestamp'
,
'desc'
],
group
:
"default"
,
style
:
{},
...
...
panels/timepicker/editor.html
View file @
5a0f15ba
...
...
@@ -12,13 +12,16 @@
<h5>
Index Settings
</h5>
<div
ng-show=
"panel.timed_indices"
class=
"row-fluid"
>
<div
class=
"span12"
>
<p>
Time stamped indices use a dated index pattern instead of pointing directly
to one specific index. For example, to match the default logstash index pattern
you might use
<code>
"logstash-"yyyy.mm.dd
</code>
. The quotes around "logstash-"
are important as they instruct Kibana not to treat those letters as a pattern.
<p
class=
"small"
>
Time stamped indices use your selected time range to create a list of
indices that match a specified timestamp pattern. This can be very
efficient for some data sets (eg, logs) For example, to match the
default logstash index pattern you might use
<code>
"logstash-"yyyy.mm.dd
</code>
. The quotes around "logstash-" are
important as they instruct Kibana not to treat those letters as a
pattern.
</p>
<p>
<p
class=
"small"
>
See
<a
href=
"http://blog.stevenlevithan.com/archives/date-time-format"
>
http://blog.stevenlevithan.com/archives/date-time-format
</a>
for documentation on date formatting.
</p>
...
...
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