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

Categorize search queries by type and log query shape #10724

Merged
merged 35 commits into from
Oct 19, 2023

Commits on Oct 19, 2023

  1. Search Query Categorizor initial skeleton using QueryBuilderVisitor

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    cd39650 View commit details
    Browse the repository at this point in the history
  2. Integrate metrics framework, add counters and log query shape

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    ac8e046 View commit details
    Browse the repository at this point in the history
  3. Update changelog

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    b2de312 View commit details
    Browse the repository at this point in the history
  4. Add level attribute to QueryBuilderVisitor and as a tag in Counters

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    507423e View commit details
    Browse the repository at this point in the history
  5. Log query shape as debug log

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    aa426a1 View commit details
    Browse the repository at this point in the history
  6. Integrate metrics framework, refactor code and update tests

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    f6db526 View commit details
    Browse the repository at this point in the history
  7. Fix build

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    40ff016 View commit details
    Browse the repository at this point in the history
  8. Add javadocs

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    5c09d0a View commit details
    Browse the repository at this point in the history
  9. Minor fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    4a5c70e View commit details
    Browse the repository at this point in the history
  10. Spotless check changes

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    255ed77 View commit details
    Browse the repository at this point in the history
  11. Address comments, add agg and sort counters, add feature flag, refact…

    …oring
    
    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    4386264 View commit details
    Browse the repository at this point in the history
  12. Build fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    21184bc View commit details
    Browse the repository at this point in the history
  13. spotless check

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    7b729b5 View commit details
    Browse the repository at this point in the history
  14. Fix tests

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    d86845e View commit details
    Browse the repository at this point in the history
  15. Dynamic feature flag with callback

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    4e05a39 View commit details
    Browse the repository at this point in the history
  16. Minor fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    aff9618 View commit details
    Browse the repository at this point in the history
  17. Add initialization in callback

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    792d4c4 View commit details
    Browse the repository at this point in the history
  18. Address comments

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    f2c14b3 View commit details
    Browse the repository at this point in the history
  19. Add exception handling

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    2545788 View commit details
    Browse the repository at this point in the history
  20. Refactoring and renaming

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    ddf4594 View commit details
    Browse the repository at this point in the history
  21. Minor fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    88660f4 View commit details
    Browse the repository at this point in the history
  22. Fix changelog and minor refactoring

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    3e2fedd View commit details
    Browse the repository at this point in the history
  23. Address review comments

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    b9fa336 View commit details
    Browse the repository at this point in the history
  24. Add unit tests

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    8fc8da3 View commit details
    Browse the repository at this point in the history
  25. Address review comments and add complex query unit test

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    00fdef6 View commit details
    Browse the repository at this point in the history
  26. Add sort order as a tag to sort counter

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    0d7bba1 View commit details
    Browse the repository at this point in the history
  27. Address review comments

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    8b21e6f View commit details
    Browse the repository at this point in the history
  28. Address final comments

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    6c59f8d View commit details
    Browse the repository at this point in the history
  29. Build fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    f73ec2a View commit details
    Browse the repository at this point in the history
  30. Fix build tests failure

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    f0395d5 View commit details
    Browse the repository at this point in the history
  31. Minor fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    a402aa0 View commit details
    Browse the repository at this point in the history
  32. Minor fix

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    fb08dda View commit details
    Browse the repository at this point in the history
  33. Empty commit

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    c6a27a6 View commit details
    Browse the repository at this point in the history
  34. Remove extra newline

    Signed-off-by: Michael Froh <[email protected]>
    msfroh authored and deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    3ee9236 View commit details
    Browse the repository at this point in the history
  35. Empty commit

    Signed-off-by: Siddhant Deshmukh <[email protected]>
    deshsidd committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    b172450 View commit details
    Browse the repository at this point in the history