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
bfaec17c
Unverified
Commit
bfaec17c
authored
May 06, 2020
by
Andrej Ocenas
Committed by
GitHub
May 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CloudWatch logs: Fix default region interpolation and reset log groups on region change (#24346)
parent
1896828b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
118 additions
and
19 deletions
+118
-19
public/app/plugins/datasource/cloudwatch/components/LogsQueryField.test.tsx
+61
-0
public/app/plugins/datasource/cloudwatch/components/LogsQueryField.tsx
+17
-14
public/app/plugins/datasource/cloudwatch/datasource.test.ts
+29
-0
public/app/plugins/datasource/cloudwatch/datasource.ts
+11
-5
No files found.
public/app/plugins/datasource/cloudwatch/components/LogsQueryField.test.tsx
0 → 100644
View file @
bfaec17c
import
React
from
'react'
;
import
{
shallow
}
from
'enzyme'
;
import
{
CloudWatchLogsQueryField
}
from
'./LogsQueryField'
;
import
{
ExploreId
}
from
'../../../../types'
;
describe
(
'CloudWatchLogsQueryField'
,
()
=>
{
it
(
'updates upstream query log groups on region change'
,
async
()
=>
{
const
onChange
=
jest
.
fn
();
const
wrapper
=
shallow
(
<
CloudWatchLogsQueryField
history=
{
[]
}
absoluteRange=
{
{
from
:
1
,
to
:
10
}
}
syntaxLoaded=
{
false
}
syntax=
{
{}
as
any
}
exploreId=
{
ExploreId
.
left
}
datasource=
{
{
getRegions
()
{
return
Promise
.
resolve
([
{
label
:
'region1'
,
value
:
'region1'
,
text
:
'region1'
,
},
{
label
:
'region2'
,
value
:
'region2'
,
text
:
'region2'
,
},
]);
},
describeLogGroups
(
params
:
any
)
{
if
(
params
.
region
===
'region1'
)
{
return
Promise
.
resolve
([
'log_group_1'
]);
}
else
{
return
Promise
.
resolve
([
'log_group_2'
]);
}
},
}
as
any
}
query=
{
{}
as
any
}
onRunQuery=
{
()
=>
{}
}
onChange=
{
onChange
}
/>
);
const
getRegionSelect
=
()
=>
wrapper
.
find
({
label
:
'Region'
}).
props
().
inputEl
;
const
getLogGroupSelect
=
()
=>
wrapper
.
find
({
label
:
'Log Groups'
}).
props
().
inputEl
;
getLogGroupSelect
().
props
.
onChange
([{
value
:
'log_group_1'
}]);
expect
(
getLogGroupSelect
().
props
.
value
.
length
).
toBe
(
1
);
expect
(
getLogGroupSelect
().
props
.
value
[
0
].
value
).
toBe
(
'log_group_1'
);
// We select new region where the selected log group does not exist
await
getRegionSelect
().
props
.
onChange
({
value
:
'region2'
});
// We clear the select
expect
(
getLogGroupSelect
().
props
.
value
.
length
).
toBe
(
0
);
// Make sure we correctly updated the upstream state
expect
(
onChange
.
mock
.
calls
[
1
][
0
]).
toEqual
({
region
:
'region2'
,
logGroupNames
:
[]
});
});
});
public/app/plugins/datasource/cloudwatch/components/LogsQueryField.tsx
View file @
bfaec17c
...
@@ -186,22 +186,25 @@ export class CloudWatchLogsQueryField extends React.PureComponent<CloudWatchLogs
...
@@ -186,22 +186,25 @@ export class CloudWatchLogsQueryField extends React.PureComponent<CloudWatchLogs
const
logGroups
=
await
this
.
fetchLogGroupOptions
(
v
.
value
!
);
const
logGroups
=
await
this
.
fetchLogGroupOptions
(
v
.
value
!
);
this
.
setState
(
state
=>
({
this
.
setState
(
state
=>
{
availableLogGroups
:
logGroups
,
const
selectedLogGroups
=
intersection
(
state
.
selectedLogGroups
,
logGroups
);
selectedLogGroups
:
intersection
(
state
.
selectedLogGroups
,
logGroups
),
loadingLogGroups
:
false
,
const
{
onChange
,
query
}
=
this
.
props
;
}));
if
(
onChange
)
{
const
nextQuery
=
{
const
{
onChange
,
query
}
=
this
.
props
;
...
query
,
region
:
v
.
value
,
logGroupNames
:
selectedLogGroups
.
map
(
group
=>
group
.
value
),
};
if
(
onChange
)
{
onChange
(
nextQuery
);
const
nextQuery
=
{
}
...
query
,
return
{
region
:
v
.
value
,
availableLogGroups
:
logGroups
,
selectedLogGroups
:
selectedLogGroups
,
loadingLogGroups
:
false
,
};
};
});
onChange
(
nextQuery
);
}
};
};
onTypeahead
=
async
(
typeahead
:
TypeaheadInput
):
Promise
<
TypeaheadOutput
>
=>
{
onTypeahead
=
async
(
typeahead
:
TypeaheadInput
):
Promise
<
TypeaheadOutput
>
=>
{
...
...
public/app/plugins/datasource/cloudwatch/datasource.test.ts
0 → 100644
View file @
bfaec17c
import
{
CloudWatchDatasource
}
from
'./datasource'
;
import
{
TemplateSrv
}
from
'../../../features/templating/template_srv'
;
import
{
setBackendSrv
}
from
'@grafana/runtime'
;
import
{
DefaultTimeRange
}
from
'@grafana/data'
;
describe
(
'datasource'
,
()
=>
{
describe
(
'describeLogGroup'
,
()
=>
{
it
(
'replaces region correctly in the query'
,
async
()
=>
{
const
datasource
=
new
CloudWatchDatasource
(
{
jsonData
:
{
defaultRegion
:
'us-west-1'
}
}
as
any
,
new
TemplateSrv
(),
{
timeRange
()
{
return
DefaultTimeRange
;
},
}
as
any
);
const
datasourceRequestMock
=
jest
.
fn
();
datasourceRequestMock
.
mockResolvedValue
({
data
:
[]
});
setBackendSrv
({
datasourceRequest
:
datasourceRequestMock
}
as
any
);
await
datasource
.
describeLogGroups
({
region
:
'default'
});
expect
(
datasourceRequestMock
.
mock
.
calls
[
0
][
0
].
data
.
queries
[
0
].
region
).
toBe
(
'us-west-1'
);
await
datasource
.
describeLogGroups
({
region
:
'eu-east'
});
expect
(
datasourceRequestMock
.
mock
.
calls
[
1
][
0
].
data
.
queries
[
0
].
region
).
toBe
(
'eu-east'
);
});
});
});
public/app/plugins/datasource/cloudwatch/datasource.ts
View file @
bfaec17c
...
@@ -470,7 +470,7 @@ export class CloudWatchDatasource extends DataSourceApi<CloudWatchQuery, CloudWa
...
@@ -470,7 +470,7 @@ export class CloudWatchDatasource extends DataSourceApi<CloudWatchQuery, CloudWa
makeLogActionRequest
(
makeLogActionRequest
(
subtype
:
LogAction
,
subtype
:
LogAction
,
queryParams
:
any
[],
queryParams
:
any
[],
scopedVars
?:
any
,
scopedVars
?:
ScopedVars
,
makeReplacements
=
true
makeReplacements
=
true
):
Observable
<
DataFrame
[]
>
{
):
Observable
<
DataFrame
[]
>
{
const
range
=
this
.
timeSrv
.
timeRange
();
const
range
=
this
.
timeSrv
.
timeRange
();
...
@@ -490,9 +490,10 @@ export class CloudWatchDatasource extends DataSourceApi<CloudWatchQuery, CloudWa
...
@@ -490,9 +490,10 @@ export class CloudWatchDatasource extends DataSourceApi<CloudWatchQuery, CloudWa
};
};
if
(
makeReplacements
)
{
if
(
makeReplacements
)
{
requestParams
.
queries
.
forEach
(
requestParams
.
queries
.
forEach
(
query
=>
{
query
=>
(
query
.
region
=
this
.
replace
(
this
.
getActualRegion
(
this
.
defaultRegion
),
scopedVars
,
true
,
'region'
))
query
.
region
=
this
.
replace
(
query
.
region
,
scopedVars
,
true
,
'region'
);
);
query
.
region
=
this
.
getActualRegion
(
query
.
region
);
});
}
}
const
resultsToDataFrames
=
(
val
:
any
):
DataFrame
[]
=>
toDataQueryResponse
(
val
).
data
||
[];
const
resultsToDataFrames
=
(
val
:
any
):
DataFrame
[]
=>
toDataQueryResponse
(
val
).
data
||
[];
...
@@ -785,7 +786,12 @@ export class CloudWatchDatasource extends DataSourceApi<CloudWatchQuery, CloudWa
...
@@ -785,7 +786,12 @@ export class CloudWatchDatasource extends DataSourceApi<CloudWatchQuery, CloudWa
},
{});
},
{});
}
}
replace
(
target
:
string
,
scopedVars
:
ScopedVars
,
displayErrorIfIsMultiTemplateVariable
?:
boolean
,
fieldName
?:
string
)
{
replace
(
target
:
string
,
scopedVars
:
ScopedVars
|
undefined
,
displayErrorIfIsMultiTemplateVariable
?:
boolean
,
fieldName
?:
string
)
{
if
(
displayErrorIfIsMultiTemplateVariable
)
{
if
(
displayErrorIfIsMultiTemplateVariable
)
{
const
variable
=
this
.
templateSrv
const
variable
=
this
.
templateSrv
.
getVariables
()
.
getVariables
()
...
...
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