talker_azure_application_insights_observer 0.0.4 talker_azure_application_insights_observer: ^0.0.4 copied to clipboard
Talker Observer to send log data to Azure Application Insights.
example/talker_azure_application_insights_observer_example.dart
import 'package:talker/talker.dart';
import 'package:talker_azure_application_insights_observer/talker_azure_application_insights_observer.dart';
void main() {
final azureInsightsObserver = TalkerAzureApplicationInsightsObserver(
connectionString: '<APPLICATION_INSIGHTS_CONNECTION_STRING>');
final talker = Talker(observer: azureInsightsObserver);
talker.info('Info message sent via Talker to Azure Application Insights');
}