@@ -19,7 +19,7 @@ export function registerCounter(
19
19
name : string ,
20
20
help = "help" ,
21
21
labelNames : string [ ] = [ ] ,
22
- config ?: CounterConfiguration < string >
22
+ config ?: CounterConfiguration < string > ,
23
23
) : Counter | undefined {
24
24
try {
25
25
const metric = registry . getSingleMetric ( name ) ;
@@ -37,7 +37,7 @@ export function registerGauge(
37
37
name : string ,
38
38
help = "help" ,
39
39
labelNames : string [ ] = [ ] ,
40
- config ?: GaugeConfiguration < string >
40
+ config ?: GaugeConfiguration < string > ,
41
41
) : Gauge | undefined {
42
42
try {
43
43
const metric = registry . getSingleMetric ( name ) ;
@@ -57,7 +57,7 @@ export function registerSummary(
57
57
name : string ,
58
58
help = "help" ,
59
59
labelNames : string [ ] = [ ] ,
60
- config ?: SummaryConfiguration < string >
60
+ config ?: SummaryConfiguration < string > ,
61
61
) : Summary | undefined {
62
62
try {
63
63
const metric = registry . getSingleMetric ( name ) ;
@@ -75,7 +75,7 @@ export function registerHistogram(
75
75
name : string ,
76
76
help = "help" ,
77
77
labelNames : string [ ] = [ ] ,
78
- config ?: HistogramConfiguration < string >
78
+ config ?: HistogramConfiguration < string > ,
79
79
) : Histogram | undefined {
80
80
try {
81
81
const metric = registry . getSingleMetric ( name ) ;
@@ -84,7 +84,7 @@ export function registerHistogram(
84
84
}
85
85
86
86
registry . registerMetric (
87
- new Histogram ( { name, help, labelNames, ...config } )
87
+ new Histogram ( { name, help, labelNames, ...config } ) ,
88
88
) ;
89
89
return registry . getSingleMetric ( name ) as Histogram ;
90
90
} catch ( e ) {
@@ -110,25 +110,25 @@ function calculateHeadBlockTimeDrift(clock: Clock) {
110
110
export const substreams_sink_progress_message = registerCounter (
111
111
"substreams_sink_progress_message" ,
112
112
"The number of progress message received" ,
113
- [ "module" , ...DEFAULT_LABEL_NAMES ]
113
+ [ "module" , ...DEFAULT_LABEL_NAMES ] ,
114
114
) ;
115
115
116
116
const substreams_sink_data_message = registerCounter (
117
117
"substreams_sink_data_message" ,
118
118
"The number of data message received" ,
119
- DEFAULT_LABEL_NAMES
119
+ DEFAULT_LABEL_NAMES ,
120
120
) ;
121
121
122
122
const substreams_sink_data_message_size_bytes = registerCounter (
123
123
"substreams_sink_data_message_size_bytes" ,
124
124
"The total size of in bytes of all data message received" ,
125
- DEFAULT_LABEL_NAMES
125
+ DEFAULT_LABEL_NAMES ,
126
126
) ;
127
127
128
128
const substreams_sink_undo_message = registerCounter (
129
129
"substreams_sink_undo_message" ,
130
130
"The number of block undo message received" ,
131
- DEFAULT_LABEL_NAMES
131
+ DEFAULT_LABEL_NAMES ,
132
132
) ;
133
133
134
134
// ------------------------------------------------------------------
@@ -138,25 +138,25 @@ const substreams_sink_undo_message = registerCounter(
138
138
const substreams_sink_backprocessing_completion = registerGauge (
139
139
"substreams_sink_backprocessing_completion" ,
140
140
"Determines if backprocessing is completed, which is if we receive a first data message" ,
141
- DEFAULT_LABEL_NAMES
141
+ DEFAULT_LABEL_NAMES ,
142
142
) ;
143
143
144
144
const head_block_number = registerGauge (
145
145
"head_block_number" ,
146
146
"Last processed block number" ,
147
- DEFAULT_LABEL_NAMES
147
+ DEFAULT_LABEL_NAMES ,
148
148
) ;
149
149
150
150
const head_block_time_drift = registerGauge (
151
151
"head_block_time_drift" ,
152
152
"Head block time drift in seconds" ,
153
- DEFAULT_LABEL_NAMES
153
+ DEFAULT_LABEL_NAMES ,
154
154
) ;
155
155
156
156
const head_block_timestamp = registerGauge (
157
157
"head_block_timestamp" ,
158
158
"Head block timestamp" ,
159
- DEFAULT_LABEL_NAMES
159
+ DEFAULT_LABEL_NAMES ,
160
160
) ;
161
161
162
162
const manifest = registerGauge (
@@ -168,7 +168,7 @@ const manifest = registerGauge(
168
168
"stop_block_num" ,
169
169
"final_blocks_only" ,
170
170
...DEFAULT_LABEL_NAMES ,
171
- ]
171
+ ] ,
172
172
) ;
173
173
174
174
// ------------------------------------------------------------------
@@ -179,7 +179,7 @@ export function onPrometheusMetrics(
179
179
substreamsEndpoint : string ;
180
180
contractAddress : string ;
181
181
moduleHash : string ;
182
- }
182
+ } ,
183
183
) {
184
184
manifest ?. set (
185
185
{
@@ -191,7 +191,7 @@ export function onPrometheusMetrics(
191
191
contract_address : options . contractAddress ,
192
192
output_module : emitter . request . outputModule ,
193
193
} ,
194
- 1
194
+ 1 ,
195
195
) ;
196
196
197
197
emitter . on ( "session" , ( session ) => {
@@ -213,7 +213,7 @@ export function onPrometheusMetrics(
213
213
contract_address : options . contractAddress ,
214
214
output_module : emitter . request . outputModule ,
215
215
} ,
216
- 1
216
+ 1 ,
217
217
) ;
218
218
} ) ;
219
219
@@ -224,7 +224,7 @@ export function onPrometheusMetrics(
224
224
contract_address : options . contractAddress ,
225
225
output_module : emitter . request . outputModule ,
226
226
} )
227
- . inc ( 1 )
227
+ . inc ( 1 ) ,
228
228
) ;
229
229
230
230
emitter . on ( "block" , ( block ) => {
@@ -250,7 +250,7 @@ export function onPrometheusMetrics(
250
250
contract_address : options . contractAddress ,
251
251
output_module : emitter . request . outputModule ,
252
252
} ,
253
- 1
253
+ 1 ,
254
254
) ;
255
255
256
256
if ( block . clock ) {
@@ -260,7 +260,7 @@ export function onPrometheusMetrics(
260
260
contract_address : options . contractAddress ,
261
261
output_module : emitter . request . outputModule ,
262
262
} ,
263
- Number ( block . clock . number )
263
+ Number ( block . clock . number ) ,
264
264
) ;
265
265
266
266
head_block_time_drift ?. set (
@@ -269,7 +269,7 @@ export function onPrometheusMetrics(
269
269
contract_address : options . contractAddress ,
270
270
output_module : emitter . request . outputModule ,
271
271
} ,
272
- calculateHeadBlockTimeDrift ( block . clock )
272
+ calculateHeadBlockTimeDrift ( block . clock ) ,
273
273
) ;
274
274
275
275
head_block_timestamp ?. set (
@@ -278,7 +278,7 @@ export function onPrometheusMetrics(
278
278
contract_address : options . contractAddress ,
279
279
output_module : emitter . request . outputModule ,
280
280
} ,
281
- Number ( block . clock . timestamp ?. seconds )
281
+ Number ( block . clock . timestamp ?. seconds ) ,
282
282
) ;
283
283
}
284
284
} ) ;
0 commit comments