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

[8.7] [maps] include vector tile layers in geoShapeAggLayersCount telemetry (#151072) #151089

Merged
merged 1 commit into from
Feb 14, 2023

Conversation

kibanamachine
Copy link
Contributor

Backport

This will backport the following commits from main to 8.7:

Questions ?

Please refer to the Backport tool documentation

…#151072)

While investigating #151064, I
found a problem with IndexPatternStatsCollector where geo_shape
aggregation usage with vector tile layers are not counted.

Steps to view problem:
* Download [world countries
geojson](https://vector.maps.elastic.co/files/world_countries_v7.geo.json?elastic_tile_service_tos=agree&my_app_name=ems-landing-page&my_app_version=8.6.0&license=643c1faf-80fc-4ab0-9323-4d9bd11f4bbc)
* use file upload to upload world countries into your Elastic stack
* add a new cluster layer to your map.
    * Select world countries index
    * Select **Hexagons**
    * Click **Add layer**
    * Save map
* Open borwser dev tools and switch to network tab
* Open Kibana dev tools and run
    ```
    POST kbn:api/telemetry/v2/clusters/_stats
    { "unencrypted": true }
    ```
* Copy response for `_stats` request. Search for
`geoShapeAggLayersCount`. Notice how the value is zero but it should be
one since you have one map using geo shape aggregation
<img width="600" alt="Screen Shot 2023-02-13 at 1 14 34 PM"
src="https://user-images.githubusercontent.com/373691/218565153-0060dd4b-e422-477f-8b07-9f4dabd73064.png">

PR resolves the problem by removing layer type guard. The guard is error
prone and easy to not update with new layer types. The guard does not
provide any value, since the logic is really concerned with source types
and the source type guards provide the correct protections.

Steps to test:
Follow steps above and verify `geoShapeAggLayersCount` is one

(cherry picked from commit 9d7e109)
@kibana-ci
Copy link
Collaborator

💚 Build Succeeded

Metrics [docs]

✅ unchanged

To update your PR or re-run it, just comment with:
@elasticmachine merge upstream

cc @nreese

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants