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
6e2348d2
Commit
6e2348d2
authored
Jun 06, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed graphite panel to graph
parent
525c4d52
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
22 additions
and
9 deletions
+22
-9
CHANGELOG.md
+7
-2
src/app/panels/graph/axisEditor.html
+0
-0
src/app/panels/graph/legend.html
+0
-0
src/app/panels/graph/module.html
+2
-2
src/app/panels/graph/module.js
+4
-4
src/app/panels/graph/styleEditor.html
+0
-0
src/app/panels/graph/timeSeries.js
+0
-0
src/app/services/dashboard.js
+8
-0
src/config.sample.js
+1
-1
No files found.
CHANGELOG.md
View file @
6e2348d2
vNext
# vNext
#### New features or improvements
-
New Y-axis formater for metric values that represent seconds (Issue #427) - thx @jippi
-
New Y-axis formater for metric values that represent seconds (Issue #427) - thx @jippi
-
Allow special characters in serie names (influxdb datasource), PR #390 - thx @majst01
-
Allow special characters in serie names (influxdb datasource), PR #390 - thx @majst01
-
Refactoring of filterSrv (Issue #428), thx @Tetha
-
Refactoring of filterSrv (Issue #428), thx @Tetha
...
@@ -12,7 +14,10 @@ vNext
...
@@ -12,7 +14,10 @@ vNext
-
Improvement to InfluxDB query editor and function/value column selection (Issue #473)
-
Improvement to InfluxDB query editor and function/value column selection (Issue #473)
-
Initial support for filtering (templated queries) for InfluxDB (PR #375) - thx @mavimo
-
Initial support for filtering (templated queries) for InfluxDB (PR #375) - thx @mavimo
# Fixes
#### Changes
-
Graphite panel is now renamed graph (Existing dashboards will still work)
#### Fixes
-
Filter option loading when having muliple nested filters now works better.
-
Filter option loading when having muliple nested filters now works better.
Options are now reloaded correctly and there are no multiple renders/refresh inbetween (#447),
Options are now reloaded correctly and there are no multiple renders/refresh inbetween (#447),
After an option is changed and a nested template param is also reloaded, if the current value
After an option is changed and a nested template param is also reloaded, if the current value
...
...
src/app/panels/graph
ite
/axisEditor.html
→
src/app/panels/graph/axisEditor.html
View file @
6e2348d2
File moved
src/app/panels/graph
ite
/legend.html
→
src/app/panels/graph/legend.html
View file @
6e2348d2
File moved
src/app/panels/graph
ite
/module.html
→
src/app/panels/graph/module.html
View file @
6e2348d2
<div
ng-controller=
'graph
ite
'
<div
ng-controller=
'graph'
ng-init=
"init()"
ng-init=
"init()"
style=
"min-height:{{panel.height || row.height}}"
style=
"min-height:{{panel.height || row.height}}"
ng-class=
"{'panel-fullscreen': fullscreen}"
>
ng-class=
"{'panel-fullscreen': fullscreen}"
>
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
</div>
</div>
<div
ng-if=
"panel.legend"
class=
"grafana-legend-container"
>
<div
ng-if=
"panel.legend"
class=
"grafana-legend-container"
>
<div
ng-include=
"'app/panels/graph
ite
/legend.html'"
></div>
<div
ng-include=
"'app/panels/graph/legend.html'"
></div>
</div>
</div>
<div
class=
"clearfix"
></div>
<div
class=
"clearfix"
></div>
...
...
src/app/panels/graph
ite
/module.js
→
src/app/panels/graph/module.js
View file @
6e2348d2
...
@@ -33,10 +33,10 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
...
@@ -33,10 +33,10 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
'use strict'
;
'use strict'
;
var
module
=
angular
.
module
(
'kibana.panels.graph
ite
'
,
[]);
var
module
=
angular
.
module
(
'kibana.panels.graph'
,
[]);
app
.
useModule
(
module
);
app
.
useModule
(
module
);
module
.
controller
(
'graph
ite
'
,
function
(
$scope
,
$rootScope
,
datasourceSrv
,
$timeout
,
annotationsSrv
)
{
module
.
controller
(
'graph'
,
function
(
$scope
,
$rootScope
,
datasourceSrv
,
$timeout
,
annotationsSrv
)
{
$scope
.
panelMeta
=
{
$scope
.
panelMeta
=
{
modals
:
[],
modals
:
[],
...
@@ -52,11 +52,11 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
...
@@ -52,11 +52,11 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
},
},
{
{
title
:
'Axes & Grid'
,
title
:
'Axes & Grid'
,
src
:
'app/panels/graph
ite
/axisEditor.html'
src
:
'app/panels/graph/axisEditor.html'
},
},
{
{
title
:
'Display Styles'
,
title
:
'Display Styles'
,
src
:
'app/panels/graph
ite
/styleEditor.html'
src
:
'app/panels/graph/styleEditor.html'
}
}
],
],
fullscreenEdit
:
true
,
fullscreenEdit
:
true
,
...
...
src/app/panels/graph
ite
/styleEditor.html
→
src/app/panels/graph/styleEditor.html
View file @
6e2348d2
File moved
src/app/panels/graph
ite
/timeSeries.js
→
src/app/panels/graph/timeSeries.js
View file @
6e2348d2
File moved
src/app/services/dashboard.js
View file @
6e2348d2
...
@@ -138,6 +138,14 @@ function (angular, $, kbn, _, config, moment, Modernizr) {
...
@@ -138,6 +138,14 @@ function (angular, $, kbn, _, config, moment, Modernizr) {
});
});
}
}
_
.
each
(
dashboard
.
rows
,
function
(
row
)
{
_
.
each
(
row
.
panels
,
function
(
panel
)
{
if
(
panel
.
type
===
'graphite'
)
{
panel
.
type
=
'graph'
;
}
});
});
return
dashboard
;
return
dashboard
;
};
};
...
...
src/config.sample.js
View file @
6e2348d2
...
@@ -76,7 +76,7 @@ function (Settings) {
...
@@ -76,7 +76,7 @@ function (Settings) {
panel_names
:
[
panel_names
:
[
'text'
,
'text'
,
'graph
ite
'
'graph'
]
]
});
});
});
});
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