Skip to content

Commit 6d76da8

Browse files
authored
graphactivitylogs: Fix client|source.geo.location mapping (#11102)
Align `client|source.geo.location` fields to ECS mapping. Users reported mapping exceptions due to Elasticsearch mapping the `client|source.geo.location` fields as `object` instead of `geo_point`. See #10848 for more.
1 parent b3a1070 commit 6d76da8

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

packages/azure/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
- version: "1.15.1"
2+
changes:
3+
- description: Fix [client|source].geo.location ECS field mapping
4+
type: bugfix
5+
link: https://github.com/elastic/integrations/pull/11102
16
- version: "1.15.0"
27
changes:
38
- description: Add new section on Azure Functions hosting plans.
Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
- name: client.geo.location.lat
1+
- name: client.geo.location
22
external: ecs
3-
- name: client.geo.location.lon
4-
external: ecs
5-
- name: source.geo.location.lat
6-
external: ecs
7-
- name: source.geo.location.lon
3+
- name: source.geo.location
84
external: ecs

packages/azure/docs/graphactivitylogs.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,7 @@ Please refer to the following [document](https://www.elastic.co/guide/en/ecs/cur
257257
| azure.resource.provider | Resource type/namespace. | keyword |
258258
| azure.subscription_id | Azure subscription ID. | keyword |
259259
| azure.tenant_id | tenant ID. | keyword |
260-
| client.geo.location.lat | Longitude and latitude. | geo_point |
261-
| client.geo.location.lon | Longitude and latitude. | geo_point |
260+
| client.geo.location | Longitude and latitude. | geo_point |
262261
| cloud.image.id | Image ID for the cloud instance. | keyword |
263262
| data_stream.dataset | Data stream dataset name. | constant_keyword |
264263
| data_stream.namespace | Data stream namespace. | constant_keyword |
@@ -268,6 +267,5 @@ Please refer to the following [document](https://www.elastic.co/guide/en/ecs/cur
268267
| host.containerized | If the host is a container. | boolean |
269268
| host.os.build | OS build information. | keyword |
270269
| host.os.codename | OS codename, if any. | keyword |
271-
| source.geo.location.lat | Longitude and latitude. | geo_point |
272-
| source.geo.location.lon | Longitude and latitude. | geo_point |
270+
| source.geo.location | Longitude and latitude. | geo_point |
273271

packages/azure/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: azure
22
title: Azure Logs
3-
version: 1.15.0
3+
version: 1.15.1
44
description: This Elastic integration collects logs from Azure
55
type: integration
66
icons:

0 commit comments

Comments
 (0)