Author: @Craig Tutterow, Edge & Node Data Science, craig@edgeandnode.com
A team of core developers has produced an oracle that:
The community can use this data to aggregate quality and cost of service data in different ways and build a variety of analytics and monitoring dashboards related to quality and cost of service at the Indexer and subgraph deployment levels.
Below are details on the published IPFS data
Chain: gnosis
DataEdge Contract: 0x5b4293b4c0f36cb5d4448950830bc777759b6c4f
(gnosisscan)
Schema for oracle data edge events (published using a virtual submitQoSPayload
function):
{
"topic": string // Topic of the oracle message
"hash" : string // IPFS hash of the oracle data file in json format
"timestamp": int // timestamp of the time interval end time in seconds (UTC)
}
Current production QoS data topic names:
gateway_indexer_attempt_qos_5_minutes_prod_v3
: contains data on quality and cost of service at the Indexer and subgraph level based on individual requests from the gateways to Indexers
indexer_wallet
: the ETH wallet address of the Indexerindexer_url
: the url of the Indexer’s subgraph endpointsubgraph_deployment_ipfs_hash
: the IPFS hash of the subgraph deploymentchain
: the chain that the subgraph indexesgateway_id
: the id of the gateway (e.g. mainnet, testnet, mainnet-arbitrum, etc.)start_epoch
: the start of a 5 minute period over which the QoS stats were observed (in seconds, UTC time). This is unrelated to protocol epochsend_epoch
: the end of a 5 minute period over which the QoS stats were observed (in seconds, UTC time). This is unrelated to protocol epochsavg_query_fee
: the average query fee requested by the gateways in queries sent to the Indexermax_query_fee
: the max query fee requested by the gateways in queries sent to the Indexertotal_query_fees
: the total amount of query fees requested from queries that minutequery_count
: number of queries that minuteavg_indexer_latency_ms
: the average latency of the Indexer’s query responses in millisecondsmax_indexer_latency_ms
: the maximum latency of the Indexer’s query responses in millisecondsnum_indexer_200_responses
: the number of 200 status code responses from queries sent to the Indexerproportion_indexer_200_responses
: the proportion of 200 responses of queries sent to the Indexer (between 0 and 1)
avg_indexer_blocks_behind
: the average number of blocks behind an Indexer was in indexing a subgraph when responding to queriesmax_indexer_blocks_behind
: the maximum number of blocks behind an Indexer was in indexing a subgraph when responding to queriesstdev_indexer_latency_ms
: the standard deviation in milliseconds of gateway query responses to a clientgateway_query_result_qos_5_minutes_prod_v3
: contains data on quality and cost of service at the Indexer and subgraph level from the perspective of the response returned to the client from the gateways (accounts for multiple Indexer attempts and retries from the gateways to produce a valid response)
subgraph_deployment_ipfs_hash
: the IPFS hash of the subgraph deploymentchain
: the chain that the subgraph indexesgateway_id
: the id of the gateway (e.g. mainnet, testnet, mainnet-arbitrum, etc.)start_epoch
: the start of the 5 minute period over which the QoS stats were observed (in seconds, UTC time). This is unrelated to protocol epochsend_epoch
: the end of the 5 minute period over which the QoS stats were observed (in seconds, UTC time). This is unrelated to protocol epochsavg_query_fee
: the average query fee requested in queries of the subgraphmax_query_fee
: the maximum query fee of a query of the subgraphtotal_query_fees
: the total amount of query fees requested in queries of the subgraph that minutequery_count
: the number of queries of the subgraphmost_recent_query_ts
: the epoch timestamp (in seconds, UTC time) of the most recent query of the subgraph (accounting for retries to multiple Indexers)gateway_query_success_rate
: the success rate of queries in the gateway, net user attributed errors (described below). User attributed errors are counted as successfully handled queries from the gateway’s point of view under this definition, but can be split out using the following field.user_attributed_error_rate
: the proportion of queries that resulted in an error attributed to users. Possible reasons for user attributed errors are:
avg_gateway_latency_ms
: the average latency in milliseconds of gateway query responses to a client (accounting for retries to multiple Indexers)max_gateway_latency_ms
: the maximum latency in milliseconds of gateway query responses to a client (accounting for retries to multiple Indexers)stdev_gateway_latency_ms
: the standard deviation in milliseconds of gateway query responses to a clientExample subgraph indexing Oracle IPFS hash payloads (does not index or process underlying data)
The subgraph oracle is a data pipeline based on the following components: