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
f03e4be6
Commit
f03e4be6
authored
Feb 08, 2014
by
Torkel Odegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #72, added scripted dashboard example (feature inherited from kibana)
parent
ba6a6292
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
0 deletions
+75
-0
src/app/dashboards/scripted.js
+75
-0
No files found.
src/app/dashboards/scripted.js
0 → 100644
View file @
f03e4be6
/* global _ */
/*
* Complex scripted dashboard
* This script generates a dashboard object that Grafana can load. It also takes a number of user
* supplied URL parameters (int ARGS variable)
*
*/
'use strict'
;
// Setup some variables
var
dashboard
,
_d_timespan
;
// All url parameters are available via the ARGS object
var
ARGS
;
// Set a default timespan if one isn't specified
_d_timespan
=
'1d'
;
// Intialize a skeleton with nothing but a rows array and service object
dashboard
=
{
rows
:
[],
services
:
{}
};
// Set a title
dashboard
.
title
=
'Scripted dash'
;
dashboard
.
services
.
filter
=
{
time
:
{
from
:
"now-"
+
(
ARGS
.
from
||
_d_timespan
),
to
:
"now"
}
};
var
rows
=
1
;
var
name
=
'argName'
;
if
(
!
_
.
isUndefined
(
ARGS
.
rows
))
{
rows
=
parseInt
(
ARGS
.
rows
,
10
);
}
if
(
!
_
.
isUndefined
(
ARGS
.
name
))
{
name
=
ARGS
.
name
;
}
for
(
var
i
=
0
;
i
<
rows
;
i
++
)
{
dashboard
.
rows
.
push
({
title
:
'Chart'
,
height
:
'300px'
,
panels
:
[
{
title
:
'Events'
,
type
:
'graphite'
,
span
:
12
,
fill
:
1
,
linewidth
:
2
,
targets
:
[
{
'target'
:
"randomWalk('"
+
name
+
"')"
},
{
'target'
:
"randomWalk('random walk2')"
}
],
}
]
});
}
// Now return the object and we're good!
return
dashboard
;
\ No newline at end of file
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