Skip to content

[cisco_ise] Fixed queue link error prefix parsing - #16115

Merged
kgeller merged 2 commits into
elastic:mainfrom
kgeller:cisco_ise_dissect_fix
Nov 25, 2025
Merged

[cisco_ise] Fixed queue link error prefix parsing#16115
kgeller merged 2 commits into
elastic:mainfrom
kgeller:cisco_ise_dissect_fix

Conversation

@kgeller

@kgeller kgeller commented Nov 25, 2025

Copy link
Copy Markdown
Member

Proposed commit message

Fix parsing of "Queue Link Error" alarm messages that include a prefix before the From keyword.

More context

Problem

The existing dissect pattern From %{source.address} To %{destination.address} failed to parse alarm messages with the format: Certificate Issue From <host> To <host> , while it worked for the simpler format:From <host> To <host>

Solution

Replaced the dissect processor with a grok processor using the pattern:
^(%{DATA} )?From %{DATA:source.address} To %{DATA:destination.address}$
The optional (%{DATA} )? group allows matching both message formats - with or without a prefix before "From".

Checklist

  • I have reviewed tips for building integrations and this pull request is aligned with them.
  • I have verified that all data streams collect metrics or logs.
  • I have added an entry to my package's changelog.yml file.
  • I have verified that Kibana version constraints are current according to guidelines.
  • I have verified that any added dashboard complies with Kibana's Dashboard good practices
@kgeller kgeller self-assigned this Nov 25, 2025
@kgeller
kgeller requested a review from a team as a code owner November 25, 2025 15:17
@kgeller kgeller added the bugfix Pull request that fixes a bug issue label Nov 25, 2025
@elastic-vault-github-plugin-prod

Copy link
Copy Markdown
Contributor

🚀 Benchmarks report

To see the full report comment with /test benchmark fullreport

@elasticmachine

Copy link
Copy Markdown

💚 Build Succeeded

cc @kgeller

@kgeller
kgeller merged commit d7c45f8 into elastic:main Nov 25, 2025
7 checks passed
@kgeller
kgeller deleted the cisco_ise_dissect_fix branch November 25, 2025 15:48
@elastic-vault-github-plugin-prod

Copy link
Copy Markdown
Contributor

Package cisco_ise - 1.30.2 containing this change is available at https://epr.elastic.co/package/cisco_ise/1.30.2/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bugfix Pull request that fixes a bug issue Integration:cisco_ise Cisco ISE

4 participants