-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
perf(Series): Limit the number of series request by breakdown charts #219
base: main
Are you sure you want to change the base?
Conversation
@@ -38,18 +35,3 @@ export const addStats = () => (source: Observable<DataFrame[]>) => | |||
}); | |||
}) | |||
); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing code 🥳
# Conflicts: # src/pages/ProfilesExplorerView/components/SceneExploreServiceLabels/components/SceneGroupByLabels/components/SceneLabelValuesGrid/SceneLabelValuesGrid.tsx
@ifrost in which Grafana version can we expect the changes grafana/grafana#95780 to be integrated? Next week? 11.3.0-xyz? Sorry I'm still not familiar with the world of Grafana's rolling releases 😅 |
# Conflicts: # src/pages/ProfilesExplorerView/domain/actions/SelectAction.tsx
092a7bd
to
fd24b38
Compare
drone_migration.yaml
Outdated
@@ -2,421 +2,421 @@ | |||
name: build packages | |||
services: [] | |||
steps: | |||
- commands: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Auto-lint
# Conflicts: # docker-compose.e2e.yaml # docker-compose.local.yaml # docker-compose.remote.yaml # docker-compose.yaml # package.json # src/pages/ProfilesExplorerView/components/SceneLabelValuesTimeseries/SceneLabelValuesTimeseries.tsx # src/plugin.json # src/shared/infrastructure/tracking/faro/__tests__/faro.spec.ts # yarn.lock
@@ -7,7 +7,7 @@ | |||
"backend": false, | |||
"preload": true, | |||
"dependencies": { | |||
"grafanaDependency": ">=11.3.2", | |||
"grafanaDependency": ">=11.4.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"grafanaDependency": ">=11.4.0", | |
"grafanaDependency": ">=11.5.0", |
@ifrost in which Grafana version can we expect the changes grafana/grafana#95780 to be integrated? Next week? 11.3.0-xyz?
Sorry I'm still not familiar with the world of Grafana's rolling releases 😅
It will be out 15 January in 11.5.
✨ Description
package.json
to use Grafana 11.5.0 once it's publishedRelated issue(s): resolves #192, was blocked by grafana/grafana#95780, which is merged and deployed to all channels:
📖 Summary of the changes
This PR replaces the custom data transformations of the time series. Instead, a new
limit
parameter is passed when fetching from the API.🧪 How to test?
On the "Labels" view, the max number of series received by the API is limited to 10 ; the page loads faster (which can also be verified by checking the requests in the "Network" tab of the browser's devtools)