You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ModulesProgress is a message that is sent every 500msmessageModulesProgress {
// previously: repeated ModuleProgress modules = 1;// these previous `modules` messages were sent in bursts and are not sent anymore.reserved1;
// List of jobs running on tier2 serversrepeatedJobrunning_jobs=2;
// Execution statistics for each modulerepeatedModuleStatsmodules_stats=3;
// Stages definition and completed block rangesrepeatedStagestages=4;
ProcessedBytesprocessed_bytes=5;
}
messageProcessedBytes {
uint64total_bytes_read=1;
uint64total_bytes_written=2;
}
messageError {
stringmodule=1;
stringreason=2;
repeatedstringlogs=3;
// FailureLogsTruncated is a flag that tells you if you received all the logs or if they// were truncated because you logged too much (fixed limit currently is set to 128 KiB).boollogs_truncated=4;
}
messageJob {
uint32stage=1;
uint64start_block=2;
uint64stop_block=3;
uint64processed_blocks=4;
uint64duration_ms=5;
}
messageStage {
repeatedstringmodules=1;
repeatedBlockRangecompleted_ranges=2;
}
// ModuleStats gathers metrics and statistics from each module, running on tier1 or tier2// All the 'count' and 'time_ms' values may include duplicate for each stage going over that modulemessageModuleStats {
// name of the modulestringname=1;
// total_processed_blocks is the sum of blocks sent to that module codeuint64total_processed_block_count=2;
// total_processing_time_ms is the sum of all time spent running that module codeuint64total_processing_time_ms=3;
//// external_calls are chain-specific intrinsics, like "Ethereum RPC calls".repeatedExternalCallMetricexternal_call_metrics=4;
// total_store_operation_time_ms is the sum of all time spent running that module code waiting for a store operation (ex: read, write, delete...)uint64total_store_operation_time_ms=5;
// total_store_read_count is the sum of all the store Read operations called from that module codeuint64total_store_read_count=6;
// total_store_write_count is the sum of all store Write operations called from that module code (store-only)uint64total_store_write_count=10;
// total_store_deleteprefix_count is the sum of all store DeletePrefix operations called from that module code (store-only)// note that DeletePrefix can be a costly operation on large storesuint64total_store_deleteprefix_count=11;
// store_size_bytes is the uncompressed size of the full KV store for that module, from the last 'merge' operation (store-only)uint64store_size_bytes=12;
// total_store_merging_time_ms is the time spent merging partial stores into a full KV store for that module (store-only)uint64total_store_merging_time_ms=13;
// store_currently_merging is true if there is a merging operation (partial store to full KV store) on the way.boolstore_currently_merging=14;
// highest_contiguous_block is the highest block in the highest merged full KV store of that module (store-only)uint64highest_contiguous_block=15;
}
The text was updated successfully, but these errors were encountered:
References
https://github.com/streamingfast/substreams/blob/47ddf079aa7fcd89c03eb99771cda6749b56c20e/proto/sf/substreams/rpc/v2/service.proto#L132-L145
The text was updated successfully, but these errors were encountered: