You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
part of: elastic/kibana#255433
## Summary
This PR adds AST support for the new METRICS_INFO command as well as
support in the visitor API
## Details
- cast_to_ast_converter: just creates the command with the context since
the grammar is just:
```
metricsInfoCommand
: METRICS_INFO
;
```
- global_visitor_context: adds the `visitMetricsInfoCommand` in the same
way as the other commands along with its types.
### Checklist
<!-- Delete any items that are not applicable to this PR. -->
- [x] Unit tests have been added or updated.
- [x] The PR title has the correct [conventional
commit](https://www.conventionalcommits.org/en/v1.0.0/) label in the
title, this is crucial for the correct versioning of this package. Check
the following cheat shit.
| Title Label | Release |
|---|---|
| `breaking: true (!)` | `major` |
| `feat` | `minor` |
| `fix` | `patch` |
| `refactor` | `patch` |
| `perf` | `patch` |
| `build` | `patch` |
| `docs` | `patch` |
| `chore` | `patch` |
| `revert` | `patch` |
0 commit comments