Skip to content
Snippets Groups Projects
  1. Jan 15, 2019
  2. Jan 01, 2019
    • Damian Johnson's avatar
      Update copyright dates for 2019 · 342dab71
      Damian Johnson authored
      Happy new year! Bumping the dates for 2019...
      
        % find . -type f -iname '*.py' -exec sed -i 's/-2018/-2019/g' "{}" +;
        % grep -R "# Copyright 2018," ./*
      342dab71
  3. Dec 17, 2018
  4. Nov 18, 2018
  5. Nov 11, 2018
    • Damian Johnson's avatar
      Track debian source packages · 87459ad5
      Damian Johnson authored
      Great point from Iain that we should be keeping an eye on the source url rather
      than individual packages.
      87459ad5
    • Damian Johnson's avatar
      Reintroduce txtorcon's deb · 25f98d00
      Damian Johnson authored
      Heard back from Iain. He indicated that python2 packages are being removed for
      Debian's next release, but txtorcon's python3 package is still around.
      25f98d00
  6. Nov 09, 2018
    • Damian Johnson's avatar
      Update mac links · b49dfdb2
      Damian Johnson authored
      Our wiki now links to different pages. Scanning the same for version
      information.
      
      Unfortunately the page line with the version don't have any anchors to key off,
      but in practice this seems fine for the moment.
      b49dfdb2
    • Damian Johnson's avatar
      Add torsock's netbsd package · 6f45e9ee
      Damian Johnson authored
      The wiki no longer points toward the 'wip' page so we can now include it like
      our other packages.
      6f45e9ee
    • Damian Johnson's avatar
      Drop txtorcon's deb · ec5e3d6b
      Damian Johnson authored
      The page we link to has been gone for about a week. A few days ago I reached
      out to Iain to see if the package was renamed but haven't yet heard back.
      ec5e3d6b
    • Damian Johnson's avatar
      Replace package wiki index table · c3bcf445
      Damian Johnson authored
      Our PACKAGES constant match our wiki's layout so there's no need to have a
      separate dictionary with static indices. In the process also learned that we
      weren't tracking Nyx's Fedora package.
      c3bcf445
    • Damian Johnson's avatar
      Track txtorcon's NetBSD packages · e3609021
      Damian Johnson authored
      Txtorcon also now has a NetBSD package so tracking that as well.
      e3609021
  7. Nov 08, 2018
    • Damian Johnson's avatar
      Track Stem and Nyx's NetBSD packages · de040d97
      Damian Johnson authored
      Added new packages to the wiki so gotta adjust this script as well. Yeah, yeah,
      stinky I do all this index stuff but the point of this script is to be an
      effort saving daemon for me so meh.
      de040d97
  8. Nov 03, 2018
    • Damian Johnson's avatar
      Drop ooniprobe's debian package · 805a859b
      Damian Johnson authored
      The debian package link no longer works. Reached out to Arturo and Iain to see
      if that's intentional, and if the package has possibly been renamed.
      805a859b
  9. Nov 02, 2018
  10. Oct 28, 2018
    • Damian Johnson's avatar
      Bump fallback notification theshold (25% => 50%) · ce681b89
      Damian Johnson authored
      This has been notifying everyone for weeks due to breaching the 25% thresold.
      Four days ago I reached out to teor and Nick to see what we want to do with
      this but haven't heard back.
      
      DocTor notices need to spur action or they're just noise. Bumping the threshold
      to 50% so this no longer emails us.
      ce681b89
  11. Sep 27, 2018
  12. Aug 01, 2018
  13. Jul 22, 2018
  14. Jun 23, 2018
  15. Jun 15, 2018
    • Damian Johnson's avatar
      Stacktrace when tor26 lacks authority flag · a7989448
      Damian Johnson authored
      Oops, need to be a tad more defensive here...
      
      	Traceback (most recent call last):
        	File "/srv/doctor.torproject.org/doctor/consensus_health_checker.py", line 976, in <module>
          	main()
      	  File "/srv/doctor.torproject.org/doctor/consensus_health_checker.py", line 258, in main
        	  issues += run_checks(consensuses, votes)
      	  File "/srv/doctor.torproject.org/doctor/consensus_health_checker.py", line 352, in run_checks
        	  issues = checker(latest_consensus, consensuses, votes)
      	  File "/srv/doctor.torproject.org/doctor/consensus_health_checker.py", line 640, in has_authority_flag
        	  seen_authorities.remove('tor26')
      	KeyError: 'tor26'
      a7989448
  16. May 27, 2018
    • Damian Johnson's avatar
      Report fallback directory DirPort failures · 1e61af07
      Damian Johnson authored
      The whole point of our fallback directory daemon is to tell us how many
      fallbacks are unusable, but now that one of their DirPorts is misbehaving
      it's resulting in uncaught exceptions. Interestingly, we're getting quite a
      range...
      
        Traceback (most recent call last):
          File "fallback_directories.py", line 82, in <module>
            main()
          File "fallback_directories.py", line 57, in main
            downloader.get_consensus(endpoints = [(relay.address, relay.dir_port)]).run()
          File "/home/atagar/Desktop/tor/doctor/stem/descriptor/remote.py", line 445, in run
            return list(self._run(suppress))
          File "/home/atagar/Desktop/tor/doctor/stem/descriptor/remote.py", line 456, in _run
            raise self.error
        HTTPError: HTTP Error 404: Not Found
      
      ... as well as...
      
        HTTPError: HTTP Error 503: Directory busy, try again later
      
      ... or...
      
        CertificateError: hostname '85.214.62.48' doesn't match either of 'andamur.com', 'www.andamur.com'
      
      Our DescriptorDownloader raises an unpleasantly large array of exceptions so
      unfortunately requires a catch-all here (maybe I'll change that at some point
      in stem...).
      1e61af07
  17. May 13, 2018
  18. May 10, 2018
  19. May 08, 2018
  20. Apr 29, 2018
    • Damian Johnson's avatar
      Surface errors when health check fails · fc76344d
      Damian Johnson authored
      Oops, since we iterate it suppresses errors resulting in a pretty unhelpful
      notice...
      
        Traceback (most recent call last):
          File "/srv/doctor.torproject.org/doctor/relay_check.py", line 63, in <module>
            main()
          File "/srv/doctor.torproject.org/doctor/relay_check.py", line 32, in main
            ))[0]
        IndexError: list index out of range
      fc76344d
  21. Apr 25, 2018
  22. Apr 22, 2018
    • Damian Johnson's avatar
      Errors are getting incorrectly suppressed · 023cbeef
      Damian Johnson authored
      Interesting! Roger reported an issue where he isn't getting notified about
      moria1's bwauth scanner being down. In taking a look at the logs I'm indeed
      seeing something funky...
      
        04/21/2018 21:05:46 [DEBUG] NOTICE: The following directory authorities are not reporting bandwidth scanner results: gabelmoo
        04/21/2018 21:05:47 [INFO] Suppressing The_following_directory_authorities_are_not_reporting_bandwidth_scanner_results:_gabelmoo, time remaining is 1
        3 hours
        04/21/2018 21:05:47 [INFO] All 1 issues were suppressed. Not sending a notification.
        04/21/2018 21:05:47 [DEBUG] Checks finished, runtime was 46.84 seconds
        04/21/2018 22:05:45 [DEBUG] ERROR: The following directory authorities are not reporting bandwidth scanner results: gabelmoo, moria1
        04/21/2018 22:05:46 [INFO] All 1 issues were suppressed. Not sending a notification.
        04/21/2018 22:05:46 [DEBUG] Checks finished, runtime was 45.56 seconds
      
      I suspect what's happening is this...
      
        * When only gabelmoo is down this is a NOTICE runlevel notification, which
          works.
      
        * When moria1 is down as well it's an ERROR runlevel notice which should
          generate an email every hour, but isn't. I think this is due to a bug where
          ERROR notices in specific are getting incorrectly suppressed.
      
      Lets give this a try...
      023cbeef
  23. Apr 16, 2018
    • Damian Johnson's avatar
      Simple script to check if your relay's up · 1b7516ba
      Damian Johnson authored
      Great first use of our new ORPort capabilities. Using it to provide a health
      check when my relay's down. If this goes well I'l add it to our Stem tutorials.
      
      Yeah, yeah, I know. Not dirauth related. But hey, there's no reason DocTor
      can't provide outage notifications to me as well! :P
      1b7516ba
  24. Apr 14, 2018
  25. Apr 13, 2018
  26. Apr 11, 2018
  27. Apr 01, 2018
  28. Mar 24, 2018
  29. Feb 25, 2018
  30. Feb 17, 2018
Loading