EasilyNET.Mongo.ConsoleDebug
3.24.1216.116
dotnet add package EasilyNET.Mongo.ConsoleDebug --version 3.24.1216.116
NuGet\Install-Package EasilyNET.Mongo.ConsoleDebug -Version 3.24.1216.116
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="EasilyNET.Mongo.ConsoleDebug" Version="3.24.1216.116" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasilyNET.Mongo.ConsoleDebug --version 3.24.1216.116
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasilyNET.Mongo.ConsoleDebug, 3.24.1216.116"
#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.
// Install EasilyNET.Mongo.ConsoleDebug as a Cake Addin #addin nuget:?package=EasilyNET.Mongo.ConsoleDebug&version=3.24.1216.116 // Install EasilyNET.Mongo.ConsoleDebug as a Cake Tool #tool nuget:?package=EasilyNET.Mongo.ConsoleDebug&version=3.24.1216.116
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EasilyNET.Mongo.ConsoleDebug
常使用 EF 的小伙伴就应该能够知道,可以让 EF 生产的 SQL 语句输出到控制台,在开发的时候非常方便调试.<br/> 而 MongoDB 却没有这样的功能,所以产生了这个库,虽然不完美,但是能够解决一些开发过程中不方便排查问题的情况.
- 最终效果类似如下:
╭───────────────────────────────Command─────────────────────────╮╭──────────────────Calendar──────────────────╮
│ { ││ 2023 August │
│ "insert" : "mongo.test", ││ ┌─────┬─────┬─────┬─────┬─────┬─────┬────┐ │
│ "ordered" : true, ││ │ Sun │ Mon │ Tue │ Wed │ Thu │ Fri │ S… │ │
│ "$db" : "test1", ││ ├─────┼─────┼─────┼─────┼─────┼─────┼────┤ │
│ "lsid" : { ││ │ │ │ 1 │ 2 │ 3 │ 4 │ 5 │ │
│ "id" : CSUUID("f12dd90d-2f58-4655-9bf2-cbce2d9bd2c4") ││ │ 6 │ 7 │ 8 │ 9 │ 10 │ 11 │ 12 │ │
│ }, ││ │ 13 │ 14 │ 15 │ 16 │ 17 │ 18 │ 19 │ │
│ "documents" : [{ ││ │ 20 │ 21 │ 22 │ 23* │ 24 │ 25 │ 26 │ │
│ "_id" : ObjectId("64e57f266a1a63e69c52b9cb"), ││ │ 27 │ 28 │ 29 │ 30 │ 31 │ │ │ │
│ "dateTime" : ISODate("2023-08-23T03:38:14.121Z"), ││ │ │ │ │ │ │ │ │ │
│ "timeSpan" : "00:00:50", ││ └─────┴─────┴─────┴─────┴─────┴─────┴────┘ │
│ "dateOnly" : "2023-08-23", │╰────────────────────────────────────────────╯
│ "timeOnly" : "11:38:14", │╭────────────────────Info────────────────────╮
│ "nullableDateOnly" : "2023-08-23", ││ { │
│ "nullableTimeOnly" : null ││ "RequestId": 86, │
│ }] ││ "Timestamp": "2023-08-23 03:38:14", │
│ } ││ "Method": "insert", │
│ ││ "DatabaseName": "test1", │
│ ││ "CollectionName": "mongo.test", │
│ ││ "ConnectionInfo": { │
│ ││ "ClusterId": 1, │
│ ││ "EndPoint": "127.0.0.1:27018" │
│ ││ } │
│ ││ } │
│ │╰────────────────────────────────────────────╯
│ │╭───────────────Request Status───────────────╮
│ ││ ┌───────────┬────────────────┬───────────┐ │
│ ││ │ RequestId │ Time │ Status │ │
│ ││ ├───────────┼────────────────┼───────────┤ │
│ ││ │ 86 │ 11:38:14.12640 │ Succeeded │ │
│ ││ └───────────┴────────────────┴───────────┘ │
│ │╰────────────────────────────────────────────╯
│ │╭───────────────────NiuNiu───────────────────╮
│ ││ -------------------------------------- │
│ ││ / Only two things are infinite, \ │
│ ││ \ the universe and human stupidity. / │
│ ││ -------------------------------------- │
│ ││ ^__^ O ^__^ │
│ ││ _______/(oo) o (oo)\_______ │
│ ││ /\/( /(__) (__)\ )\/\ │
│ ││ ||w----|| ||----w|| │
│ ││ || || || || │
│ ││ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ │
╰───────────────────────────────────────────────────────────────╯╰────────────────────────────────────────────╯
使用方法
- 使用默认值配置
var clientSettings = MongoClientSettings.FromUrl(mongoUrl);
clientSettings.ClusterConfigurator = cb => cb.Subscribe(new ActivityEventConsoleDebugSubscriber());
var mongoClient = new MongoClient(clientSettings);
- 使用集合名称进行过滤
var clientSettings = MongoClientSettings.FromUrl(mongoUrl);
// 定义需要输出的集合
HashSet<string> CommandsWithCollectionName = new()
{
"mongo.test"
};
var options = new InstrumentationOptions()
{
Enable = true,
ShouldStartCollection = coll => CommandsWithCollectionName.Contains(coll)
};
clientSettings.ClusterConfigurator = cb => cb.Subscribe(new ActivityEventConsoleDebugSubscriber(options));
var mongoClient = new MongoClient(clientSettings);
- 添加 MongoDB 诊断信息输出到 OpenTelemetry
// 在上面的基础上,添加如下代码
clientSettings.ClusterConfigurator = cb =>
{
s.Subscribe(new ActivityEventConsoleDebugSubscriber(new()
{
Enable = true
}));
s.Subscribe(new ActivityEventDiagnosticsSubscriber(new()
{
CaptureCommandText = true
}));
};}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- MongoDB.Driver (>= 3.1.0)
- Spectre.Console.Json (>= 0.49.2-preview.0.69)
- System.Diagnostics.DiagnosticSource (>= 9.0.0)
-
net9.0
- MongoDB.Driver (>= 3.1.0)
- Spectre.Console.Json (>= 0.49.2-preview.0.69)
- System.Diagnostics.DiagnosticSource (>= 9.0.0)
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.24.1216.116 | 48 | 12/16/2024 |
3.24.1206.100 | 51 | 12/6/2024 |
3.24.1205.171 | 55 | 12/5/2024 |
3.24.1202.150 | 53 | 12/2/2024 |
3.24.1126.231 | 53 | 11/26/2024 |
3.24.1126.172 | 50 | 11/26/2024 |
3.24.1126.114 | 53 | 11/26/2024 |
3.24.1126.104 | 49 | 11/26/2024 |
3.24.1125.181 | 35 | 11/25/2024 |
3.24.1125.104 | 51 | 11/25/2024 |
3.24.1121.183 | 45 | 11/21/2024 |
3.24.1120.183 | 47 | 11/20/2024 |
3.24.1119.31 | 49 | 11/18/2024 |
3.24.1115.143 | 37 | 11/15/2024 |
3.24.1113.100 | 52 | 11/13/2024 |
3.24.1112.125 | 52 | 11/12/2024 |
3.24.1107.140 | 46 | 11/7/2024 |
3.24.1107.54 | 47 | 11/7/2024 |
3.24.1107.34 | 45 | 11/7/2024 |
3.24.1105.111 | 49 | 11/5/2024 |
3.24.1103.31 | 57 | 11/2/2024 |
3.24.1103 | 53 | 11/2/2024 |
3.24.1031.135 | 45 | 10/31/2024 |
3.24.1031.112 | 48 | 10/31/2024 |
3.24.1031.104 | 46 | 10/31/2024 |
3.24.1029.142 | 54 | 10/29/2024 |
3.24.1025.30 | 51 | 10/24/2024 |
3.24.1022.142 | 36 | 10/22/2024 |
3.24.1018.204 | 104 | 10/18/2024 |
3.24.1018.175 | 98 | 10/18/2024 |
3.24.1018.166 | 100 | 10/18/2024 |
3.24.1018.93 | 105 | 10/18/2024 |
3.24.1017.42 | 55 | 10/16/2024 |
3.24.1016.161 | 55 | 10/16/2024 |
3.24.1015.231 | 55 | 10/15/2024 |
3.24.1015.14 | 55 | 10/14/2024 |
3.24.1012.114 | 55 | 10/12/2024 |
3.24.1009.115 | 58 | 10/9/2024 |
3.24.1008.160 | 52 | 10/8/2024 |
3.24.1008.133 | 59 | 10/8/2024 |
3.24.1007.185 | 54 | 10/7/2024 |
3.24.1003.33 | 60 | 10/2/2024 |
3.24.1002.162 | 55 | 10/2/2024 |
3.24.929.143 | 55 | 9/29/2024 |
3.24.929.141 | 57 | 9/29/2024 |
3.24.929.131 | 54 | 9/29/2024 |
3.24.929.122 | 62 | 9/29/2024 |
3.24.926.184 | 55 | 9/26/2024 |
3.24.926.182 | 57 | 9/26/2024 |
3.24.926.175 | 57 | 9/26/2024 |
3.24.924.160 | 55 | 9/24/2024 |
3.24.924.133 | 65 | 9/24/2024 |
3.24.924.124 | 53 | 9/24/2024 |
3.24.924.10 | 60 | 9/23/2024 |
3.24.924.1 | 55 | 9/23/2024 |
3.24.923.234 | 53 | 9/23/2024 |
3.24.923.232 | 53 | 9/23/2024 |
3.24.923.155 | 56 | 9/23/2024 |
3.24.919.92 | 65 | 9/19/2024 |
3.24.914.125 | 75 | 9/14/2024 |
3.24.914.115 | 60 | 9/14/2024 |
3.24.914.111 | 59 | 9/14/2024 |
3.24.911.95 | 63 | 9/11/2024 |
3.24.908.215 | 49 | 9/8/2024 |
3.24.904.200 | 58 | 9/4/2024 |
3.24.828.163 | 65 | 8/28/2024 |
3.24.820.173 | 66 | 8/20/2024 |
3.24.814.92 | 76 | 8/14/2024 |
3.24.812.115 | 73 | 8/12/2024 |
3.24.802.100 | 47 | 8/2/2024 |
3.24.801.162 | 57 | 8/1/2024 |
3.24.801.160 | 54 | 8/1/2024 |
3.24.801.155 | 55 | 8/1/2024 |
3.24.730.164 | 47 | 7/30/2024 |
3.24.730.91 | 46 | 7/30/2024 |
3.24.724.91 | 50 | 7/24/2024 |
3.24.718.105 | 63 | 7/18/2024 |
3.24.716.95 | 57 | 7/16/2024 |
3.24.712.94 | 53 | 7/12/2024 |
3.24.710.14 | 59 | 7/9/2024 |
3.24.709.105 | 57 | 7/9/2024 |
3.24.704.94 | 60 | 7/4/2024 |
3.24.701.90 | 64 | 7/1/2024 |
3.24.628.114 | 66 | 6/28/2024 |
3.24.627.145 | 55 | 6/27/2024 |
3.24.620.160 | 65 | 6/20/2024 |
3.24.613.115 | 62 | 6/13/2024 |
3.24.612.95 | 61 | 6/12/2024 |
3.24.528.90 | 60 | 5/28/2024 |
3.24.522.84 | 72 | 5/22/2024 |
3.24.512.213 | 67 | 5/12/2024 |
3.24.508.112 | 70 | 5/8/2024 |
2.2024.428.71 | 62 | 4/28/2024 |
2.2024.427.1128 | 112 | 4/27/2024 |
2.2.72 | 139 | 4/14/2024 |
2.2.71 | 63 | 4/12/2024 |
2.2.8 | 104 | 4/26/2024 |
2.2.6 | 64 | 4/10/2024 |
2.2.5 | 77 | 3/26/2024 |
2.2.4 | 76 | 3/25/2024 |
2.2.3 | 79 | 3/24/2024 |
2.2.2 | 81 | 3/21/2024 |
2.2.1 | 75 | 3/20/2024 |
2.2.0 | 83 | 3/13/2024 |
2.1.9 | 81 | 2/21/2024 |
2.1.8 | 85 | 2/18/2024 |
2.1.7 | 76 | 2/16/2024 |
2.1.6 | 83 | 2/14/2024 |
2.1.5 | 83 | 2/14/2024 |
2.1.4 | 87 | 2/9/2024 |
2.1.3 | 83 | 2/8/2024 |
2.1.2 | 84 | 2/5/2024 |
2.1.1.2 | 143 | 12/26/2023 |
2.1.1.1 | 87 | 12/26/2023 |
2.1.1 | 89 | 12/25/2023 |
2.1.0 | 104 | 12/17/2023 |
2.0.11 | 106 | 12/6/2023 |
2.0.1 | 103 | 11/15/2023 |
2.0.0 | 84 | 11/14/2023 |
1.9.1 | 106 | 11/1/2023 |
1.9.0 | 92 | 10/19/2023 |
1.9.0-preview2 | 84 | 10/12/2023 |
1.9.0-preview1 | 72 | 10/12/2023 |
1.8.9 | 100 | 10/11/2023 |
1.8.8 | 100 | 10/11/2023 |
1.8.7-rc2 | 80 | 9/21/2023 |
1.8.7-rc1 | 81 | 9/12/2023 |
1.8.6 | 122 | 8/31/2023 |
1.8.5 | 97 | 8/25/2023 |
1.8.4 | 98 | 8/24/2023 |
1.8.3 | 104 | 8/23/2023 |
1.8.2 | 163 | 8/22/2023 |
1.8.1 | 94 | 8/18/2023 |
1.8.0 | 588 | 8/15/2023 |
1.7.9 | 575 | 8/11/2023 |
1.7.8 | 548 | 8/11/2023 |
1.7.7 | 574 | 8/10/2023 |
1.7.6 | 623 | 8/9/2023 |
1.7.5 | 531 | 8/9/2023 |
1.7.4 | 651 | 8/3/2023 |
1.7.3 | 598 | 8/1/2023 |
1.7.2 | 637 | 7/31/2023 |
1.7.1 | 605 | 7/27/2023 |
1.7.0 | 612 | 7/25/2023 |
1.6.9 | 617 | 7/25/2023 |
1.6.8 | 630 | 7/24/2023 |
1.6.7 | 660 | 7/20/2023 |
1.6.6 | 673 | 7/19/2023 |
1.6.5 | 544 | 7/19/2023 |
1.6.4 | 630 | 7/17/2023 |
1.6.3 | 596 | 7/17/2023 |
1.6.2 | 659 | 7/12/2023 |
1.6.1 | 664 | 6/30/2023 |
1.6.0 | 630 | 6/26/2023 |
1.5.9 | 659 | 6/22/2023 |
1.5.8 | 631 | 6/15/2023 |
1.5.7.1 | 607 | 6/14/2023 |
1.5.7 | 627 | 6/14/2023 |
1.5.6.2 | 653 | 6/7/2023 |
1.5.6.1 | 626 | 6/7/2023 |
1.5.6 | 680 | 6/7/2023 |
1.5.5.2 | 594 | 5/26/2023 |
1.5.5.1 | 640 | 5/26/2023 |
1.5.5 | 669 | 5/26/2023 |
1.5.4.4 | 693 | 5/25/2023 |
1.5.4.3 | 662 | 5/23/2023 |
1.5.4.2 | 754 | 5/17/2023 |
1.5.4.1 | 666 | 5/16/2023 |
1.5.4 | 716 | 5/11/2023 |
1.5.3 | 658 | 5/11/2023 |
1.5.2 | 659 | 5/10/2023 |
1.5.1 | 626 | 5/10/2023 |
1.5.0 | 707 | 5/6/2023 |
1.4.0 | 702 | 5/5/2023 |
1.3.9 | 720 | 4/23/2023 |
1.3.8.6 | 709 | 4/23/2023 |
1.3.8.5 | 611 | 4/21/2023 |
1.3.8.1 | 735 | 4/12/2023 |
1.3.8 | 725 | 4/11/2023 |
1.3.7 | 697 | 4/9/2023 |
1.3.6.3 | 784 | 4/1/2023 |
1.3.6.2 | 701 | 3/31/2023 |
1.3.6.1 | 743 | 3/31/2023 |
1.3.6 | 728 | 3/31/2023 |
1.3.5 | 708 | 3/30/2023 |
1.3.4.1 | 798 | 3/29/2023 |
1.3.4 | 667 | 3/28/2023 |
1.3.3 | 649 | 3/28/2023 |
1.3.2 | 776 | 3/26/2023 |
1.3.1 | 849 | 3/22/2023 |
1.3.0 | 747 | 3/21/2023 |
1.2.0 | 670 | 3/21/2023 |
1.1.0 | 730 | 3/17/2023 |
1.0.9 | 691 | 3/15/2023 |
1.0.8 | 693 | 3/15/2023 |
1.0.7 | 691 | 3/15/2023 |
1.0.6 | 736 | 3/13/2023 |
1.0.5 | 779 | 3/13/2023 |
1.0.4 | 729 | 3/13/2023 |
1.0.2 | 787 | 2/26/2023 |
1.0.1 | 758 | 2/23/2023 |
1.0.0 | 733 | 2/20/2023 |