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
9fb1d3a9
Commit
9fb1d3a9
authored
Oct 09, 2018
by
Erik Sundell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stackdriver: only load project name if it's not already stored in the ds info json
parent
cd7b454e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
public/app/plugins/datasource/stackdriver/datasource.ts
+7
-0
No files found.
public/app/plugins/datasource/stackdriver/datasource.ts
View file @
9fb1d3a9
...
@@ -222,6 +222,12 @@ export default class StackdriverDatasource {
...
@@ -222,6 +222,12 @@ export default class StackdriverDatasource {
async
getDefaultProject
()
{
async
getDefaultProject
()
{
try
{
try
{
if
(
this
.
projectName
)
{
return
{
id
:
this
.
projectName
,
name
:
this
.
projectName
,
};
}
else
{
const
projects
=
await
this
.
getProjects
();
const
projects
=
await
this
.
getProjects
();
if
(
projects
&&
projects
.
length
>
0
)
{
if
(
projects
&&
projects
.
length
>
0
)
{
const
test
=
projects
.
filter
(
p
=>
p
.
id
===
this
.
projectName
)[
0
];
const
test
=
projects
.
filter
(
p
=>
p
.
id
===
this
.
projectName
)[
0
];
...
@@ -229,6 +235,7 @@ export default class StackdriverDatasource {
...
@@ -229,6 +235,7 @@ export default class StackdriverDatasource {
}
else
{
}
else
{
throw
new
Error
(
'No projects found'
);
throw
new
Error
(
'No projects found'
);
}
}
}
}
catch
(
error
)
{
}
catch
(
error
)
{
let
message
=
'Projects cannot be fetched: '
;
let
message
=
'Projects cannot be fetched: '
;
message
+=
error
.
statusText
?
error
.
statusText
+
': '
:
''
;
message
+=
error
.
statusText
?
error
.
statusText
+
': '
:
''
;
...
...
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