Akka.Persistence.MongoDb.Hosting
1.5.53
Prefix Reserved
See the version list below for details.
dotnet add package Akka.Persistence.MongoDb.Hosting --version 1.5.53
NuGet\Install-Package Akka.Persistence.MongoDb.Hosting -Version 1.5.53
<PackageReference Include="Akka.Persistence.MongoDb.Hosting" Version="1.5.53" />
<PackageVersion Include="Akka.Persistence.MongoDb.Hosting" Version="1.5.53" />
<PackageReference Include="Akka.Persistence.MongoDb.Hosting" />
paket add Akka.Persistence.MongoDb.Hosting --version 1.5.53
#r "nuget: Akka.Persistence.MongoDb.Hosting, 1.5.53"
#:package Akka.Persistence.MongoDb.Hosting@1.5.53
#addin nuget:?package=Akka.Persistence.MongoDb.Hosting&version=1.5.53
#tool nuget:?package=Akka.Persistence.MongoDb.Hosting&version=1.5.53
Akka Persistence journal and snapshot store backed by MongoDB database.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. 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 was computed. 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. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- Akka.Persistence.Hosting (>= 1.5.53)
- Akka.Persistence.MongoDb (>= 1.5.53)
-
.NETStandard 2.1
- Akka.Persistence.Hosting (>= 1.5.53)
- Akka.Persistence.MongoDb (>= 1.5.53)
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 |
|---|---|---|
| 1.5.55.1 | 322 | 10/29/2025 |
| 1.5.55 | 178 | 10/27/2025 |
| 1.5.53 | 187 | 10/15/2025 |
| 1.5.42 | 3,513 | 5/22/2025 |
| 1.5.41-beta1 | 134 | 4/4/2025 |
| 1.5.40 | 588 | 3/27/2025 |
| 1.5.37 | 1,554 | 1/24/2025 |
| 1.5.32 | 685 | 12/23/2024 |
| 1.5.32-beta1 | 115 | 12/6/2024 |
| 1.5.31 | 512 | 12/4/2024 |
| 1.5.30 | 3,033 | 10/3/2024 |
| 1.5.29 | 194 | 10/1/2024 |
| 1.5.28 | 5,395 | 9/11/2024 |
| 1.5.26 | 4,067 | 7/15/2024 |
| 1.5.12.1 | 3,410 | 9/15/2023 |
| 1.5.12 | 504 | 8/10/2023 |
| 1.5.0.2 | 226 | 9/18/2023 |
| 1.5.0.1 | 239 | 9/15/2023 |
* [Bump Akka.NET to 1.5.53](https://github.com/akkadotnet/akka.net/releases/tag/1.5.53)
* [Bump Akka.Persistence.Hosting to 1.5.53](https://github.com/akkadotnet/Akka.Hosting/releases/tag/1.5.53)
* [Implement hosting healthcheck](https://github.com/akkadotnet/Akka.Persistence.MongoDB/pull/421)
**New Feature: Health Check Support for Akka.Persistence.MongoDb.Hosting**
This release adds built-in health check support for MongoDB journal and snapshot stores, integrated with [Microsoft.Extensions.Diagnostics.HealthChecks](https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/health-checks). This enables monitoring and observability for your MongoDB persistence plugins.
Key capabilities:
* Automatic health reporting for MongoDB journal and snapshot stores
* Integration with ASP.NET Core health check endpoints
* Configurable health status reporting (Healthy, Degraded, Unhealthy)
* Tagged health checks for easy filtering (`akka`, `persistence`, `mongodb`)
Example usage:
```csharp
services.AddHealthChecks(); // Add health check service
services.AddAkka("MyActorSystem", (builder, provider) =>
{
builder
.WithMongoDbPersistence(
connectionString: "mongodb://localhost:27017/akka",
journalBuilder: journal => journal.WithHealthCheck(HealthStatus.Degraded),
snapshotBuilder: snapshot => snapshot.WithHealthCheck(HealthStatus.Degraded));
});
```
For complete documentation, see the [Akka.Persistence.MongoDb.Hosting README](src/Akka.Persistence.MongoDb.Hosting/README.md) and the main [README](README.md#health-check-support).