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
3519d8d6
Commit
3519d8d6
authored
Oct 07, 2017
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
annotations: minor change to default/edit annotation color
parent
25aa9df2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
21 deletions
+26
-21
public/app/core/utils/colors.ts
+4
-0
public/app/features/annotations/event_manager.ts
+20
-20
public/app/features/dashboard/model.ts
+2
-1
No files found.
public/app/core/utils/colors.ts
View file @
3519d8d6
...
...
@@ -5,6 +5,10 @@ declare var tinycolor;
export
const
PALETTE_ROWS
=
4
;
export
const
PALETTE_COLUMNS
=
14
;
export
const
DEFAULT_ANNOTATION_COLOR
=
'rgba(0, 211, 255, 1)'
;
export
const
OK_COLOR
=
"rgba(11, 237, 50, 1)"
;
export
const
ALERTING_COLOR
=
"rgba(237, 46, 24, 1)"
;
export
const
NO_DATA_COLOR
=
"rgba(150, 150, 150, 1)"
;
let
colors
=
[
"#7EB26D"
,
"#EAB839"
,
"#6ED0E0"
,
"#EF843C"
,
"#E24D42"
,
"#1F78C1"
,
"#BA43A9"
,
"#705DA0"
,
...
...
public/app/features/annotations/event_manager.ts
View file @
3519d8d6
...
...
@@ -2,18 +2,13 @@ import _ from 'lodash';
import
moment
from
'moment'
;
import
{
MetricsPanelCtrl
}
from
'app/plugins/sdk'
;
import
{
AnnotationEvent
}
from
'./event'
;
const
OK_COLOR
=
"rgba(11, 237, 50, 1)"
,
ALERTING_COLOR
=
"rgba(237, 46, 24, 1)"
,
NO_DATA_COLOR
=
"rgba(150, 150, 150, 1)"
;
import
{
OK_COLOR
,
ALERTING_COLOR
,
NO_DATA_COLOR
,
DEFAULT_ANNOTATION_COLOR
}
from
'app/core/utils/colors'
;
export
class
EventManager
{
event
:
AnnotationEvent
;
editorOpen
:
boolean
;
constructor
(
private
panelCtrl
:
MetricsPanelCtrl
)
{
}
constructor
(
private
panelCtrl
:
MetricsPanelCtrl
)
{}
editorClosed
()
{
this
.
event
=
null
;
...
...
@@ -54,21 +49,26 @@ export class EventManager {
}
var
types
=
{
'$__alerting'
:
{
$__alerting
:
{
color
:
ALERTING_COLOR
,
position
:
'BOTTOM'
,
markerSize
:
5
,
},
'$__ok'
:
{
$__ok
:
{
color
:
OK_COLOR
,
position
:
'BOTTOM'
,
markerSize
:
5
,
},
'$__no_data'
:
{
$__no_data
:
{
color
:
NO_DATA_COLOR
,
position
:
'BOTTOM'
,
markerSize
:
5
,
},
$__editing
:
{
color
:
DEFAULT_ANNOTATION_COLOR
,
position
:
'BOTTOM'
,
markerSize
:
5
,
},
};
if
(
this
.
event
)
{
...
...
@@ -79,9 +79,9 @@ export class EventManager {
min
:
this
.
event
.
time
.
valueOf
(),
timeEnd
:
this
.
event
.
timeEnd
.
valueOf
(),
text
:
this
.
event
.
text
,
eventType
:
'$__
aler
ting'
,
eventType
:
'$__
edi
ting'
,
editModel
:
this
.
event
,
}
}
,
];
}
else
{
annotations
=
[
...
...
@@ -89,8 +89,8 @@ export class EventManager {
min
:
this
.
event
.
time
.
valueOf
(),
text
:
this
.
event
.
text
,
editModel
:
this
.
event
,
eventType
:
'$__
aler
ting'
,
}
eventType
:
'$__
edi
ting'
,
}
,
];
}
}
else
{
...
...
@@ -130,7 +130,7 @@ export class EventManager {
levels
:
_
.
keys
(
types
).
length
+
1
,
data
:
annotations
,
types
:
types
,
manager
:
this
manager
:
this
,
};
}
}
...
...
@@ -141,7 +141,7 @@ function getRegions(events) {
function
addRegionMarking
(
regions
,
flotOptions
)
{
let
markings
=
flotOptions
.
grid
.
markings
;
let
defaultColor
=
'rgb(237, 46, 24)'
;
let
defaultColor
=
DEFAULT_ANNOTATION_COLOR
;
let
fillColor
;
_
.
each
(
regions
,
region
=>
{
...
...
@@ -158,8 +158,8 @@ function addRegionMarking(regions, flotOptions) {
fillColor
=
convertToRGB
(
fillColor
);
}
fillColor
=
addAlphaToRGB
(
fillColor
,
0.09
0
);
markings
.
push
({
xaxis
:
{
from
:
region
.
min
,
to
:
region
.
timeEnd
},
color
:
fillColor
});
fillColor
=
addAlphaToRGB
(
fillColor
,
0.09
);
markings
.
push
({
xaxis
:
{
from
:
region
.
min
,
to
:
region
.
timeEnd
},
color
:
fillColor
});
});
}
...
...
@@ -179,8 +179,8 @@ function convertToRGB(hex: string): string {
let
rgb
=
_
.
map
(
match
.
slice
(
1
),
hex_val
=>
{
return
parseInt
(
hex_val
,
16
);
});
return
'rgb('
+
rgb
.
join
(
','
)
+
')'
;
return
'rgb('
+
rgb
.
join
(
','
)
+
')'
;
}
else
{
return
""
;
return
''
;
}
}
public/app/features/dashboard/model.ts
View file @
3519d8d6
...
...
@@ -5,6 +5,7 @@ import moment from 'moment';
import
_
from
'lodash'
;
import
$
from
'jquery'
;
import
{
DEFAULT_ANNOTATION_COLOR
}
from
'app/core/utils/colors'
;
import
{
Emitter
,
contextSrv
,
appEvents
}
from
'app/core/core'
;
import
{
DashboardRow
}
from
'./row/row_model'
;
import
sortByKeys
from
'app/core/utils/sort_by_keys'
;
...
...
@@ -93,7 +94,7 @@ export class DashboardModel {
datasource
:
'-- Grafana --'
,
name
:
'Annotations & Alerts'
,
type
:
'dashboard'
,
iconColor
:
'rgb(0, 211, 255)'
,
iconColor
:
DEFAULT_ANNOTATION_COLOR
,
enable
:
true
,
hide
:
true
,
builtIn
:
1
,
...
...
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