Replies: 1 comment
-
|
I did some cleanup on the time vector, the aggregation buckets are now aligned to midnight, hence the "tomorrow" tag in the hover legend above. I'm thinking of just dropping the time value from the label since it's always |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
@aparcar
Here's what I've got so far.
Reworked the internal stats structures so that there's now a summary data collection, which makes the code in
asu/routers/stats.pya lot cleaner.Summary stats key prefix is
stats:build:*-
requests- total number of calls to the/buildAPI-
cache-hits- count of build requests satisfied by already-existing builds-
cache-misses- count of build requests sent to builder-
successes- count of build requests sent to builder with successful completion-
failures- count of build requests sent to builder that failedwhere
cache-misses = successes + failures, except for requests that fail validation (which I'm guessing is extremely rare).I've written a little utility script to convert some of the old data to the new format, not sure if it should be automatic or not... In any case, some of the old stuff is completely broken, like old
stats:cache-hitswas being added all wrong, so the current values are useless.Here's what the graph looks like, is this sort of what you were thinking?
Beta Was this translation helpful? Give feedback.
All reactions