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
We want to enable validators and miners to see the data created by themselves and other entities within subnets by default.
This will support network monitoring and analytics and help to create a standard of quality for subnets. Of course, subnet developers can and should improve upon the default behaviour but we will at least ensure that there is some telemetry from day zero.
To do this we will first implement basic logging for miners and validators:
Validators
The end of each forward pass will call log_event, which will write the following data to a local log file as a dict of lists:
UIDs queried
responses
deserialized outputs
status codes
response time
rewards
Miners
Each validator query will call log_event with information such as
Validator info
UID
hotkey
stake
Blacklist return value
Priority return value
Forward return value
Forward run time
We can also introduce a specific event that is logged when weight setting occurs.
The text was updated successfully, but these errors were encountered:
Overview
We want to enable validators and miners to see the data created by themselves and other entities within subnets by default.
This will support network monitoring and analytics and help to create a standard of quality for subnets. Of course, subnet developers can and should improve upon the default behaviour but we will at least ensure that there is some telemetry from day zero.
To do this we will first implement basic logging for miners and validators:
Validators
The end of each forward pass will call
log_event
, which will write the following data to a local log file as a dict of lists:Miners
Each validator query will call
log_event
with information such asWe can also introduce a specific event that is logged when weight setting occurs.
The text was updated successfully, but these errors were encountered: