This project provides a mechanism that allows streaming Azure logs from Azure Event Hub into Dynatrace Logs via Azure Function App. It supports both: Azure Resource Logs and Azure Activity Logs.
To avoid sending too much data to Dynatrace (DDU consumption) and be able to send only metrics from Azure, I've adapted the function to be able to only send metrics using the filter key 'only_metrics'.
The config is like :
filter.global.only_metrics=True/False
filter.resource_type.only_metrics.XXX=True/False
filter.resource_id.only_metrics.XXX=True/False
The implementation rely on the 'metricName' attribute found in the event log of Azure.
New filter added to allow to only send metrics.
To avoid sending too much data to Dynatrace (DDU consumption) and be able to send only metrics from Azure, I've adapted the function to be able to only send metrics using the filter key 'only_metrics'.
The config is like :
The implementation rely on the 'metricName' attribute found in the event log of Azure.
I hope it will help others