@sentio/runtime 2.40.0-rc.28 → 2.40.0-rc.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59602,16 +59602,16 @@ var G = class {
|
|
59602
59602
|
};
|
59603
59603
|
var dbMetrics = {
|
59604
59604
|
send_counts: {
|
59605
|
-
get: new C("
|
59606
|
-
upsert: new C("
|
59607
|
-
list: new C("
|
59608
|
-
delete: new C("
|
59605
|
+
get: new C("store_get_send"),
|
59606
|
+
upsert: new C("store_upsert_send"),
|
59607
|
+
list: new C("store_list_send"),
|
59608
|
+
delete: new C("store_delete_send")
|
59609
59609
|
},
|
59610
59610
|
recv_counts: {
|
59611
|
-
get: new C("
|
59612
|
-
upsert: new C("
|
59613
|
-
list: new C("
|
59614
|
-
delete: new C("
|
59611
|
+
get: new C("store_get_recv"),
|
59612
|
+
upsert: new C("store_upsert_recv"),
|
59613
|
+
list: new C("store_list_recv"),
|
59614
|
+
delete: new C("store_delete_recv")
|
59615
59615
|
},
|
59616
59616
|
request_times: {
|
59617
59617
|
get: new C("store_get_time"),
|
package/lib/index.js
CHANGED
package/lib/processor-runner.js
CHANGED
package/package.json
CHANGED
package/src/metrics.ts
CHANGED
@@ -40,16 +40,16 @@ class G {
|
|
40
40
|
|
41
41
|
export const dbMetrics = {
|
42
42
|
send_counts: {
|
43
|
-
get: new C('
|
44
|
-
upsert: new C('
|
45
|
-
list: new C('
|
46
|
-
delete: new C('
|
43
|
+
get: new C('store_get_send'),
|
44
|
+
upsert: new C('store_upsert_send'),
|
45
|
+
list: new C('store_list_send'),
|
46
|
+
delete: new C('store_delete_send')
|
47
47
|
},
|
48
48
|
recv_counts: {
|
49
|
-
get: new C('
|
50
|
-
upsert: new C('
|
51
|
-
list: new C('
|
52
|
-
delete: new C('
|
49
|
+
get: new C('store_get_recv'),
|
50
|
+
upsert: new C('store_upsert_recv'),
|
51
|
+
list: new C('store_list_recv'),
|
52
|
+
delete: new C('store_delete_recv')
|
53
53
|
},
|
54
54
|
request_times: {
|
55
55
|
get: new C('store_get_time'),
|