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.

52 lines
3.4 KiB

4 years ago
  1. <h1>Attaching Logs</h1>
  2. <p>SITE_NAME ping endpoints accept HTTP HEAD, GET and POST request methods.</p>
  3. <p>When using HTTP POST, <strong>you can include an arbitrary payload in the request body</strong>.
  4. If the request body looks like a UTF-8 string, SITE_NAME will log the
  5. first 10 kilobytes (10 000 bytes) of the request body, so that you can inspect
  6. it later.</p>
  7. <h2>Logging Command Output</h2>
  8. <p>In this example, we run <code>certbot renew</code>, capture its output (both the stdout
  9. and stderr streams), and submit the captured output to SITE_NAME:</p>
  10. <div class="highlight"><pre><span></span><code><span class="ch">#!/bin/sh</span>
  11. <span class="nv">m</span><span class="o">=</span><span class="k">$(</span>/usr/bin/certbot renew <span class="m">2</span>&gt;<span class="p">&amp;</span><span class="m">1</span><span class="k">)</span>
  12. curl -fsS -m <span class="m">10</span> --retry <span class="m">5</span> --data-raw <span class="s2">&quot;</span><span class="nv">$m</span><span class="s2">&quot;</span> PING_URL
  13. </code></pre></div>
  14. <h2>In Combination with the <code>/fail</code> and <code>/{exit-status}</code> Endpoints</h2>
  15. <p>We can extend the previous example and signal either success or failure
  16. depending on the exit code:</p>
  17. <div class="highlight"><pre><span></span><code><span class="ch">#!/bin/sh</span>
  18. <span class="nv">m</span><span class="o">=</span><span class="k">$(</span>/usr/bin/certbot renew <span class="m">2</span>&gt;<span class="p">&amp;</span><span class="m">1</span><span class="k">)</span>
  19. curl -fsS -m <span class="m">10</span> --retry <span class="m">5</span> --data-raw <span class="s2">&quot;</span><span class="nv">$m</span><span class="s2">&quot;</span> PING_URL/<span class="nv">$?</span>
  20. </code></pre></div>
  21. <h2>Using Runitor</h2>
  22. <p><a href="https://github.com/bdd/runitor">Runitor</a> is a third party utility that runs the
  23. supplied command, captures its output and reports to SITE_NAME.
  24. It also measures the execution time and retries HTTP requests on transient errors.
  25. Best of all, the syntax is simple and clean:</p>
  26. <div class="highlight"><pre><span></span><code>runitor -uuid your-uuid-here -- /usr/bin/certbot renew
  27. </code></pre></div>
  28. <h2>Handling More Than 10KB of Logs</h2>
  29. <p>While SITE_NAME can store a small amount of logs in a pinch, it is not specifically
  30. designed for that. If you run into the issue of logs getting cut off, consider
  31. the following options:</p>
  32. <ul>
  33. <li>See if the logs can be made less verbose. For example, if you have a batch job
  34. that outputs a line of text per item processed, perhaps it can output a summary with
  35. the totals instead.</li>
  36. <li>If the important content is usually at the end, submit the <strong>last 10KB</strong> instead
  37. of the first. Here is an example that submits the last 10KB of <code>dmesg</code> output:</li>
  38. </ul>
  39. <div class="highlight"><pre><span></span><code><span class="ch">#!/bin/sh</span>
  40. <span class="nv">m</span><span class="o">=</span><span class="k">$(</span>dmesg <span class="p">|</span> tail --bytes<span class="o">=</span><span class="m">10000</span><span class="k">)</span>
  41. curl -fsS -m <span class="m">10</span> --retry <span class="m">5</span> --data-raw <span class="s2">&quot;</span><span class="nv">$m</span><span class="s2">&quot;</span> PING_URL
  42. </code></pre></div>
  43. <ul>
  44. <li>Finally, if it is critical to capture the entire log output,
  45. consider using a dedicated log aggregation service for capturing the logs.</li>
  46. </ul>