0

I'm trying to enable diagnostics for Azure Redis Cache. Both redis and storage account are in same region (Us-West).

According to this article it should work.

After selecting storage account I am getting below generic error. Any idea how to investigate further or where to report?

enter image description here

cement
  • 2,905
  • 1
  • 23
  • 20

1 Answers1

2

The storage account you are trying to map should support table. You can check the error by visiting to Redis cache.

Operations >> Events chart >> microsoft.insights/diagnosticSettings/write

statusCode:BadRequest serviceRequestId:00000000-0000-0000-0000-000000000000 statusMessage:{"Code":"BadRequest","Message":"The storage account 'xxxxstorage' of type 'Standard_ZRS' doesn't support table service."}
Suresh SD
  • 36
  • 3
  • Here is how I got to same error details (on portal.azure.com): select your redis service -> settings -> audit log -> select error. According to https://azure.microsoft.com/en-us/documentation/articles/storage-introduction/#introducing-the-azure-storage-services ZRS does not support table storage so I had to create new LRS storage account. After that tried to enable diagnostics and it worked. – cement May 02 '16 at 20:52