Craig
Craig

Reputation: 36826

App Fabric Cache Monitor

With the App Fabric Cache there are limits to the number of transactions per hour. Is there any way to monitor this? Firstly for testing, to find out how much cache we will need, and primarily so we don't hit the limit and have the site go down because we can't access the cache any more.

Upvotes: 1

Views: 465

Answers (2)

knightpfhor
knightpfhor

Reputation: 9384

At the moment there is nothing in the management portal or in any in of the APIs that you can use to determine how many transactions you've used against the cache in any given hour (or how many connections you're using, the other limiting factor when using app fabric cache).

If this is particularly important you might try building a wrapper around cache access and use a scalable counter which increments every time you perform a transaction.

Upvotes: 1

Didier Caron
Didier Caron

Reputation: 570

yes, you can use the Azure Application Manager as explained in this blogpost: http://blogs.msdn.com/b/appfabric/archive/2011/06/20/introducing-windows-azure-appfabric-applications.aspx

there are some opensource tools available on codeplex as well: http://www.codeplex.com/site/search?query=azure%20monitor&ac=3

i usually stick to the azure provided tools..

Upvotes: 1

Related Questions