Tharga.MongoDB.Blazor 2.10.11

dotnet add package Tharga.MongoDB.Blazor --version 2.10.11
                    
NuGet\Install-Package Tharga.MongoDB.Blazor -Version 2.10.11
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tharga.MongoDB.Blazor" Version="2.10.11" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Tharga.MongoDB.Blazor" Version="2.10.11" />
                    
Directory.Packages.props
<PackageReference Include="Tharga.MongoDB.Blazor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Tharga.MongoDB.Blazor --version 2.10.11
                    
#r "nuget: Tharga.MongoDB.Blazor, 2.10.11"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Tharga.MongoDB.Blazor@2.10.11
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Tharga.MongoDB.Blazor&version=2.10.11
                    
Install as a Cake Addin
#tool nuget:?package=Tharga.MongoDB.Blazor&version=2.10.11
                    
Install as a Cake Tool

Tharga.MongoDB.Blazor

Drop-in Blazor admin UI for Tharga.MongoDB. Renders the live monitoring data already captured by the core package — collections, calls, indexes, queue metrics, connected clients — as Razor components you can host on any admin page in your app.

Install

dotnet add package Tharga.MongoDB.Blazor

The components depend on the data flowing through Tharga.MongoDB's IDatabaseMonitor, so you need that package registered as well:

builder.AddMongoDB();

Then drop the components onto a Blazor page — they auto-discover the monitor via DI:

@page "/database"

<RadzenCard Style="margin-bottom: 6px;">
    <Tharga.MongoDB.Blazor.MonitorToolbar />
</RadzenCard>

<RadzenTabs>
    <Tabs>
        <RadzenTabsItem Text="Collections">
            <Tharga.MongoDB.Blazor.CollectionView />
        </RadzenTabsItem>
        <RadzenTabsItem Text="Calls">
            <Tharga.MongoDB.Blazor.CallView />
        </RadzenTabsItem>
        <RadzenTabsItem Text="Clients">
            <Tharga.MongoDB.Blazor.ClientsView />
        </RadzenTabsItem>
    </Tabs>
</RadzenTabs>

Components

  • <MonitorToolbar /> — top-bar controls: configuration switcher, reset calls, reset cache.
  • <CollectionView /> — table of every registered collection with status, document count, indexes, and per-collection drill-down dialog.
  • <CallView /> — every database call captured by the monitor, with filter, sort, explain plan, and timing.
  • <ClientsView /> — connected MongoDB clients (driver-side). Useful with Tharga.MongoDB.Monitor.Server when aggregating multiple agents.
  • <QueueView /> — execute-limiter queue depth and throughput.
  • <ConfigurationsSelector /> — switch between configured ConnectionStrings entries when an app talks to multiple clusters.

The package is built on Radzen.Blazor — the same components and theming as the rest of your Radzen app.

Documentation

Full docs and configuration reference: github.com/Tharga/MongoDB.

GitHub repo

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.10.11 53 5/12/2026
2.10.10 119 5/10/2026
2.10.9 98 5/5/2026
2.10.8 92 5/5/2026 2.10.8 is deprecated because it has critical bugs.
2.10.7 92 5/5/2026 2.10.7 is deprecated because it has critical bugs.
2.10.6 99 5/3/2026
2.10.5 123 4/29/2026
2.10.4 104 4/20/2026
2.10.3 139 4/16/2026
2.10.2 123 4/8/2026
2.10.1 114 4/5/2026
2.10.0 120 4/3/2026
2.9.1 188 3/28/2026
2.9.0 105 3/25/2026
2.8.5-pre.20 81 3/11/2026
2.8.5-pre.19 81 3/6/2026
2.8.5-pre.18 56 3/5/2026
2.8.5-pre.16 76 3/1/2026
2.8.2 101 3/24/2026
2.8.2-pre.1 55 3/24/2026
Loading failed