TinyInsights is a library for tracking and a website for showing insights for your .NET MAUI app. Data will be saved in Application Insights. The website will help you to show the data in a more mobile app-friendly user interface.
You can try out the website here, https://mauiinsights.z6.web.core.windows.net/. No data is saved in the application.
Install the latest version of the package TinyInsights.Maui.AppInsights to your app project.
dotnet add package TinyInsights.Maui.AppInsights
In MauiProgram.cs, you should call UseTinyInsights like below.
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
})
.UseTinyInsights("{YOUR_CONNECTION_STRING}")
If you want, you can configure what type of events you want to track.
builder.UseMauiInsights("{YOUR_CONNECTION_STRING}",
(provider) =>
{
provider.IsTrackDependencyEnabled = true;
provider.IsTrackEventsEnabled = true;
provider.IsTrackErrorsEnabled = true;
provider.IsTrackPageViewsEnabled = true;
provider.IsTrackCrashesEnabled = true;
});
Crashes will be tracked automatically if it is enabled, other events you need to track manually.
To get access to the insights provider that you should use to track events, you should inject the IInsights interface.
private readonly IInsights insights;
public MainViewModel(IInsights insights)
{
this.insights = insights;
}
await insights.TrackPageViewAsync("MainView");
await insights.TrackEventAsync("AddButtonTapped");
catch (Exception ex)
{
await insights.TrackErrorAsync(ex);
}
For all the track methods, you can pass additional data by passing a Dictionary.
var data = new Dictionary<string, string>()
{
{"key", "value"},
{"key2", "value2"}
};
await insights.TrackPageViewAsync("MainView", data);
To automatically track HTTP calls you can use the InsightsMessageHandler together with the HttpClient.
private readonly InsightsMessageHandler insightsMessageHandler;
private readonly HttpClient client;
public MainViewModel(InsightsMessageHandler insightsMessageHandler)
{
this.insightsMessageHandler = insightsMessageHandler;
client = new HttpClient(insightsMessageHandler);
}
You can also create a DependencyTracker and use it to track dependencies.
using var dependency = insights.CreateDependencyTracker("BLOB",blobContainer.Uri.Host, url);
await blob.DownloadToAsync(stream);
or if you don't want to wait for the scope of the using.
var dependency = insights.CreateDependencyTracker("BLOB",blobContainer.Uri.Host, url);
await blob.DownloadToAsync(stream);
dependency.Dispose();
By default a random UserId is generated for each user. If you want to set a specific UserId you can do it like below.
ìnsights.OverrideAnonymousUserId("MyOwnUserId");
To generate a new random UserId you can call the method below.
ìnsights.GenerateNewAnonymousUserId();
If you want, you can also use TinyInsights with the ILogger interface.
In MauiProgram.cs, you should call UseTinyInsights like below.
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
})
.UseTinyInsightsAsILogger("{YOUR_CONNECTION_STRING}")
If you want, you can configure what type of events you want to track.
builder.UseTinyInsightsAsILogger("{YOUR_CONNECTION_STRING}",
(provider) =>
{
provider.IsTrackDependencyEnabled = true;
provider.IsTrackEventsEnabled = true;
provider.IsTrackErrorsEnabled = true;
provider.IsTrackPageViewsEnabled = true;
provider.IsTrackCrashesEnabled = true;
});
To use ILogger, just inject the interface in the class you want to use it in.
private readonly ILogger logger;
public class MainViewModel(ILogger logger)
{
this.logger = logger;
}
logger.LogTrace("MainView");
logger.LogInformation("EventButton");
logger.LogError(ex, ex.Message);
LogDebug will only work with the debugger attached because it is using Debug.WriteLine.
logger.LogDebug("Debug message");