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
98e5815c
Commit
98e5815c
authored
Feb 08, 2018
by
ilgizar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
append test to thresholds on right axis
parent
578ee88f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
3 deletions
+40
-3
public/app/plugins/panel/graph/specs/threshold_manager_specs.ts
+38
-1
public/app/plugins/panel/graph/threshold_manager.ts
+2
-2
No files found.
public/app/plugins/panel/graph/specs/threshold_manager_specs.ts
View file @
98e5815c
import
{
describe
,
it
,
expect
}
from
'../../../../../test/lib/common'
;
import
angular
from
'angular'
;
import
TimeSeries
from
'app/core/time_series2'
;
import
{
ThresholdManager
}
from
'../threshold_manager'
;
describe
(
'ThresholdManager'
,
function
()
{
...
...
@@ -15,9 +17,13 @@ describe('ThresholdManager', function() {
panelCtrl
:
{},
};
ctx
.
setup
=
function
(
thresholds
)
{
ctx
.
setup
=
function
(
thresholds
,
data
)
{
ctx
.
panel
.
thresholds
=
thresholds
;
var
manager
=
new
ThresholdManager
(
ctx
.
panelCtrl
);
if
(
data
!==
undefined
)
{
var
element
=
angular
.
element
(
'<div grafana-graph><div>'
);
manager
.
prepare
(
element
,
data
);
}
manager
.
addFlotOptions
(
ctx
.
options
,
ctx
.
panel
);
};
...
...
@@ -101,5 +107,36 @@ describe('ThresholdManager', function() {
expect
(
markings
[
1
].
yaxis
.
to
).
to
.
be
(
-
Infinity
);
});
});
plotOptionsScenario
(
'for threshold on two Y axes'
,
ctx
=>
{
var
data
=
new
Array
(
2
);
data
[
0
]
=
new
TimeSeries
({
datapoints
:
[[
0
,
1
],
[
300
,
2
]],
alias
:
'left'
,
});
data
[
0
].
yaxis
=
1
;
data
[
1
]
=
new
TimeSeries
({
datapoints
:
[[
0
,
1
],
[
300
,
2
]],
alias
:
'right'
,
});
data
[
1
].
yaxis
=
2
;
ctx
.
setup
(
[
{
op
:
'gt'
,
value
:
100
,
line
:
true
,
colorMode
:
'critical'
},
{
op
:
'gt'
,
value
:
200
,
line
:
true
,
colorMode
:
'critical'
,
yaxis
:
'right'
},
],
data
);
it
(
'should add first threshold for left axis'
,
function
()
{
var
markings
=
ctx
.
options
.
grid
.
markings
;
expect
(
markings
[
0
].
yaxis
.
from
).
to
.
be
(
100
);
});
it
(
'should add second threshold for right axis'
,
function
()
{
var
markings
=
ctx
.
options
.
grid
.
markings
;
expect
(
markings
[
1
].
y2axis
.
from
).
to
.
be
(
200
);
});
});
});
});
public/app/plugins/panel/graph/threshold_manager.ts
View file @
98e5815c
...
...
@@ -222,7 +222,7 @@ export class ThresholdManager {
// fill
if
(
threshold
.
fill
)
{
if
(
threshold
.
yaxis
===
'right'
&&
this
.
shouldDrawHandle
s
)
{
if
(
threshold
.
yaxis
===
'right'
&&
this
.
hasSecondYAxi
s
)
{
options
.
grid
.
markings
.
push
({
y2axis
:
{
from
:
threshold
.
value
,
to
:
limit
},
color
:
fillColor
,
...
...
@@ -235,7 +235,7 @@ export class ThresholdManager {
}
}
if
(
threshold
.
line
)
{
if
(
threshold
.
yaxis
===
'right'
&&
this
.
shouldDrawHandle
s
)
{
if
(
threshold
.
yaxis
===
'right'
&&
this
.
hasSecondYAxi
s
)
{
options
.
grid
.
markings
.
push
({
y2axis
:
{
from
:
threshold
.
value
,
to
:
threshold
.
value
},
color
:
lineColor
,
...
...
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