Erik Sundell
Erik Sundell
**What this PR does / why we need it**: This PR moves the describeAllLogGroups api call from the QueryDataHandler to the CallResourceHandler. The `describeAllLogGroups` call is used for discovery data,...
The CloudWatch data source file contains about 1000 lines of code. It should be refactored so that * query execution logic is separated from everything else * resource requests are...
The DescribeAllLogGroups api is used for listing log groups in the CW Logs query editor. Meta data requests such as these should use the resource api, but currently this is...
**What is this feature?** This PR attempts to fix a problem @mmandrus found in [this](https://github.com/grafana/grafana/pull/57703) PR, where the default query is only applied when new query rows are added but...
**What happened**: Default query defined by the data source using `getDefaultQuery` method is not applied to new queries when creating new panels. **What you expected to happen**: They should be...
I would like the `toBeOK` matcher to apply also to the [Response](https://github.com/microsoft/playwright/blob/289127d523d7f49ca460f73fa65283f14d06b4de/packages/playwright-core/types/types.d.ts#L18687) interface. ``` js // the following is simply more expressive const response = await page.waitForResponse('https://example.com/resource'); await expect(response).toBeOK(); //...
**What is this feature?** Lately, Plugins platform have been working on a [new library](https://github.com/grafana/plugin-tools/tree/main/packages/plugin-e2e) that adds improved E2E testing capabilities to Grafana plugins (more information in [this](https://github.com/grafana/grafana/issues/77484) issue and in...
**What is this feature?** Not ready for review [Add a brief description of what the feature or update does.] **Why do we need this feature?** [Add a description of the...
### Which areas does this feature request relate to - [ ] Create Plugin - [ ] Sign Plugin - [X] Plugin E2E - [ ] Documentation ### Problem Grafana...
**What this PR does / why we need it**: This PR is making a few changes to the e2e related workflow bits: * Use the right snippet in the article...