@@ -242,6 +242,54 @@ metrics:
242
242
enabled : true
243
243
` ` `
244
244
245
+ ### mongodb.active.reads
246
+
247
+ The number of read operations currently being processed.
248
+
249
+ | Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
250
+ | ---- | ----------- | ---------- | ----------------------- | --------- |
251
+ | {reads} | Sum | Int | Cumulative | false |
252
+
253
+ ### mongodb.active.writes
254
+
255
+ The number of write operations currently being processed.
256
+
257
+ | Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
258
+ | ---- | ----------- | ---------- | ----------------------- | --------- |
259
+ | {writes} | Sum | Int | Cumulative | false |
260
+
261
+ ### mongodb.commands.rate
262
+
263
+ The number of commands executed per second.
264
+
265
+ | Unit | Metric Type | Value Type |
266
+ | ---- | ----------- | ---------- |
267
+ | {command}/s | Gauge | Double |
268
+
269
+ ### mongodb.deletes.rate
270
+
271
+ The number of deletes executed per second.
272
+
273
+ | Unit | Metric Type | Value Type |
274
+ | ---- | ----------- | ---------- |
275
+ | {delete}/s | Gauge | Double |
276
+
277
+ ### mongodb.flushes.rate
278
+
279
+ The number of flushes executed per second.
280
+
281
+ | Unit | Metric Type | Value Type |
282
+ | ---- | ----------- | ---------- |
283
+ | {flush}/s | Gauge | Double |
284
+
285
+ ### mongodb.getmores.rate
286
+
287
+ The number of getmores executed per second.
288
+
289
+ | Unit | Metric Type | Value Type |
290
+ | ---- | ----------- | ---------- |
291
+ | {getmore}/s | Gauge | Double |
292
+
245
293
### mongodb.health
246
294
247
295
The health status of the server.
@@ -252,6 +300,14 @@ A value of '1' indicates healthy. A value of '0' indicates unhealthy.
252
300
| ---- | ----------- | ---------- |
253
301
| 1 | Gauge | Int |
254
302
303
+ ### mongodb.inserts.rate
304
+
305
+ The number of insertions executed per second.
306
+
307
+ | Unit | Metric Type | Value Type |
308
+ | ---- | ----------- | ---------- |
309
+ | {insert}/s | Gauge | Double |
310
+
255
311
### mongodb.lock.acquire.count
256
312
257
313
Number of times the lock was acquired in the specified mode.
@@ -340,6 +396,22 @@ The number of replicated operations executed.
340
396
| ---- | ----------- | ------ |
341
397
| operation | The MongoDB operation being counted. | Str: ` ` insert` ` , ` ` query` ` , ` ` update` ` , ` ` delete` ` , ` ` getmore` ` , ` ` command` ` |
342
398
399
+ ### mongodb.page_faults
400
+
401
+ The number of page faults.
402
+
403
+ | Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
404
+ | ---- | ----------- | ---------- | ----------------------- | --------- |
405
+ | {faults} | Sum | Int | Cumulative | true |
406
+
407
+ ### mongodb.queries.rate
408
+
409
+ The number of queries executed per second.
410
+
411
+ | Unit | Metric Type | Value Type |
412
+ | ---- | ----------- | ---------- |
413
+ | {query}/s | Gauge | Double |
414
+
343
415
### mongodb.repl_commands_per_sec
344
416
345
417
The number of replicated commands executed per second.
@@ -388,6 +460,14 @@ The number of replicated updates executed per second.
388
460
| ---- | ----------- | ---------- |
389
461
| {update}/s | Gauge | Double |
390
462
463
+ ### mongodb.updates.rate
464
+
465
+ The number of updates executed per second.
466
+
467
+ | Unit | Metric Type | Value Type |
468
+ | ---- | ----------- | ---------- |
469
+ | {update}/s | Gauge | Double |
470
+
391
471
### mongodb.uptime
392
472
393
473
The amount of time that the server has been running.
@@ -396,6 +476,14 @@ The amount of time that the server has been running.
396
476
| ---- | ----------- | ---------- | ----------------------- | --------- |
397
477
| ms | Sum | Int | Cumulative | true |
398
478
479
+ ### mongodb.wtcache.bytes.read
480
+
481
+ The number of bytes read into the WiredTiger cache.
482
+
483
+ | Unit | Metric Type | Value Type | Aggregation Temporality | Monotonic |
484
+ | ---- | ----------- | ---------- | ----------------------- | --------- |
485
+ | By | Sum | Int | Cumulative | true |
486
+
399
487
## Resource Attributes
400
488
401
489
| Name | Description | Values | Enabled |
0 commit comments