summaryrefslogtreecommitdiff
path: root/doc/asciinema
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-07-22 23:52:52 +0300
committerPaul Buetow <paul@buetow.org>2026-07-22 23:52:52 +0300
commit3004a7100e325c006971cc2e8d0f157338c0ce5c (patch)
treeb9d2be78433b2d6e13be6344357d1f81fa9ec44b /doc/asciinema
parent17bf7e042496a4afcbf6ee7a583378adb3ec502d (diff)
docs: DTail fork — documentation, agent guide, example configsHEADmaster
Squashed development of the documentation and example configuration: - AGENTS.md / CLAUDE.md: repository guide describing build/test/benchmark/PGO workflows and the single default read/output path (formerly "turbo"). - doc/ and docs/: query-language reference, log formats, auth-key fast reconnect, journal source reads, performance analyses (dated point-in-time records kept under historical-note disclaimers), and the turbo-vs-normal benchmark report with its result CSVs. - README.md updates; examples/ config + JSON schema aligned with the current Output* server tuning fields (the removed TurboBoost* keys dropped). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Diffstat (limited to 'doc/asciinema')
-rw-r--r--doc/asciinema/README.md41
1 files changed, 0 insertions, 41 deletions
diff --git a/doc/asciinema/README.md b/doc/asciinema/README.md
deleted file mode 100644
index 1eb1a2e..0000000
--- a/doc/asciinema/README.md
+++ /dev/null
@@ -1,41 +0,0 @@
-asciinema
-=========
-
-The animated Gifs you find in the DTail docs were created using:
-
-* [asciinema](https://asciinema.org)
-* [asciicast2gif](https://github.com/asciinema/asciicast2gif)
-
-On Fedora Linux 35.
-
-## Installing prerequisites
-
-On Fedora Linux 35 install `asciinema`:
-
-```shell
-% sudo dnf install -y asciinema
-```
-
-and `asciicast2gif` (for simplicity, the Docker image was used):
-
-```shell
-% docker pull asciinema/asciicast2gif
-```
-
-This of course assumes that Docker is up and running on your machine (out of scope for this documentation).
-
-## Record a shell session
-
-This is as simple as running
-
-```shell
-% asciinema rec recording.json
-```
-
-This will launch a sub-shell to be recorded. Once done, exit the sub-shell with `exit`.
-
-## Convert the recording to a gif
-
-```shell
-% docker run --rm -v $PWD:/data asciinema/asciicast2gif -t tango -s 2 recording.json recording.gif
-```