From 403e0d665a03f693d513929c8fdd224ee7e940ab Mon Sep 17 00:00:00 2001 From: phoneben <3232963@gmail.com> Date: Mon, 16 Mar 2026 23:20:40 +0200 Subject: [PATCH] Add a note that name() matching is case-sensitive Add a note that name() matching is case-sensitive and point users to `asterisk -rx "manager show events"` to verify exact event name casing. A single character case mismatch (e.g. ParkedCallGiveUP vs ParkedCallGiveUp) silently drops events with no warning in the logs, which can be very difficult to diagnose. Resolves: #184 --- .../Asterisk-Manager-Interface-AMI/AMI-Event-Filtering.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Configuration/Interfaces/Asterisk-Manager-Interface-AMI/AMI-Event-Filtering.md b/docs/Configuration/Interfaces/Asterisk-Manager-Interface-AMI/AMI-Event-Filtering.md index c7829dc2d5..966b5773df 100644 --- a/docs/Configuration/Interfaces/Asterisk-Manager-Interface-AMI/AMI-Event-Filtering.md +++ b/docs/Configuration/Interfaces/Asterisk-Manager-Interface-AMI/AMI-Event-Filtering.md @@ -31,6 +31,7 @@ You can specify up to one of each criterion in any order, separated by commas: #### name() - Matches events with the exact event name specified - Uses efficient hash-based matching instead of regex +- **Event names are case-sensitive** - use `asterisk -rx "manager show events"` to verify exact casing - Example: `name(Newchannel)`, `name(Hangup)` #### header()