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
7b2a2199
Commit
7b2a2199
authored
Apr 10, 2016
by
utkarshcmu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved mappings to new tab, added rangeMaps feature
parent
7c06604f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
137 additions
and
44 deletions
+137
-44
public/app/plugins/panel/singlestat/editor.html
+0
-32
public/app/plugins/panel/singlestat/mappings.html
+84
-0
public/app/plugins/panel/singlestat/module.ts
+53
-12
No files found.
public/app/plugins/panel/singlestat/editor.html
View file @
7b2a2199
...
...
@@ -192,35 +192,3 @@
</div>
</div>
</div>
<div
class=
"editor-row"
>
<div
class=
"section"
style=
"margin-bottom: 20px"
>
<div
class=
"tight-form last"
>
<ul
class=
"tight-form-list"
>
<li
class=
"tight-form-item"
>
<strong>
Value to text mapping
</strong>
</li>
<li
class=
"tight-form-item"
ng-repeat-start=
"map in ctrl.panel.valueMaps"
>
<i
class=
"fa fa-remove pointer"
ng-click=
"ctrl.removeValueMap(map)"
></i>
</li>
<li>
<input
type=
"text"
ng-model=
"map.value"
placeholder=
"value"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
<li
class=
"tight-form-item"
>
<i
class=
"fa fa-arrow-right"
></i>
</li>
<li
ng-repeat-end
>
<input
type=
"text"
placeholder=
"text"
ng-model=
"map.text"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
<li>
<a
class=
"pointer tight-form-item last"
ng-click=
"ctrl.addValueMap();"
>
<i
class=
"fa fa-plus"
></i>
</a>
</li>
</ul>
<div
class=
"clearfix"
></div>
</div>
</div>
</div>
public/app/plugins/panel/singlestat/mappings.html
0 → 100644
View file @
7b2a2199
<div
class=
"editor-row"
>
<div
class=
"section tight-form-container"
style=
"margin-bottom: 20px"
>
<div
class=
"tight-form"
>
<ul
class=
"tight-form-list"
>
<li
class=
"tight-form-item"
>
Type
</li>
<li>
<select
class=
"input-medium tight-form-input"
ng-model=
"ctrl.panel.mappingType"
ng-options=
"f.value as f.name for f in ctrl.panel.mappingTypes"
ng-change=
"ctrl.render()"
></select>
</li>
</ul>
<div
class=
"clearfix"
></div>
</div>
</div>
</div>
<div
class=
"editor-row"
ng-if=
"ctrl.panel.mappingType==1"
>
<div
class=
"section"
style=
"margin-bottom: 20px"
>
<div
class=
"tight-form last"
>
<ul
class=
"tight-form-list"
>
<li
class=
"tight-form-item"
>
<strong>
Value to text mapping
</strong>
</li>
<li
class=
"tight-form-item"
ng-repeat-start=
"map in ctrl.panel.valueMaps"
>
<i
class=
"fa fa-remove pointer"
ng-click=
"ctrl.removeValueMap(map)"
></i>
</li>
<li>
<input
type=
"text"
ng-model=
"map.value"
placeholder=
"value"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
<li
class=
"tight-form-item"
>
<i
class=
"fa fa-arrow-right"
></i>
</li>
<li
ng-repeat-end
>
<input
type=
"text"
placeholder=
"text"
ng-model=
"map.text"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
<li>
<a
class=
"pointer tight-form-item last"
ng-click=
"ctrl.addValueMap();"
>
<i
class=
"fa fa-plus"
></i>
</a>
</li>
</ul>
<div
class=
"clearfix"
></div>
</div>
</div>
</div>
<div
class=
"editor-row"
ng-if=
"ctrl.panel.mappingType==2"
>
<h5>
Set range mappings
</h5>
<div
class=
"section gf-form-group"
>
<div
class=
"tight-form-container"
>
<div
class=
"tight-form"
ng-repeat=
"rangeMap in ctrl.panel.rangeMaps"
>
<ul
class=
"tight-form-list"
>
<li
class=
"tight-form-item"
>
<i
class=
"fa fa-remove pointer"
ng-click=
"ctrl.panel.removeRangeMap(rangeMap)"
></i>
</li>
<li
class=
"tight-form-item"
>
From
</li>
<li>
<input
type=
"text"
ng-model=
"rangeMap.from"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
<li
class=
"tight-form-item"
>
To
</li>
<li>
<input
type=
"text"
ng-model=
"rangeMap.to"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
<li
class=
"tight-form-item"
>
Text
</li>
<li>
<input
type=
"text"
ng-model=
"rangeMap.text"
class=
"input-mini tight-form-input"
ng-blur=
"ctrl.render()"
>
</li>
</ul>
<div
class=
"clearfix"
></div>
</div>
</div>
<button
class=
"btn btn-inverse"
style=
"margin-top: 20px"
ng-click=
"ctrl.addRangeMap()"
>
Add a range mapping
</button>
</div>
</div>
public/app/plugins/panel/singlestat/module.ts
View file @
7b2a2199
...
...
@@ -34,6 +34,14 @@ class SingleStatCtrl extends MetricsPanelCtrl {
valueMaps
:
[
{
value
:
'null'
,
op
:
'='
,
text
:
'N/A'
}
],
mappingTypes
:
[
{
name
:
'value to text'
,
value
:
1
},
{
name
:
'range to text'
,
value
:
2
},
],
rangeMaps
:
[
{
from
:
'null'
,
to
:
'null'
,
text
:
'N/A'
}
],
mappingType
:
1
,
nullPointMode
:
'connected'
,
valueName
:
'avg'
,
prefixFontSize
:
'50%'
,
...
...
@@ -71,6 +79,7 @@ class SingleStatCtrl extends MetricsPanelCtrl {
onInitEditMode
()
{
this
.
fontSizes
=
[
'20%'
,
'30%'
,
'50%'
,
'70%'
,
'80%'
,
'100%'
,
'110%'
,
'120%'
,
'150%'
,
'170%'
,
'200%'
];
this
.
addEditorTab
(
'Options'
,
'public/app/plugins/panel/singlestat/editor.html'
,
2
);
this
.
addEditorTab
(
'Mappings'
,
'public/app/plugins/panel/singlestat/mappings.html'
,
3
);
this
.
unitFormats
=
kbn
.
getUnitFormats
();
}
...
...
@@ -195,23 +204,45 @@ class SingleStatCtrl extends MetricsPanelCtrl {
}
}
// check value to text mappings
for
(
var
i
=
0
;
i
<
this
.
panel
.
valueMaps
.
length
;
i
++
)
{
var
map
=
this
.
panel
.
valueMaps
[
i
];
// special null case
if
(
map
.
value
===
'null'
)
{
if
(
data
.
value
===
null
||
data
.
value
===
void
0
)
{
// check value to text mappings if its enabled
if
(
this
.
panel
.
mappingType
===
1
)
{
for
(
var
i
=
0
;
i
<
this
.
panel
.
valueMaps
.
length
;
i
++
)
{
var
map
=
this
.
panel
.
valueMaps
[
i
];
// special null case
if
(
map
.
value
===
'null'
)
{
if
(
data
.
value
===
null
||
data
.
value
===
void
0
)
{
data
.
valueFormated
=
map
.
text
;
return
;
}
continue
;
}
// value/number to text mapping
var
value
=
parseFloat
(
map
.
value
);
if
(
value
===
data
.
valueRounded
)
{
data
.
valueFormated
=
map
.
text
;
return
;
}
continue
;
}
}
else
if
(
this
.
panel
.
mappingType
===
2
)
{
for
(
var
i
=
0
;
i
<
this
.
panel
.
rangeMaps
.
length
;
i
++
)
{
var
map
=
this
.
panel
.
rangeMaps
[
i
];
// special null case
if
(
map
.
from
===
'null'
&&
map
.
to
===
'null'
)
{
if
(
data
.
value
===
null
||
data
.
value
===
void
0
)
{
data
.
valueFormated
=
map
.
text
;
return
;
}
continue
;
}
// value/number to text mapping
var
value
=
parseFloat
(
map
.
value
);
if
(
value
===
data
.
valueRounded
)
{
data
.
valueFormated
=
map
.
text
;
return
;
// value/number to range mapping
var
from
=
parseFloat
(
map
.
from
);
var
to
=
parseFloat
(
map
.
to
);
if
(
to
>=
data
.
valueRounded
&&
from
<=
data
.
valueRounded
)
{
data
.
valueFormated
=
map
.
text
;
return
;
}
}
}
...
...
@@ -230,6 +261,16 @@ class SingleStatCtrl extends MetricsPanelCtrl {
this
.
panel
.
valueMaps
.
push
({
value
:
''
,
op
:
'='
,
text
:
''
});
}
removeRangeMap
(
rangeMap
)
{
var
index
=
_
.
indexOf
(
this
.
panel
.
rangeMaps
,
rangeMap
);
this
.
panel
.
rangeMaps
.
splice
(
index
,
1
);
this
.
render
();
};
addRangeMap
()
{
this
.
panel
.
rangeMaps
.
push
({
from
:
''
,
to
:
''
,
text
:
''
});
}
link
(
scope
,
elem
,
attrs
,
ctrl
)
{
var
$location
=
this
.
$location
;
var
linkSrv
=
this
.
linkSrv
;
...
...
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