prometheus-net.Contrib.MongoDb
0.5.0
See the version list below for details.
dotnet add package prometheus-net.Contrib.MongoDb --version 0.5.0
NuGet\Install-Package prometheus-net.Contrib.MongoDb -Version 0.5.0
<PackageReference Include="prometheus-net.Contrib.MongoDb" Version="0.5.0" />
paket add prometheus-net.Contrib.MongoDb --version 0.5.0
#r "nuget: prometheus-net.Contrib.MongoDb, 0.5.0"
// Install prometheus-net.Contrib.MongoDb as a Cake Addin #addin nuget:?package=prometheus-net.Contrib.MongoDb&version=0.5.0 // Install prometheus-net.Contrib.MongoDb as a Cake Tool #tool nuget:?package=prometheus-net.Contrib.MongoDb&version=0.5.0
prometheus-net.Contrib.MongoDb
Overview
prometheus-net.Contrib.MongoDb
is a C# library that provides client-side Prometheus instrumentation for MongoDB operations (instrumenting MongoDB C# Driver)
It captures various metrics related to MongoDB commands, errors, and performance, and exports them to Prometheus for monitoring and alerting.
Note: This library is still in development and more metrics will be added
Metrics Exposed
Command Duration (mongodb_client_command_duration
)
Histogram metric that measures the duration of MongoDB commands in seconds.
- Labels:
command_type
,status
,target_collection
,target_db
Open Cursors Count (mongodb_client_open_cursors_count
)
Gauge metric that tracks the number of open cursors.
- Labels:
target_collection
,target_db
Open Cursors Duration (mongodb_client_open_cursors_duration
)
Histogram metric that tracks the number of open cursors.
- Labels:
target_collection
,target_db
Open Cursor Document Count (mongodb_client_cursor_document_count
)
Summary metric that measures the document count fetched by a cursor.
- Labels:
target_collection
,target_db
Command Errors (mongodb_client_command_errors_total
)
Counter metric that counts the total number of MongoDB command errors.
- Labels:
command_type
,error_type
,target_collection
,target_db
Command Size (mongodb_command_response_size
)
Histogram metric that measures the size of MongoDB commands in bytes.
- Labels:
command_type
,target_collection
,target_db
Connection Creation Rate (mongodb_client_connection_creation_rate
)
Counter metric that captures the rate at which new MongoDB connections are created.
- Labels:
cluster_id
,end_point
Connection Duration (mongodb_client_connection_duration
)
Histogram metric that measures the time it takes to close a MongoDB connection, in seconds.
- Labels:
cluster_id
,end_point
Query Filter Size (mongodb_client_query_filter_size
)
Histogram metric that tracks the size of MongoDB query filters.
- Labels:
query_type
,target_collection
,target_db
Note: This metric tries to capture the complexity of the filters being used in MongoDB queries. It recursively counts the number of clauses and items in the filters, which could be a useful metric for understanding query performance. Note that the performance in this case also depends on any indexes or their lack in the collection.
Usage Example
Here's a simple example to instrument your MongoDB client:
using MongoDB.Driver;
var settings = MongoClientSettings.FromConnectionString("your_connection_string_here");
settings = settings.InstrumentForPrometheus();
var client = new MongoClient(settings);
Installation
This library is available as a NuGet package. To install, run:
Install-Package prometheus-net.Contrib.MongoDb
Contributing
If you'd like to contribute, please fork the repository and use a feature branch. Pull requests are warmly welcome.
License
This project is licensed under the MIT License - see the LICENSE file for details.
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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
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. |
-
.NETStandard 2.1
- MongoDB.Driver (>= 2.19.0)
- prometheus-net (>= 8.0.1)
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 |
---|---|---|
3.0.9 | 220 | 9/29/2023 |
3.0.2 | 129 | 9/28/2023 |
3.0.0 | 131 | 9/28/2023 |
2.0.6 | 135 | 9/28/2023 |
2.0.4 | 132 | 9/27/2023 |
2.0.2 | 133 | 9/27/2023 |
2.0.0 | 138 | 9/27/2023 |
1.0.0 | 138 | 9/27/2023 |
0.8.6 | 151 | 9/27/2023 |
0.8.4 | 123 | 9/27/2023 |
0.8.2 | 145 | 9/26/2023 |
0.8.0 | 106 | 9/26/2023 |
0.7.10 | 155 | 9/26/2023 |
0.7.8 | 122 | 9/26/2023 |
0.7.6 | 140 | 9/26/2023 |
0.7.4 | 126 | 9/26/2023 |
0.7.2 | 125 | 9/26/2023 |
0.7.0 | 121 | 9/26/2023 |
0.6.0 | 136 | 9/25/2023 |
0.5.5 | 138 | 9/25/2023 |
0.5.0 | 134 | 9/24/2023 |
0.3.1 | 130 | 9/23/2023 |
0.2.6 | 131 | 9/23/2023 |
Changes since version v0.2.6.0
:wrench: Chores:
- [`7fd9a5f`](https://github.com/myarichuk/prometheus-net.Contrib.MongoDb/commit/7fd9a5f4acd96d5b83ebce291ecadd168cad7bf8) - minor adjustment to readme file (proper nuget package Id) *(commit by [@myarichuk](https://github.com/myarichuk))*