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
6b071054
Commit
6b071054
authored
Jul 23, 2018
by
srid12
Committed by
Torkel Ödegaard
Jul 23, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changing callback fn into arrow functions for correct usage of this (#12673)
parent
a17a9218
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
public/app/plugins/datasource/opentsdb/datasource.ts
+3
-3
No files found.
public/app/plugins/datasource/opentsdb/datasource.ts
View file @
6b071054
...
...
@@ -480,17 +480,17 @@ export default class OpenTsDatasource {
mapMetricsToTargets
(
metrics
,
options
,
tsdbVersion
)
{
var
interpolatedTagValue
,
arrTagV
;
return
_
.
map
(
metrics
,
function
(
metricData
)
{
return
_
.
map
(
metrics
,
metricData
=>
{
if
(
tsdbVersion
===
3
)
{
return
metricData
.
query
.
index
;
}
else
{
return
_
.
findIndex
(
options
.
targets
,
function
(
target
)
{
return
_
.
findIndex
(
options
.
targets
,
target
=>
{
if
(
target
.
filters
&&
target
.
filters
.
length
>
0
)
{
return
target
.
metric
===
metricData
.
metric
;
}
else
{
return
(
target
.
metric
===
metricData
.
metric
&&
_
.
every
(
target
.
tags
,
function
(
tagV
,
tagK
)
{
_
.
every
(
target
.
tags
,
(
tagV
,
tagK
)
=>
{
interpolatedTagValue
=
this
.
templateSrv
.
replace
(
tagV
,
options
.
scopedVars
,
'pipe'
);
arrTagV
=
interpolatedTagValue
.
split
(
'|'
);
return
_
.
includes
(
arrTagV
,
metricData
.
tags
[
tagK
])
||
interpolatedTagValue
===
'*'
;
...
...
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