3个版本

0.1.2 2023年8月16日
0.1.1 2023年8月16日
0.1.0 2023年8月16日

2097数据库接口

Download history 15/week @ 2024-03-10 1/week @ 2024-03-17 45/week @ 2024-03-24 94/week @ 2024-03-31 11/week @ 2024-04-07 14/week @ 2024-04-14 16/week @ 2024-04-21 16/week @ 2024-04-28 1/week @ 2024-05-05 2/week @ 2024-05-12 35/week @ 2024-05-19 88/week @ 2024-05-26 221/week @ 2024-06-02 43/week @ 2024-06-09 5/week @ 2024-06-16

每月286 次下载

MIT 许可证

25KB
779

MONGO TRACING

该库将Rust MongoDB驱动的Collection对象与遥测结合

用法

// Instead of getting collection from database 
    database
        .collection::<Document>("medicalRecordsHistories")
        
// import the Trait 
    use mongo_tracing::InstrumentedCollectionExt;        
 ....
 
 //And replace the "collection" method for "collection_instrumented
 
   database
        .collection_instrumented::<Document>("medicalRecordsHistories")
   

依赖项

~25–37MB
~672K SLoC