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
24fbcd8d
Commit
24fbcd8d
authored
Apr 22, 2016
by
Carl Bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Gauges"
parent
db15bf23
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
134 deletions
+4
-134
public/app/plugins/panel/singlestat/editor.html
+0
-37
public/app/plugins/panel/singlestat/module.ts
+2
-93
public/app/system.conf.js
+1
-2
public/test/test-main.js
+1
-2
public/vendor/flot/jquery.flot.gauge.js
+0
-0
No files found.
public/app/plugins/panel/singlestat/editor.html
View file @
24fbcd8d
...
...
@@ -160,43 +160,6 @@
<div
class=
"section"
style=
"margin-bottom: 20px"
>
<div
class=
"tight-form last"
>
<ul
class=
"tight-form-list"
>
<li
class=
"tight-form-item"
style=
"width: 80px"
>
<strong>
Gauge
</strong>
</li>
<li
class=
"tight-form-item"
>
Show
<input
class=
"cr1"
id=
"panel.gauge.show"
type=
"checkbox"
ng-model=
"ctrl.panel.gauge.show"
ng-checked=
"ctrl.panel.gauge.show"
ng-change=
"ctrl.render()"
>
<label
for=
"panel.gauge.show"
class=
"cr1"
></label>
</li>
<li
class=
"tight-form-item"
>
Threshold labels
<input
class=
"cr1"
id=
"panel.gauge.thresholdLabels"
type=
"checkbox"
ng-model=
"ctrl.panel.gauge.thresholdLabels"
ng-checked=
"ctrl.panel.gauge.thresholdLabels"
ng-change=
"ctrl.render()"
>
<label
for=
"panel.gauge.thresholdLabels"
class=
"cr1"
></label>
</li>
<li
class=
"tight-form-item"
>
Min
</li>
<li>
<input
type=
"text"
class=
"input-small tight-form-input"
ng-model=
"ctrl.panel.gauge.minValue"
ng-blur=
"ctrl.render()"
placeholder=
"0"
></input>
</li>
<li
class=
"tight-form-item last"
>
Max
</li>
<li>
<input
type=
"text"
class=
"input-small tight-form-input last"
ng-model=
"ctrl.panel.gauge.maxValue"
ng-blur=
"ctrl.render()"
placeholder=
"100"
></input>
</li>
</ul>
<div
class=
"clearfix"
></div>
</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>
...
...
public/app/plugins/panel/singlestat/module.ts
View file @
24fbcd8d
...
...
@@ -4,10 +4,8 @@ import angular from 'angular';
import
_
from
'lodash'
;
import
$
from
'jquery'
;
import
'jquery.flot'
;
import
'jquery.flot.gauge'
;
import
kbn
from
'app/core/utils/kbn'
;
import
config
from
'app/core/config'
;
import
TimeSeries
from
'app/core/time_series2'
;
import
{
MetricsPanelCtrl
}
from
'app/plugins/sdk'
;
...
...
@@ -40,12 +38,6 @@ var panelDefaults = {
full
:
false
,
lineColor
:
'rgb(31, 120, 193)'
,
fillColor
:
'rgba(31, 118, 189, 0.18)'
,
},
gauge
:
{
show
:
false
,
minValue
:
0
,
maxValue
:
100
,
thresholdLabels
:
true
}
};
...
...
@@ -278,86 +270,6 @@ class SingleStatCtrl extends MetricsPanelCtrl {
return
body
;
}
function
addGauge
()
{
var
plotCanvas
=
$
(
'<div></div>'
);
var
plotCss
=
{
top
:
'10px'
,
margin
:
'auto'
,
position
:
'relative'
,
height
:
(
elem
.
height
()
*
0.9
)
+
'px'
,
width
:
elem
.
width
()
+
'px'
};
plotCanvas
.
css
(
plotCss
);
var
thresholds
=
[];
for
(
var
i
=
0
;
i
<
data
.
thresholds
.
length
;
i
++
)
{
thresholds
.
push
({
value
:
data
.
thresholds
[
i
],
color
:
data
.
colorMap
[
i
]
});
}
thresholds
.
push
({
value
:
panel
.
gauge
.
maxValue
,
color
:
data
.
colorMap
[
data
.
colorMap
.
length
-
1
]
});
var
bgColor
=
config
.
bootData
.
user
.
lightTheme
?
'rgb(230,230,230)'
:
'rgb(38,38,38)'
;
var
options
=
{
series
:
{
gauges
:
{
gauge
:
{
min
:
panel
.
gauge
.
minValue
,
max
:
panel
.
gauge
.
maxValue
,
background
:
{
color
:
bgColor
},
border
:
{
color
:
null
},
shadow
:
{
show
:
false
},
width
:
38
},
frame
:
{
show
:
false
},
label
:
{
show
:
false
},
layout
:
{
margin
:
0
},
cell
:
{
border
:
{
width
:
0
}
},
threshold
:
{
values
:
thresholds
,
label
:
{
show
:
panel
.
gauge
.
thresholdLabels
,
margin
:
8
,
font
:
{
size
:
18
}
},
width
:
8
},
value
:
{
color
:
panel
.
colorValue
?
getColorForValue
(
data
,
data
.
valueRounded
)
:
null
,
formatter
:
function
()
{
return
data
.
valueFormated
;
},
font
:
{
size
:
getGaugeFontSize
()
}
},
show
:
true
}
}
};
elem
.
append
(
plotCanvas
);
var
plotSeries
=
{
data
:
[[
0
,
data
.
valueRounded
]]
};
$
.
plot
(
plotCanvas
,
[
plotSeries
],
options
);
}
function
getGaugeFontSize
()
{
if
(
panel
.
valueFontSize
)
{
var
num
=
parseInt
(
panel
.
valueFontSize
.
substring
(
0
,
panel
.
valueFontSize
.
length
-
1
));
return
30
*
(
num
/
100
);
}
else
{
return
30
;
}
}
function
addSparkline
()
{
var
width
=
elem
.
width
()
+
20
;
if
(
width
<
30
)
{
...
...
@@ -419,10 +331,11 @@ class SingleStatCtrl extends MetricsPanelCtrl {
function
render
()
{
if
(
!
ctrl
.
data
)
{
return
;
}
data
=
ctrl
.
data
;
setElementHeight
();
var
body
=
panel
.
gauge
.
show
?
''
:
getBigValueHtml
();
var
body
=
getBigValueHtml
();
if
(
panel
.
colorBackground
&&
!
isNaN
(
data
.
valueRounded
))
{
var
color
=
getColorForValue
(
data
,
data
.
valueRounded
);
...
...
@@ -445,10 +358,6 @@ class SingleStatCtrl extends MetricsPanelCtrl {
addSparkline
();
}
if
(
panel
.
gauge
.
show
)
{
addGauge
();
}
elem
.
toggleClass
(
'pointer'
,
panel
.
links
.
length
>
0
);
if
(
panel
.
links
.
length
>
0
)
{
...
...
public/app/system.conf.js
View file @
24fbcd8d
...
...
@@ -27,8 +27,7 @@ System.config({
"jquery.flot.stackpercent"
:
"vendor/flot/jquery.flot.stackpercent"
,
"jquery.flot.time"
:
"vendor/flot/jquery.flot.time"
,
"jquery.flot.crosshair"
:
"vendor/flot/jquery.flot.crosshair"
,
"jquery.flot.fillbelow"
:
"vendor/flot/jquery.flot.fillbelow"
,
"jquery.flot.gauge"
:
"vendor/flot/jquery.flot.gauge"
"jquery.flot.fillbelow"
:
"vendor/flot/jquery.flot.fillbelow"
},
packages
:
{
...
...
public/test/test-main.js
View file @
24fbcd8d
...
...
@@ -35,8 +35,7 @@
"jquery.flot.stackpercent"
:
"vendor/flot/jquery.flot.stackpercent"
,
"jquery.flot.time"
:
"vendor/flot/jquery.flot.time"
,
"jquery.flot.crosshair"
:
"vendor/flot/jquery.flot.crosshair"
,
"jquery.flot.fillbelow"
:
"vendor/flot/jquery.flot.fillbelow"
,
"jquery.flot.gauge"
:
"vendor/flot/jquery.flot.gauge"
"jquery.flot.fillbelow"
:
"vendor/flot/jquery.flot.fillbelow"
},
packages
:
{
...
...
public/vendor/flot/jquery.flot.gauge.js
deleted
100644 → 0
View file @
db15bf23
This diff is collapsed.
Click to expand it.
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