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.

55 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 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 you can inspect it later.</p>
  6. <h2>Logging Command Output</h2>
  7. <p>In this example, we run <code>certbot renew</code>, capture its output (both the stdout
  8. and stderr streams), and submit the captured output to SITE_NAME:</p>
  9. <div class="bash highlight"><pre><span></span><code><span class="ch">#!/bin/sh</span>
  10. <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>
  11. 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
  12. </code></pre></div>
  13. <h2>In Combination with the <code>/fail</code> and <code>/{exit-status}</code> Endpoints</h2>
  14. <p>We can extend the previous example and signal either success or failure
  15. depending on the exit code:</p>
  16. <div class="bash highlight"><pre><span></span><code><span class="ch">#!/bin/sh</span>
  17. <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>
  18. 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>
  19. </code></pre></div>
  20. <h2>Using Runitor</h2>
  21. <p><a href="https://github.com/bdd/runitor">Runitor</a> is a third party utility that runs the
  22. supplied command, captures its output and and reports to SITE_NAME.
  23. It also measures the execution time, and retries HTTP requests on transient errors.
  24. Best of all, the syntax is simple and clean:</p>
  25. <div class="bash highlight"><pre><span></span><code>runitor -uuid your-uuid-here -- /usr/bin/certbot renew
  26. </code></pre></div>
  27. <h2>Handling More Than 10KB of Logs</h2>
  28. <p>While SITE_NAME can store a small amount of logs in a pinch, it is not specifically
  29. designed for that. If you run into the issue of logs getting cut off, consider
  30. the following options:</p>
  31. <ul>
  32. <li>See if the logs can be made less verbose. For example, if you have a batch job
  33. that outputs a line of text per item processed, perhaps it can output a short
  34. summary with the totals instead.</li>
  35. <li>If the important content is usually at the end, submit the <strong>last 10KB</strong> instead
  36. of the first. Here is an example that submits the last 10KB of <code>dmesg</code> output:</li>
  37. </ul>
  38. <div class="bash highlight"><pre><span></span><code><span class="ch">#!/bin/sh</span>
  39. <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>
  40. 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
  41. </code></pre></div>
  42. <ul>
  43. <li>Finally, if for your use case it is critical to capture the entire log output,
  44. consider using a dedicated log aggregation service for capturing the logs.</li>
  45. </ul>