Majid Maskati

Results 21 comments of Majid Maskati

@ilmax in addition to expanded support for Service Bus, this will probably also unblock use of [Azure AD authentication for Application Insights](https://docs.microsoft.com/en-us/azure/azure-monitor/app/azure-ad-authentication): > Support for Azure AD in the Application...

> the guidance we were provided was to depend on Azure.Identity's implementation to provide caching @TimothyMothra my underatanding is that Azure.Identity does not currently implement caching, rather some credential providers...

Ok thanks for the update on token caching @TimothyMothra. It might be useful to document that when using AAD authentication you should limit logging of `Azure.Core` and `Azure.Identity` category logs...

Would this be resolved by a documentation update e.g. ”when using Application Insights with AAD authentication it is recommended to provide a TokenCredential implementing caching. For ManagedIdentityCredential this can be...

My understanding is that `AACAudit` is for auditing configuration updates, while `AACHttpRequest` is a log of all inbound requests including configuration reads. Typically service request logs of Azure AD (Microsoft...

@zhenlan please also discuss with other product teams that include identity in request logs which might help in navigating privacy requirements. Some examples: - Azure Storage Blob request logs in...

Key Vault and Log Analytics include details of read operations in their audits while AAC doesn’t. If you want to understand who has read specific AAC entries you cannot at...

@microsoft-saya auditing, including read audits, are most relevant in production environments.

Workaround is to set the environment variable [APPSETTING_WEBSITE_SITE_NAME](https://github.com/Azure/msrestazure-for-python/blob/8849f398b6ebd4607de63c2f5d1318f44ec1d822/msrestazure/azure_active_directory.py#L552-L554) to any value, which will make the CLI interpret itself as running under App Service, reverting to [App Service semantics](https://github.com/Azure/msrestazure-for-python/blob/8849f398b6ebd4607de63c2f5d1318f44ec1d822/msrestazure/azure_active_directory.py#L495). ``` export...

I suggest just working around this by overriding the logging infrastructure to log to a null logger. ```csharp public class AzureSignalRDependencyResolver : IDependencyResolver { private readonly IDependencyResolver _resolver; public AzureSignalRDependencyResolver(IDependencyResolver...