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
ce4e7136
Commit
ce4e7136
authored
Dec 12, 2016
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test(influxdb): adds tests for supporting multiple tags
parent
d599f457
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
2 deletions
+30
-2
public/app/plugins/datasource/influxdb/influx_series.js
+1
-1
public/app/plugins/datasource/influxdb/specs/influx_series_specs.ts
+29
-1
No files found.
public/app/plugins/datasource/influxdb/influx_series.js
View file @
ce4e7136
...
...
@@ -89,7 +89,7 @@ function (_, TableModel) {
if
(
column
===
'sequence_number'
)
{
return
;
}
if
(
!
titleCol
)
{
titleCol
=
index
;
}
if
(
column
===
self
.
annotation
.
titleColumn
)
{
titleCol
=
index
;
return
;
}
if
(
_
.
contains
(
tagsColumn
.
split
(
","
),
column
))
{
tagsCol
.
push
(
index
);
return
;
}
if
(
_
.
includes
(
self
.
annotation
.
tagsColumn
.
replace
(
' '
,
''
)
.
split
(
","
),
column
))
{
tagsCol
.
push
(
index
);
return
;
}
if
(
column
===
self
.
annotation
.
textColumn
)
{
textCol
=
index
;
return
;
}
});
...
...
public/app/plugins/datasource/influxdb/specs/influx_series_specs.ts
View file @
ce4e7136
...
...
@@ -2,7 +2,6 @@ import {describe, beforeEach, it, sinon, expect} from 'test/lib/common';
import
InfluxSeries
from
'../influx_series'
;
describe
(
'when generating timeseries from influxdb response'
,
function
()
{
describe
(
'given multiple fields for series'
,
function
()
{
var
options
=
{
alias
:
''
,
...
...
@@ -68,6 +67,7 @@ describe('when generating timeseries from influxdb response', function() {
});
});
describe
(
'given measurement with default fieldname'
,
function
()
{
var
options
=
{
series
:
[
{
...
...
@@ -96,6 +96,7 @@ describe('when generating timeseries from influxdb response', function() {
});
});
describe
(
'given two series'
,
function
()
{
var
options
=
{
alias
:
''
,
...
...
@@ -206,5 +207,32 @@ describe('when generating timeseries from influxdb response', function() {
});
});
describe
(
'given annotation response'
,
function
()
{
var
options
=
{
alias
:
''
,
annotation
:
{
tagsColumn
:
'datacenter, source'
},
series
:
[
{
name
:
"logins.count"
,
tags
:
{
datacenter
:
'Africa'
,
server
:
'server2'
},
columns
:
[
"time"
,
"datacenter"
,
"hostname"
,
"source"
,
"value"
],
values
:
[
[
1481549440372
,
"America"
,
"10.1.100.10"
,
"backend"
,
215.7432653659507
],
]
}
]
};
it
(
'should multiple tags'
,
function
()
{
var
series
=
new
InfluxSeries
(
options
);
var
annotations
=
series
.
getAnnotations
();
expect
(
annotations
[
0
].
tags
.
length
).
to
.
be
(
2
);
expect
(
annotations
[
0
].
tags
[
0
]).
to
.
be
(
'America'
);
expect
(
annotations
[
0
].
tags
[
1
]).
to
.
be
(
'backend'
);
});
});
});
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