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
d6c07d24
Commit
d6c07d24
authored
Oct 24, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into dash-edit-mode
parents
6fb81f54
4db723ea
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
4 deletions
+23
-4
CHANGELOG.md
+1
-0
public/app/features/dashboard/dashboard_srv.ts
+1
-1
public/app/features/panel/panel_directive.ts
+12
-3
public/app/plugins/datasource/opentsdb/datasource.js
+4
-0
public/app/plugins/datasource/opentsdb/partials/query.editor.html
+5
-0
No files found.
CHANGELOG.md
View file @
d6c07d24
...
...
@@ -11,6 +11,7 @@
*
**Database**
: Allow database config using one propertie, closes
[
#5456
](
https://github.com/grafana/grafana/pull/5456
)
*
**Graphite**
: Add support for groupByNodes, closes
[
#5613
](
https://github.com/grafana/grafana/pull/5613
)
*
**Influxdb**
: Add support for elapsed(), closes
[
#5827
](
https://github.com/grafana/grafana/pull/5827
)
*
**OpenTSDB**
: Add support for explicitTags for OpenTSDB>=2.3, closes
[
#6360
](
https://github.com/grafana/grafana/pull/6361
)
*
**OAuth**
: Add support for generic oauth, closes
[
#4718
](
https://github.com/grafana/grafana/pull/4718
)
*
**Cloudwatch**
: Add support to expand multi select template variable, closes
[
#5003
](
https://github.com/grafana/grafana/pull/5003
)
*
**Graph Panel**
: Now supports flexible lower/upper bounds on Y-Max and Y-Min, PR
[
#5720
](
https://github.com/grafana/grafana/pull/5720
)
...
...
public/app/features/dashboard/dashboard_srv.ts
View file @
d6c07d24
...
...
@@ -88,7 +88,7 @@ export class DashboardSrv {
onAltAction
:
()
=>
{
this
.
saveDashboardAs
();
},
onConfirm
:
function
()
{
onConfirm
:
()
=>
{
this
.
saveDashboard
({
overwrite
:
true
});
}
});
...
...
public/app/features/panel/panel_directive.ts
View file @
d6c07d24
...
...
@@ -159,19 +159,28 @@ module.directive('panelResizer', function($rootScope) {
}
scope
.
$apply
(
function
()
{
ctrl
.
render
();
//
ctrl.render();
});
}
function
dragEndHandler
()
{
ctrl
.
panel
.
span
=
Math
.
round
(
ctrl
.
panel
.
span
);
if
(
lastPanel
)
{
lastPanel
.
span
=
Math
.
round
(
lastPanel
.
span
);
}
// if close to 12
var
rowSpan
=
ctrl
.
dashboard
.
rowSpan
(
ctrl
.
row
);
if
(
rowSpan
<
12
&&
rowSpan
>
11
)
{
lastPanel
.
span
+=
12
-
rowSpan
;
}
scope
.
$apply
(
function
()
{
$rootScope
.
$broadcast
(
'render'
);
// first digest to propagate panel width change
// then render
$rootScope
.
$apply
(
function
()
{
setTimeout
(
function
()
{
$rootScope
.
$broadcast
(
'render'
);
});
});
$
(
'body'
).
off
(
'mousemove'
,
moveHandler
);
...
...
public/app/plugins/datasource/opentsdb/datasource.js
View file @
d6c07d24
...
...
@@ -425,6 +425,10 @@ function (angular, _, dateMath) {
}
}
if
(
target
.
explicitTags
)
{
query
.
explicitTags
=
true
;
}
return
query
;
}
...
...
public/app/plugins/datasource/opentsdb/partials/query.editor.html
View file @
d6c07d24
...
...
@@ -249,6 +249,11 @@
</input>
</div>
<div
class=
"gf-form"
ng-if=
"ctrl.tsdbVersion > 2"
>
<gf-form-switch
class=
"gf-form"
label=
"Explicit tags"
label-class=
"width-8 query-keyword"
checked=
"ctrl.target.explicitTags"
on-change=
"ctrl.targetBlur()"
>
</gf-form-switch>
</div>
<div
class=
"gf-form gf-form--grow"
>
<div
class=
"gf-form-label gf-form-label--grow"
></div>
</div>
...
...
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