Skip to content

Commit 98943bb

Browse files
committed
okta: add text search multifields to potentially useful fields
* okta.actor.display_name * okta.client.user_agent.raw_user_agent * okta.debug_context.debug_data.url
1 parent c0c77f7 commit 98943bb

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

packages/okta/changelog.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# newer versions go on top
2+
- version: "3.8.0"
3+
changes:
4+
- description: Add text search to `okta.actor.display_name`, `okta.client.user_agent.raw_user_agent` and `okta.debug_context.debug_data.url`.
5+
type: enhancement
6+
link: https://github.com/elastic/integrations/pull/13890
27
- version: "3.7.0"
38
changes:
49
- description: Retain Okta Domain value in `host.name` where possible.

packages/okta/data_stream/system/fields/fields.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
type: keyword
3838
description: |
3939
Display name of the actor.
40+
multi_fields:
41+
- name: text
42+
type: match_only_text
43+
default_field: false
4044
- name: okta.client
4145
type: group
4246
fields:
@@ -51,6 +55,10 @@
5155
type: keyword
5256
description: |
5357
The raw informaton of the user agent.
58+
multi_fields:
59+
- name: text
60+
type: match_only_text
61+
default_field: false
5462
- name: os
5563
type: keyword
5664
description: |
@@ -227,6 +235,10 @@
227235
type: keyword
228236
description: |
229237
The URL.
238+
multi_fields:
239+
- name: text
240+
type: match_only_text
241+
default_field: false
230242
- name: debug_data.flattened
231243
type: flattened
232244
description: |

packages/okta/docs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ An example event for `system` looks as following:
246246
| log.offset | Offset of the entry in the log file. | long |
247247
| okta.actor.alternate_id | Alternate identifier of the actor. | keyword |
248248
| okta.actor.display_name | Display name of the actor. | keyword |
249+
| okta.actor.display_name.text | Multi-field of `okta.actor.display_name`. | match_only_text |
249250
| okta.actor.id | Identifier of the actor. | keyword |
250251
| okta.actor.type | Type of the actor. | keyword |
251252
| okta.authentication_context.authentication_provider | The information about the authentication provider. Must be one of OKTA_AUTHENTICATION_PROVIDER, ACTIVE_DIRECTORY, LDAP, FEDERATION, SOCIAL, FACTOR_PROVIDER. | keyword |
@@ -262,6 +263,7 @@ An example event for `system` looks as following:
262263
| okta.client.user_agent.browser | The browser informaton of the client. | keyword |
263264
| okta.client.user_agent.os | The OS informaton. | keyword |
264265
| okta.client.user_agent.raw_user_agent | The raw informaton of the user agent. | keyword |
266+
| okta.client.user_agent.raw_user_agent.text | Multi-field of `okta.client.user_agent.raw_user_agent`. | match_only_text |
265267
| okta.client.zone | The zone information of the client. | keyword |
266268
| okta.debug_context.debug_data | | object |
267269
| okta.debug_context.debug_data.authnRequestId | The authorization request ID. | keyword |
@@ -312,6 +314,7 @@ An example event for `system` looks as following:
312314
| okta.debug_context.debug_data.threat_suspected | Threat suspected. | keyword |
313315
| okta.debug_context.debug_data.tunnels | | object |
314316
| okta.debug_context.debug_data.url | The URL. | keyword |
317+
| okta.debug_context.debug_data.url.text | Multi-field of `okta.debug_context.debug_data.url`. | match_only_text |
315318
| okta.device.device_integrator | | flattened |
316319
| okta.device.disk_encryption_type | The value of the device profile’s disk encryption type. One of "NONE", "FULL", "USER", "ALL_INTERNAL_VOLUMES" or "SYSTEM_VOLUME". | keyword |
317320
| okta.device.id | Identifier of the device. | keyword |

packages/okta/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: okta
22
title: Okta
3-
version: "3.7.0"
3+
version: "3.8.0"
44
description: Collect and parse event logs from Okta API with Elastic Agent.
55
type: integration
66
format_version: "3.2.3"

0 commit comments

Comments
 (0)