Azure Functions: Maintaining but minimizing Application Insights output

Microsoft has really been pushing Application Insights in the Azure Functions space, to the point where you know can’t see individual function invocations without having Application Insights enabled. In cases where we’re already logging to another logging service (e.g. Splunk), the config below has been useful to maintain the invocation output, but otherwise minimize Application Insights transaction volume, thereby minimizing cost.

{
	"version": "2.0",
	"logging": {
		"logLevel": {
			"default": "Warning",
			"Function": "Warning",
			"Host.Aggregator": "Warning",
			"Host.Results": "Information",
			"Microsoft": "Warning"
		},
		"applicationInsights": {
			"enableLiveMetrics": false,
			"enableDependencyTracking": false,
			"enablePerformanceCountersCollection": false,
			"samplingSettings": {
				"isEnabled": true,
				"excludedTypes": "Request"
			},
			"enableLiveMetricsFilters": true
		}
	}
}


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *