Skip to content
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

Disable metric joins & revert join-related changes #42477

Merged
merged 15 commits into from May 10, 2024

Conversation

ranquild
Copy link
Contributor

@ranquild ranquild commented May 9, 2024

Fixes #42463
Related #42278

  • Removes joins for the first stage of metric-based queries
  • Removes metrics from the join source picker
  • Reverts step title changes
Screenshot 2024-05-09 at 15 21 45 Screenshot 2024-05-09 at 15 22 35

@ranquild ranquild requested a review from camsaul as a code owner May 9, 2024 19:19
@ranquild ranquild self-assigned this May 9, 2024
@ranquild ranquild changed the base branch from master to metrics-v2 May 9, 2024 19:19
@ranquild ranquild added the no-backport Do not backport this PR to any branch label May 9, 2024
@ranquild ranquild changed the title Disable metric joins Disable metric joins & revert join-related changes May 9, 2024
@ranquild ranquild removed the request for review from camsaul May 9, 2024 19:21
Copy link

github-actions bot commented May 9, 2024

Codenotify: Notifying subscribers in CODENOTIFY files for diff ee93c78...7f4dc80.

No notifications.

@ranquild ranquild requested a review from a team May 9, 2024 19:32
Copy link

replay-io bot commented May 9, 2024

Status Complete ↗︎
Commit 7f4dc80
Results
⚠️ 7 Flaky
2460 Passed

const { metrics, loaded } = this.props;
return loaded && metrics && metrics.length > 0;
const { metrics, loaded, hasMetrics } = this.props;
return loaded && metrics && metrics.length > 0 && hasMetrics;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The difference between this.props.hasMetrics and this.hasMetrics is not apparent.
Maybe we can rename the prop to something like enableMetrics?

@kamilmielnik kamilmielnik requested a review from a team May 10, 2024 07:14
@ranquild ranquild merged commit 76a473a into metrics-v2 May 10, 2024
111 checks passed
@ranquild ranquild deleted the 42463-metric-join-updates branch May 10, 2024 16:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
no-backport Do not backport this PR to any branch .Team/QueryingComponents
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FE] Disallow joining metrics
2 participants