Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/okta/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "3.8.0"
changes:
- description: Add text search to `okta.actor.display_name`, `okta.client.user_agent.raw_user_agent` and `okta.debug_context.debug_data.url`.
type: enhancement
link: https://github.com/elastic/integrations/pull/13890
- version: "3.7.0"
changes:
- description: Retain Okta Domain value in `host.name` where possible.
Expand Down
12 changes: 12 additions & 0 deletions packages/okta/data_stream/system/fields/fields.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
type: keyword
description: |
Display name of the actor.
multi_fields:
- name: text
type: match_only_text
default_field: false
- name: okta.client
type: group
fields:
Expand All @@ -51,6 +55,10 @@
type: keyword
description: |
The raw informaton of the user agent.
multi_fields:
- name: text
type: match_only_text
default_field: false
- name: os
type: keyword
description: |
Expand Down Expand Up @@ -227,6 +235,10 @@
type: keyword
description: |
The URL.
multi_fields:
- name: text
type: match_only_text
default_field: false
- name: debug_data.flattened
type: flattened
description: |
Expand Down
3 changes: 3 additions & 0 deletions packages/okta/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ An example event for `system` looks as following:
| log.offset | Offset of the entry in the log file. | long |
| okta.actor.alternate_id | Alternate identifier of the actor. | keyword |
| okta.actor.display_name | Display name of the actor. | keyword |
| okta.actor.display_name.text | Multi-field of `okta.actor.display_name`. | match_only_text |
| okta.actor.id | Identifier of the actor. | keyword |
| okta.actor.type | Type of the actor. | keyword |
| 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 |
Expand All @@ -262,6 +263,7 @@ An example event for `system` looks as following:
| okta.client.user_agent.browser | The browser informaton of the client. | keyword |
| okta.client.user_agent.os | The OS informaton. | keyword |
| okta.client.user_agent.raw_user_agent | The raw informaton of the user agent. | keyword |
| okta.client.user_agent.raw_user_agent.text | Multi-field of `okta.client.user_agent.raw_user_agent`. | match_only_text |
| okta.client.zone | The zone information of the client. | keyword |
| okta.debug_context.debug_data | | object |
| okta.debug_context.debug_data.authnRequestId | The authorization request ID. | keyword |
Expand Down Expand Up @@ -312,6 +314,7 @@ An example event for `system` looks as following:
| okta.debug_context.debug_data.threat_suspected | Threat suspected. | keyword |
| okta.debug_context.debug_data.tunnels | | object |
| okta.debug_context.debug_data.url | The URL. | keyword |
| okta.debug_context.debug_data.url.text | Multi-field of `okta.debug_context.debug_data.url`. | match_only_text |
| okta.device.device_integrator | | flattened |
| 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 |
| okta.device.id | Identifier of the device. | keyword |
Expand Down
2 changes: 1 addition & 1 deletion packages/okta/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: okta
title: Okta
version: "3.7.0"
version: "3.8.0"
description: Collect and parse event logs from Okta API with Elastic Agent.
type: integration
format_version: "3.2.3"
Expand Down