Merge remote-tracking branch 'tor-gitlab/mr/336'

This commit is contained in:
Nick Mathewson 2021-03-10 16:47:46 -05:00
commit 7d9403b422
2 changed files with 15 additions and 2 deletions

4
changes/ticket40314 Normal file
View File

@ -0,0 +1,4 @@
o Minor feature (Vote document):
- Add the "stats" line in a directory authority vote in order to report
various statistics that the authority has computed for the relays. This
will help us diagnose better the network. Close ticket 40314.

View File

@ -15,11 +15,11 @@
#include "feature/nodelist/fmt_routerstatus.h" #include "feature/nodelist/fmt_routerstatus.h"
#include "core/or/policies.h" #include "core/or/policies.h"
#include "feature/nodelist/routerlist.h"
#include "feature/dirauth/dirvote.h" #include "feature/dirauth/dirvote.h"
#include "feature/nodelist/routerinfo_st.h" #include "feature/nodelist/routerinfo_st.h"
#include "feature/nodelist/routerlist.h"
#include "feature/nodelist/vote_routerstatus_st.h" #include "feature/nodelist/vote_routerstatus_st.h"
#include "feature/stats/rephist.h"
#include "lib/crypt_ops/crypto_format.h" #include "lib/crypt_ops/crypto_format.h"
@ -195,6 +195,15 @@ routerstatus_format_entry(const routerstatus_t *rs, const char *version,
digest256_to_base64(ed_b64, (const char*)vrs->ed25519_id); digest256_to_base64(ed_b64, (const char*)vrs->ed25519_id);
smartlist_add_asprintf(chunks, "id ed25519 %s\n", ed_b64); smartlist_add_asprintf(chunks, "id ed25519 %s\n", ed_b64);
} }
/* We'll add a series of statistics to the vote per relays so we are
* able to assess what each authorities sees and help our health and
* performance work. */
time_t now = time(NULL);
smartlist_add_asprintf(chunks, "stats wfu=%.6f tk=%lu mtbf=%.0f\n",
rep_hist_get_weighted_fractional_uptime(rs->identity_digest, now),
rep_hist_get_weighted_time_known(rs->identity_digest, now),
rep_hist_get_stability(rs->identity_digest, now));
} }
} }