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
1d587450
Commit
1d587450
authored
Jun 05, 2018
by
David Kaltschmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IFQL range variable expansion
parent
08ee1da6
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
95 additions
and
26 deletions
+95
-26
public/app/plugins/datasource/influxdb-ifql/datasource.ts
+29
-23
public/app/plugins/datasource/influxdb-ifql/module.ts
+2
-2
public/app/plugins/datasource/influxdb-ifql/query_ctrl.ts
+11
-1
public/app/plugins/datasource/influxdb-ifql/specs/datasource.jest.ts
+53
-0
No files found.
public/app/plugins/datasource/influxdb-ifql/datasource.ts
View file @
1d587450
...
...
@@ -54,23 +54,32 @@ export default class InfluxDatasource {
this
.
supportMetrics
=
true
;
}
query
(
options
)
{
prepareQueries
(
options
)
{
const
targets
=
_
.
cloneDeep
(
options
.
targets
);
const
queryTargets
=
targets
.
filter
(
t
=>
t
.
query
);
const
timeFilter
=
this
.
getTimeFilter
(
options
);
options
.
scopedVars
.
range
=
{
value
:
timeFilter
};
// Filter empty queries and replace grafana variables
const
queryTargets
=
targets
.
filter
(
t
=>
t
.
query
).
map
(
t
=>
{
const
interpolated
=
this
.
templateSrv
.
replace
(
t
.
query
,
options
.
scopedVars
);
return
{
...
t
,
query
:
interpolated
,
};
});
return
queryTargets
;
}
query
(
options
)
{
const
queryTargets
=
this
.
prepareQueries
(
options
);
if
(
queryTargets
.
length
===
0
)
{
return
Promise
.
resolve
({
data
:
[]
});
}
// replace grafana variables
const
timeFilter
=
this
.
getTimeFilter
(
options
);
options
.
scopedVars
.
timeFilter
=
{
value
:
timeFilter
};
const
queries
=
queryTargets
.
map
(
target
=>
{
const
{
query
,
resultFormat
}
=
target
;
// TODO replace templated variables
// allQueries = this.templateSrv.replace(allQueries, scopedVars);
if
(
resultFormat
===
'table'
)
{
return
(
this
.
_seriesQuery
(
query
,
options
)
...
...
@@ -224,32 +233,29 @@ export default class InfluxDatasource {
}
getTimeFilter
(
options
)
{
var
from
=
this
.
getInfluxTime
(
options
.
rangeRaw
.
from
,
false
);
var
until
=
this
.
getInfluxTime
(
options
.
rangeRaw
.
to
,
true
);
var
fromIsAbsolute
=
from
[
from
.
length
-
1
]
===
'ms'
;
if
(
until
===
'now()'
&&
!
fromIsAbsolute
)
{
return
'time >= '
+
from
;
const
from
=
this
.
getInfluxTime
(
options
.
rangeRaw
.
from
,
false
);
const
to
=
this
.
getInfluxTime
(
options
.
rangeRaw
.
to
,
true
);
if
(
to
===
'now'
)
{
return
`start:
${
from
}
`
;
}
return
'time >= '
+
from
+
' and time <= '
+
until
;
return
`start:
${
from
}
, stop:
${
to
}
`
;
}
getInfluxTime
(
date
,
roundUp
)
{
if
(
_
.
isString
(
date
))
{
if
(
date
===
'now'
)
{
return
'now()'
;
return
date
;
}
var
parts
=
/^now-
(\d
+
)([
d|h|m|s
])
$/
.
exec
(
date
);
const
parts
=
/^now
\s
*-
\s
*
(\d
+
)([
d|h|m|s
])
$/
.
exec
(
date
);
if
(
parts
)
{
var
amount
=
parseInt
(
parts
[
1
]);
var
unit
=
parts
[
2
];
return
'
now() -
'
+
amount
+
unit
;
const
amount
=
parseInt
(
parts
[
1
]);
const
unit
=
parts
[
2
];
return
'
-
'
+
amount
+
unit
;
}
date
=
dateMath
.
parse
(
date
,
roundUp
);
}
return
date
.
valueOf
()
+
'ms'
;
return
date
.
toISOString
()
;
}
}
public/app/plugins/datasource/influxdb-ifql/module.ts
View file @
1d587450
import
InfluxDatasource
from
'./datasource'
;
import
{
InfluxQueryCtrl
}
from
'./query_ctrl'
;
import
{
Influx
Ifql
QueryCtrl
}
from
'./query_ctrl'
;
class
InfluxConfigCtrl
{
static
templateUrl
=
'partials/config.html'
;
...
...
@@ -11,7 +11,7 @@ class InfluxAnnotationsQueryCtrl {
export
{
InfluxDatasource
as
Datasource
,
InfluxQueryCtrl
as
QueryCtrl
,
Influx
Ifql
QueryCtrl
as
QueryCtrl
,
InfluxConfigCtrl
as
ConfigCtrl
,
InfluxAnnotationsQueryCtrl
as
AnnotationsQueryCtrl
,
};
public/app/plugins/datasource/influxdb-ifql/query_ctrl.ts
View file @
1d587450
import
{
QueryCtrl
}
from
'app/plugins/sdk'
;
export
class
InfluxQueryCtrl
extends
QueryCtrl
{
function
makeDefaultQuery
(
database
)
{
return
`from(db: "
${
database
}
")
|> range($range)
|> limit(n:1000)
`
;
}
export
class
InfluxIfqlQueryCtrl
extends
QueryCtrl
{
static
templateUrl
=
'partials/query.editor.html'
;
resultFormats
:
any
[];
...
...
@@ -8,6 +14,10 @@ export class InfluxQueryCtrl extends QueryCtrl {
/** @ngInject **/
constructor
(
$scope
,
$injector
)
{
super
(
$scope
,
$injector
);
if
(
this
.
target
.
query
===
undefined
)
{
this
.
target
.
query
=
makeDefaultQuery
(
this
.
datasource
.
database
);
}
this
.
resultFormats
=
[{
text
:
'Time series'
,
value
:
'time_series'
},
{
text
:
'Table'
,
value
:
'table'
}];
}
...
...
public/app/plugins/datasource/influxdb-ifql/specs/datasource.jest.ts
0 → 100644
View file @
1d587450
import
moment
from
'moment'
;
import
{
TemplateSrv
}
from
'app/features/templating/template_srv'
;
import
Datasource
from
'../datasource'
;
describe
(
'InfluxDB (IFQL)'
,
()
=>
{
const
templateSrv
=
new
TemplateSrv
();
const
ds
=
new
Datasource
({
url
:
''
},
{},
templateSrv
);
const
DEFAULT_OPTIONS
=
{
rangeRaw
:
{
to
:
'now'
,
from
:
'now - 3h'
},
scopedVars
:
{},
targets
:
[],
};
let
queries
:
any
[];
describe
(
'prepareQueries()'
,
()
=>
{
it
(
'filters empty queries'
,
()
=>
{
queries
=
ds
.
prepareQueries
(
DEFAULT_OPTIONS
);
expect
(
queries
.
length
).
toBe
(
0
);
queries
=
ds
.
prepareQueries
({
...
DEFAULT_OPTIONS
,
targets
:
[{
query
:
''
}],
});
expect
(
queries
.
length
).
toBe
(
0
);
});
it
(
'replaces $range variable'
,
()
=>
{
queries
=
ds
.
prepareQueries
({
...
DEFAULT_OPTIONS
,
targets
:
[{
query
:
'from(db: "test") |> range($range)'
}],
});
expect
(
queries
.
length
).
toBe
(
1
);
expect
(
queries
[
0
].
query
).
toBe
(
'from(db: "test") |> range(start: -3h)'
);
});
it
(
'replaces $range variable with custom dates'
,
()
=>
{
const
to
=
moment
();
const
from
=
moment
().
subtract
(
1
,
'hours'
);
queries
=
ds
.
prepareQueries
({
...
DEFAULT_OPTIONS
,
rangeRaw
:
{
to
,
from
},
targets
:
[{
query
:
'from(db: "test") |> range($range)'
}],
});
expect
(
queries
.
length
).
toBe
(
1
);
const
start
=
from
.
toISOString
();
const
stop
=
to
.
toISOString
();
expect
(
queries
[
0
].
query
).
toBe
(
`from(db: "test") |> range(start:
${
start
}
, stop:
${
stop
}
)`
);
});
});
});
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