在 Azure 门户中,我创建了一个在创建 .zip 文件时触发的 Blob 存储事件。该事件的端点是一个服务总线主题。在本主题中,我有一个带有默认规则(过滤器 1=1)的订阅。
我想创建规则,它只会传递来自这个事件的消息。通常我会用 Label 属性做一个相关过滤器,但不幸的是,在来自 blob 存储的消息中,这个 Label 属性是空的。
我试过了:
SQL过滤器:
Subject like "%containers/my-test-container/%"
钥匙 | 价值 |
---|---|
事件类型 | Microsoft.Storage.BlobCreated |
但它没有用。
我得到的信息:
消息文本:
{
"topic": ***,
"subject": "/blobServices/default/containers/my-test-subscription/blobs/test.zip",
"eventType": "Microsoft.Storage.BlobCreated",
"id": ***,
"data": {
"api": "PutBlob",
"clientRequestId": ***,
"requestId": ***,
"eTag": "0x8D8EDDB53852C51",
"contentType": "application/x-zip-compressed",
"contentLength": 1118884,
"blobType": "BlockBlob",
"url": "***.blob.core.windows.net/my-test-subscription/test.zip",
"sequencer": "000000000000000000000000000008CE0000000006ddc175",
"storageDiagnostics": {
"batchId": ***
}
},
"dataVersion": "",
"metadataVersion": "1",
"eventTime": "2021-03-23T09:09:12.7782481Z"
}
难道我做错了什么?是否可以设置 blob 消息的 Label 属性?