You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change property name of log-type to dab-identifier for Azure Log Analytics (#2805)
## Why make this change?
- This change closes issue #2804
The property `log-type` had a change in function, which also means that
there needs to be a change in name.
## What is this change?
Only changes the name of the property from `log-type` to
`dab-identifier` since the changes in logic related to the changes in
function were already implemented beforehand.
## How was this tested?
- [ ] Integration Tests
- [ ] Unit Tests
- [X] Manual Tests
Tested if the new property is serialized and deserialized correctly and
if `configure` command works as expected with new property, while
leaving no traces of the old property.
## Sample Request(s)
--runtime.telemetry.azure-log-analytics.dab-identifier
[Option("runtime.telemetry.azure-log-analytics.log-type",Required=false,HelpText="Configure Log Type for Azure Log Analytics to find table to send telemetry data. Default: DABLogs")]
191
-
publicstring?AzureLogAnalyticsLogType{get;}
190
+
[Option("runtime.telemetry.azure-log-analytics.dab-identifier",Required=false,HelpText="Configure DAB Identifier to allow user to differentiate which logs come from DAB in Azure Log Analytics . Default: DABLogs")]
191
+
publicstring?AzureLogAnalyticsDabIdentifier{get;}
192
192
193
193
[Option("runtime.telemetry.azure-log-analytics.flush-interval-seconds",Required=false,HelpText="Configure Flush Interval in seconds for Azure Log Analytics to specify the time interval to send the telemetry data. Default: 5")]
_logger.LogInformation($"Updated configuration with runtime.telemetry.azure-log-analytics.dab-identifier as '{options.AzureLogAnalyticsDabIdentifier}'");
0 commit comments