Skip to content

Instantly share code, notes, and snippets.

@sdurandeu
Last active August 6, 2019 16:37
Show Gist options
  • Select an option

  • Save sdurandeu/70f2cd90c4416edb8757b20fba51e8ce to your computer and use it in GitHub Desktop.

Select an option

Save sdurandeu/70f2cd90c4416edb8757b20fba51e8ce to your computer and use it in GitHub Desktop.
Useful Azure Info

General

Traffic Manager

App Service

Application Insights

  • Adaptive Sampling (use itemCount): https://docs.microsoft.com/en-us/azure/azure-monitor/app/sampling
    • Be careful because it does not take into consideration the duration of the request, so it can hide successul long running requests
    • You can disable adaptive sampling like this .ConfigureTelemetryModule<DependencyTrackingTelemetryModule>((req, o) => o.EnableAdaptiveSampling = false) in a .NET Core app
    • In .NET Framework: To switch off adaptive sampling, remove the AdaptiveSamplingTelemetryProcessor node(s) from applicationinsights-config.

CosmosDB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment