I'm trying to filter out my Azure Dead Letter Queue messages in order to find a specific element from the deadletterqueue.
I downloaded the tool from https://github.com/paolosalvatori/ServiceBusExplorer and make the connection between azure and the tool. I can see the Messages from my deadletterqueu here:
In the messages i have a json value with a partnerValue like this:
{
"requestId": "6B454A4E-F8CB-4801-8874-8E97B149640E",
"partnerValue": "114033",
"productName": "myProductName",
}
I try to use the filter like this:
I read the artcile from https://www.sharepointeurope.com/azure-service-bus-topic-filters/ and tried a lot of things that didnt work, i tried:
partnerValue like "517182"
partnerValue = "517182"
partnerValue like '517182'
partnerValue = '517182'
"partnerValue" like "517182"
But i dont work, i can't find the value (i'm sure that the value exist even if i do a basic exemple you productName" it dont work...)
Any idea ?
Below filter expression should return messages,
partnerValue = '517182'
Check whether you are able to get messages using filter condition for active messages.
Also check are you able to get messages using sys property.
Reference link1
Reference link2