1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
use std::borrow::Borrow;

use mongodb::bson::Document;
use mongodb::error::Result;
use mongodb::options::{
    FindOneOptions, InsertManyOptions, InsertOneOptions, ReplaceOptions, UpdateModifications,
    UpdateOptions,
};
use mongodb::results::{InsertManyResult, InsertOneResult, UpdateResult};
use mongodb::{ClientSession, Collection, Database};
use serde::de::DeserializeOwned;
use serde::Serialize;
use tracing::instrument;

struct CollectionInfo {
    database_name: String,
}

pub trait InstrumentedCollectionExt {
    fn collection_instrumented<T>(&self, name: &str) -> InstrumentedCollection<T>;
}

impl InstrumentedCollectionExt for Database {
    fn collection_instrumented<T>(&self, name: &str) -> InstrumentedCollection<T> {
        InstrumentedCollection {
            info: CollectionInfo {
                database_name: self.name().parse().unwrap(),
            },
            inner: self.collection(name),
        }
    }
}

pub struct InstrumentedCollection<T> {
    info: CollectionInfo,
    inner: Collection<T>,
}

impl<T> InstrumentedCollection<T>
where
    T: DeserializeOwned + Unpin + Send + Sync,
{
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, filter, options)
    )]
    pub async fn find_one(
        &self,
        filter: impl Into<Option<Document>>,
        options: impl Into<Option<FindOneOptions>>,
    ) -> Result<Option<T>> {
        self.inner.find_one(filter, options).await
    }
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, filter, options,session)
    )]
    pub async fn find_one_with_session(
        &self,
        filter: impl Into<Option<Document>>,
        options: impl Into<Option<FindOneOptions>>,
        session: &mut ClientSession,
    ) -> Result<Option<T>> {
        self.inner
            .find_one_with_session(filter, options, session)
            .await
    }
}

impl<T> InstrumentedCollection<T>
where
    T: Serialize,
{
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, docs, options)
    )]
    pub async fn insert_many(
        &self,
        docs: impl IntoIterator<Item = impl Borrow<T>>,
        options: impl Into<Option<InsertManyOptions>>,
    ) -> Result<InsertManyResult> {
        self.inner.insert_many(docs, options).await
    }

    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, docs, options,session)
    )]
    pub async fn insert_many_with_session(
        &self,
        docs: impl IntoIterator<Item = impl Borrow<T>>,
        options: impl Into<Option<InsertManyOptions>>,
        session: &mut ClientSession,
    ) -> Result<InsertManyResult> {
        self.inner
            .insert_many_with_session(docs, options, session)
            .await
    }
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, doc, options)
    )]
    pub async fn insert_one(
        &self,
        doc: impl Borrow<T>,
        options: impl Into<Option<InsertOneOptions>>,
    ) -> Result<InsertOneResult> {
        self.inner.insert_one(doc, options).await
    }
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, doc, options,session)
    )]
    pub async fn insert_one_with_session(
        &self,
        doc: impl Borrow<T>,
        options: impl Into<Option<InsertOneOptions>>,
        session: &mut ClientSession,
    ) -> Result<InsertOneResult> {
        self.inner
            .insert_one_with_session(doc, options, session)
            .await
    }
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, query, replacement,options)
    )]
    pub async fn replace_one(
        &self,
        query: Document,
        replacement: impl Borrow<T>,
        options: impl Into<Option<ReplaceOptions>>,
    ) -> Result<UpdateResult> {
        self.inner.replace_one(query, replacement, options).await
    }
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, query, replacement,options,session)
    )]
    pub async fn replace_one_with_session(
        &self,
        query: Document,
        replacement: impl Borrow<T>,
        options: impl Into<Option<ReplaceOptions>>,
        session: &mut ClientSession,
    ) -> Result<UpdateResult> {
        self.inner
            .replace_one_with_session(query, replacement, options, session)
            .await
    }
}

impl<T> InstrumentedCollection<T> {
    #[instrument(
    fields(
    db.name = % self.info.database_name ,
    db.system = "mongodb",
    db.collection = % self.inner.name(),
    otel.kind = "client",
    ),
    skip(self, query, update,options)
    )]
    pub async fn update_one(
        &self,
        query: Document,
        update: impl Into<UpdateModifications>,
        options: impl Into<Option<UpdateOptions>>,
    ) -> Result<UpdateResult> {
        self.inner.update_one(query, update, options).await
    }
}