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
Hi! I'm working on Saturn Moonlet which is a more powerful and insightful alternative to Saturn Node Dashboard that anyone can run.
I'd like to better understand how do values in ttfbStats section of GET https://orchestrator.strn.pl/stats response relate. I'm specifically interested in reqs_served_1h, hits_1h, errors_1h and slow_hits_1h. My current guess is that none of these values include each other. Meaning that reqs_served_1h does not include hits_1h, errors_1h and slow_hits_1h. And hits_1h does not include slow_hits_1h. So this means that we can sum up all these values to get the total number of requests served by a node:
Hi! I'm working on Saturn Moonlet which is a more powerful and insightful alternative to Saturn Node Dashboard that anyone can run.
I'd like to better understand how do values in
ttfbStats
section ofGET https://orchestrator.strn.pl/stats
response relate. I'm specifically interested inreqs_served_1h
,hits_1h
,errors_1h
andslow_hits_1h
. My current guess is that none of these values include each other. Meaning thatreqs_served_1h
does not includehits_1h
,errors_1h
andslow_hits_1h
. Andhits_1h
does not includeslow_hits_1h
. So this means that we can sum up all these values to get the total number of requests served by a node:reqs_server_total_1h = sum(reqs_served_1h + hits_1h + errors_1h + slow_hits_1h)
Is that correct?
P. S. I wasn't sure where to post this question because the orchestrator itself is closed source.
The text was updated successfully, but these errors were encountered: