You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
1.8 KiB

  1. <h1>Pinging Reliability Tips</h1>
  2. <p>Sending monitoring signals over the public internet is inherently unreliable.
  3. HTTP requests can sometimes take excessively long or fail completely
  4. for a variety of reasons. Here are some general tips to make your monitoring
  5. code more robust.</p>
  6. <h2>Specify HTTP Request Timeout</h2>
  7. <p>Put a time limit on how long each ping is allowed to take. This is especially
  8. important when sending a "start" signal at the start of a job: you don't want
  9. a stuck ping to prevent the actual job from running. Another case is a continuously
  10. running worker process that pings SITE_NAME after each completed item. A stuck
  11. request could block the whole process. An explicit per-request time limit mitigates
  12. this problem.</p>
  13. <p>Specifying the timeout depends on the tool you use. curl, for example, has the
  14. <code>--max-time</code> (shorthand: <code>-m</code>) parameter:</p>
  15. <div class="highlight"><pre><span></span><code><span class="c1"># Send an HTTP request, 10 second timeout:</span>
  16. curl -m <span class="m">10</span> PING_URL
  17. </code></pre></div>
  18. <h2>Use Retries</h2>
  19. <p>To minimize the amount of false alerts you get from SITE_NAME, instruct your HTTP
  20. client to retry failed requests several times.</p>
  21. <p>Specifying the retry policy depends on the tool you use. curl, for example, has the
  22. <code>--retry</code> parameter:</p>
  23. <div class="highlight"><pre><span></span><code><span class="c1"># Retry up to 5 times, uses an increasing delay between each retry (1s, 2s, 4s, 8s, ...)</span>
  24. curl --retry <span class="m">5</span> PING_URL
  25. </code></pre></div>
  26. <h2>Handle Exceptions</h2>
  27. <p>Make sure you know how your HTTP client handles failed requests. For example,
  28. if you use an HTTP library that raises exceptions, decide if you want to
  29. catch the exceptions or let them bubble up.</p>