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
6a6eab5e
Commit
6a6eab5e
authored
Jan 24, 2018
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plugins: map error property on query result
parent
ee973a97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
pkg/plugins/datasource/wrapper/datasource_plugin_wrapper.go
+10
-5
No files found.
pkg/plugins/datasource/wrapper/datasource_plugin_wrapper.go
View file @
6a6eab5e
...
@@ -2,6 +2,7 @@ package wrapper
...
@@ -2,6 +2,7 @@ package wrapper
import
(
import
(
"context"
"context"
"errors"
"fmt"
"fmt"
"github.com/grafana/grafana/pkg/components/null"
"github.com/grafana/grafana/pkg/components/null"
...
@@ -67,9 +68,11 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
...
@@ -67,9 +68,11 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
}
}
for
_
,
r
:=
range
pbres
.
Results
{
for
_
,
r
:=
range
pbres
.
Results
{
res
.
Results
[
r
.
RefId
]
=
&
tsdb
.
QueryResult
{
qr
:=
&
tsdb
.
QueryResult
{
RefId
:
r
.
RefId
,
RefId
:
r
.
RefId
,
Series
:
[]
*
tsdb
.
TimeSeries
{},
Series
:
[]
*
tsdb
.
TimeSeries
{},
Error
:
errors
.
New
(
r
.
Error
),
ErrorString
:
r
.
Error
,
}
}
for
_
,
s
:=
range
r
.
GetSeries
()
{
for
_
,
s
:=
range
r
.
GetSeries
()
{
...
@@ -80,7 +83,7 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
...
@@ -80,7 +83,7 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
points
=
append
(
points
,
po
)
points
=
append
(
points
,
po
)
}
}
res
.
Results
[
r
.
RefId
]
.
Series
=
append
(
res
.
Results
[
r
.
RefId
]
.
Series
,
&
tsdb
.
TimeSeries
{
qr
.
Series
=
append
(
qr
.
Series
,
&
tsdb
.
TimeSeries
{
Name
:
s
.
Name
,
Name
:
s
.
Name
,
Tags
:
s
.
Tags
,
Tags
:
s
.
Tags
,
Points
:
points
,
Points
:
points
,
...
@@ -91,7 +94,9 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
...
@@ -91,7 +94,9 @@ func (tw *DatasourcePluginWrapper) Query(ctx context.Context, ds *models.DataSou
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
res
.
Results
[
r
.
RefId
]
.
Tables
=
mappedTables
qr
.
Tables
=
mappedTables
res
.
Results
[
r
.
RefId
]
=
qr
}
}
return
res
,
nil
return
res
,
nil
...
...
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