AzureHttpLoggerRepository Constructor |
Constructor
Namespace: AccidentalFish.ApplicationSupport.Owin.AzureAssembly: AccidentalFish.ApplicationSupport.Owin.Azure (in AccidentalFish.ApplicationSupport.Owin.Azure.dll) Version: 0.9.0.0 (0.9.0.0)
Syntaxpublic AzureHttpLoggerRepository(
string storageConnectionString,
string azureTablePrefix,
LogByDateGranularityEnum granularity
)
Public Sub New (
storageConnectionString As String,
azureTablePrefix As String,
granularity As LogByDateGranularityEnum
)
Parameters
- storageConnectionString
- Type: SystemString
Storage account connection string - azureTablePrefix
- Type: SystemString
The repository stores data in two tables called httprequestbycorrelationid and httprequestbydatedescending, if this parameter is not null and not whitespace then it is used as a prefix for those table names. - granularity
- Type: AccidentalFish.ApplicationSupport.Owin.AzureLogByDateGranularityEnum
The level of granularity for data in the partition. On a low traffic site hourly or even daily can be useful, whereas busy sites minute or second are more useful.
See Also