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

fix(performance): txn summary "has" queries should fall back #73767

Closed
wants to merge 1 commit into from

Commits on Jul 3, 2024

  1. fix(performance): txn summary "has" queries should fall back

    Currently, `has` queries in the Transaction Summary filter causes an empty
    Duration Breakdown, although samples are returned. This happens because the
    metrics dataset only contains a subset of tags (to make cardinality
    manageable), so only those tags will return metrics data with `has` queries.
    
    Since the tags for each metric are inconsistent, instead remove support for
    `has` queries to the metrics dataset, falling back to the transactions dataset
    instead. That way queries will return metric results from the indexed
    transaction data instead of empty results.
    
    Fixes #73591
    mjq committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    54cb915 View commit details
    Browse the repository at this point in the history