Skip to content
Novus Examples

Log file fixtures

Access logs and JSON-lines application logs — for testing log parsers, tailers, and ingestion pipelines.

129 of 129 files
Preview of Nginx Access Log
log
398 B
Actual file preview for Nginx Access Log

Nginx Access Log

An nginx combined-format access log with several requests, including a 403 and a 404 — for testing log parsers.

File
LOG · Logs · 4 records
Use case
Log parsing
Preview of JSON-Lines Application Log
jsonl
351 B
Actual file preview for JSON-Lines Application Log

JSON-Lines Application Log

A structured application log with one JSON object per line at info/debug/warn/error levels — for testing log ingestion.

File
JSONL · Logs · 4 records
Use case
Log parsing
Preview of Apache Access Log — Common Format (log)
log
3.7 KB
Actual file preview for Apache Access Log — Common Format (log)

Apache Access Log — Common Format (log)

An Apache access log in the Common Log Format (CLF) — client, timestamp, request line, status, and byte count. Deterministic, with reserved documentation IPs. Paired with a Combined-format twin for testing log parsers.

File
LOG · Logs
Use case
Log parsingData import+1· Conversion set
Preview of Apache Access Log — Combined Format (log)
log
7.8 KB
Actual file preview for Apache Access Log — Combined Format (log)

Apache Access Log — Combined Format (log)

An Apache access log in the Combined Log Format — the Common fields plus referer and user-agent. A realistic web-server log for testing access-log parsers, analytics, and grok patterns.

File
LOG · Logs
Use case
Log parsingData import+1· Conversion set
Preview of Syslog Messages — RFC 3164 (log)
log
2.9 KB
Actual file preview for Syslog Messages — RFC 3164 (log)

Syslog Messages — RFC 3164 (log)

A BSD-style syslog (RFC 3164) sample — timestamp, host, process and PID, then the message, across sshd, cron, kernel, nginx, and application entries. A fixture for testing syslog parsers and forwarders.

File
LOG · Logs
Preview of Docker Container Log — json-file driver (log)
log
2.4 KB
Actual file preview for Docker Container Log — json-file driver (log)

Docker Container Log — json-file driver (log)

A Docker json-file container log — one JSON object per line with the log text, stream (stdout/stderr), and an RFC 3339 timestamp, exactly as Docker's default logging driver writes it. A fixture for container-log shippers and parsers.

File
LOG · Logs
Preview of Kubernetes Component Log — klog (log)
log
2.5 KB
Actual file preview for Kubernetes Component Log — klog (log)

Kubernetes Component Log — klog (log)

A Kubernetes-component log in the klog/glog format — a severity letter, timestamp, thread id, and source location prefix followed by the message. A fixture for testing klog parsers and severity extraction.

File
LOG · Logs
Preview of Structured Log — logfmt (log)
log
4 KB
Actual file preview for Structured Log — logfmt (log)

Structured Log — logfmt (log)

A structured application log in logfmt — space-separated key=value pairs (ts, level, msg, method, path, status, duration, request_id) as used by many Go and Heroku-style services. A fixture for testing logfmt parsers.

File
LOG · Logs
Preview of Java Stack Trace (log)
log
916 B
Actual file preview for Java Stack Trace (log)

Java Stack Trace (log)

A realistic Java stack trace — a Spring-style NullPointerException with a nested 'Caused by' chain and '... N more' elision. A fixture for testing stack-trace parsers, error groupers, and log viewers.

File
LOG · Logs · 8 frames
Use case
Log parsingError handling· Conversion set
Preview of Python Traceback (log)
log
631 B
Actual file preview for Python Traceback (log)

Python Traceback (log)

A realistic Python traceback with a chained exception ('During handling of the above exception...') and a caret error indicator. A fixture for testing traceback parsers and error-reporting tools.

File
LOG · Logs · 4 frames
Use case
Log parsingError handling· Conversion set
Preview of Node.js Stack Trace (log)
log
551 B
Actual file preview for Node.js Stack Trace (log)

Node.js Stack Trace (log)

A realistic Node.js/Express stack trace — a TypeError with V8-style 'at function (file:line:col)' frames including an async frame and internal node: frames. A fixture for testing JS stack-trace parsers.

File
LOG · Logs · 7 frames
Use case
Log parsingError handling· Conversion set
Preview of JUnit XML — Maven-Surefire Dialect (surefire)
xml
3.2 KB
Actual file preview for JUnit XML — Maven-Surefire Dialect (surefire)

JUnit XML — Maven-Surefire Dialect (surefire)

The same 12-case Novus Checkout run written the way maven-surefire 3.2 writes it. Maven Surefire merges its per-class files under a <testsuites> root and adds a <properties> block plus system-out/system-err on every suite. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — Pytest Dialect (pytest)
xml
2.7 KB
Actual file preview for JUnit XML — Pytest Dialect (pytest)

JUnit XML — Pytest Dialect (pytest)

The same 12-case Novus Checkout run written the way pytest 8.2 --junitxml writes it. pytest emits a single <testsuite name="pytest"> whose classname is the dotted module path, and decorates each case with file and line attributes. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — @Playwright/Test Dialect (playwright)
xml
2.8 KB
Actual file preview for JUnit XML — @Playwright/Test Dialect (playwright)

JUnit XML — @Playwright/Test Dialect (playwright)

The same 12-case Novus Checkout run written the way @playwright/test 1.47 junit reporter writes it. Playwright puts the run totals on the <testsuites> root, names each suite after its spec file, and uses the bare describe title as classname. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — Jest-Junit Dialect (jest-junit)
xml
3 KB
Actual file preview for JUnit XML — Jest-Junit Dialect (jest-junit)

JUnit XML — Jest-Junit Dialect (jest-junit)

The same 12-case Novus Checkout run written the way jest-junit 16 writes it. jest-junit repeats the whole "describe > it" title in both classname and name, which breaks dashboards that assume classname is a package. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — Gradle Dialect (gradle)
xml
2.8 KB
Actual file preview for JUnit XML — Gradle Dialect (gradle)

JUnit XML — Gradle Dialect (gradle)

The same 12-case Novus Checkout run written the way Gradle 8.9 Test task writes it. Gradle writes hostname and timestamp on every suite and an empty self-closing <properties/> element that some parsers mishandle. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — Vitest Dialect (vitest)
xml
2.8 KB
Actual file preview for JUnit XML — Vitest Dialect (vitest)

JUnit XML — Vitest Dialect (vitest)

The same 12-case Novus Checkout run written the way vitest 2.0 junit reporter writes it. Vitest names the root suite after the elapsed time and uses the spec file path as classname for every case. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — Go-Junit-Report Dialect (go-junit-report)
xml
2.8 KB
Actual file preview for JUnit XML — Go-Junit-Report Dialect (go-junit-report)

JUnit XML — Go-Junit-Report Dialect (go-junit-report)

The same 12-case Novus Checkout run written the way go-junit-report 2.1 writes it. go-junit-report names each suite after a Go package and carries the toolchain version in a go.version property. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — Phpunit Dialect (phpunit)
xml
3.2 KB
Actual file preview for JUnit XML — Phpunit Dialect (phpunit)

JUnit XML — Phpunit Dialect (phpunit)

The same 12-case Novus Checkout run written the way PHPUnit 11.2 --log-junit writes it. PHPUnit nests per-class suites inside a named parent suite and adds an assertions count that no other dialect reports. All eight dialect files in this group report 12 tests, 1 failure, 1 error and 1 skip, so a JUnit parser can be held to identical totals across every producer.

File
XML · Junit XML · UTF-8
Use case
Conversion testingError handling+1· Conversion set
Preview of JUnit XML — All Tests Passing
xml
754 B
Actual file preview for JUnit XML — All Tests Passing

JUnit XML — All Tests Passing

A clean green run: six passing cases, zero failures, errors and skips. The baseline a CI gate should treat as success, and the control case for any dashboard that colours a build from the failure count.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — One Failing Test
xml
818 B
Actual file preview for JUnit XML — One Failing Test

JUnit XML — One Failing Test

Three cases, one of them failing with an assertion message and a CDATA stack trace. The smallest report that must turn a build red, and the one to test a failure-summary renderer against.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Multiple Failures Across Classes
xml
1.6 KB
Actual file preview for JUnit XML — Multiple Failures Across Classes

JUnit XML — Multiple Failures Across Classes

Three failures spread across three different classes in one suite. Use it to check that a reporter lists every failure rather than stopping at the first, and that it groups them by classname rather than by suite.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Error and Failure Distinguished
xml
1.1 KB
Actual file preview for JUnit XML — Error and Failure Distinguished

JUnit XML — Error and Failure Distinguished

One <failure> (an assertion that did not hold) and one <error> (an exception the test never expected), side by side. Parsers that collapse the two lose the distinction between a broken assertion and a broken environment.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Every Test Skipped
xml
756 B
Actual file preview for JUnit XML — Every Test Skipped

JUnit XML — Every Test Skipped

A suite in which every case was skipped, so tests equals skipped and nothing actually ran. A gate that reads only the failure count calls this green; one that checks executed>0 catches it.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Empty Suite (Zero Tests)
xml
236 B
Actual file preview for JUnit XML — Empty Suite (Zero Tests)

JUnit XML — Empty Suite (Zero Tests)

A structurally valid report containing a suite with no <testcase> children at all — what a runner writes when a filter matched nothing. Aggregators that divide by the test count to compute a pass rate hit a zero denominator here.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Mixed Pass, Fail, Error and Skip
xml
2 KB
Actual file preview for JUnit XML — Mixed Pass, Fail, Error and Skip

JUnit XML — Mixed Pass, Fail, Error and Skip

The full canonical run flattened into a single suite: nine passes, one failure, one error and one skip. This is the same twelve cases the eight dialect files carry, so totals can be compared straight across.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — 240-Case Suite
xml
18.7 KB
Actual file preview for JUnit XML — 240-Case Suite

JUnit XML — 240-Case Suite

240 cases across six classes, three of them failing. Big enough to time a parser and to check that a report UI paginates or virtualises rather than rendering every row, but still small enough to read.

File
XML · Junit XML · UTF-8
Use case
Performance testingConversion testing+1· Conversion set
Preview of JUnit XML — Passed-on-Retry (flakyFailure)
xml
930 B
Actual file preview for JUnit XML — Passed-on-Retry (flakyFailure)

JUnit XML — Passed-on-Retry (flakyFailure)

A case that failed on its first attempt and passed on the retry, recorded with Surefire's <flakyFailure> child. The suite counters say zero failures, so a parser that ignores the extension element reports a clean run and loses the flake entirely.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Skip with Message and Body
xml
681 B
Actual file preview for JUnit XML — Skip with Message and Body

JUnit XML — Skip with Message and Body

A skipped case whose reason appears twice — in the message attribute and again as CDATA text inside the <skipped> element. Reporters that read only the attribute silently drop the longer explanation.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Multi-line Assertion Diff
xml
737 B
Actual file preview for JUnit XML — Multi-line Assertion Diff

JUnit XML — Multi-line Assertion Diff

A failure whose message contains an expected/actual diff with angle brackets and newlines, the shape assertion libraries actually produce. Good for checking that a dashboard escapes the message for HTML and keeps its line breaks.

File
XML · Junit XML · UTF-8
Use case
Error handlingConversion testing+1· Conversion set
Preview of JUnit XML — Timestamp, Hostname and Package Metadata
xml
725 B
Actual file preview for JUnit XML — Timestamp, Hostname and Package Metadata

JUnit XML — Timestamp, Hostname and Package Metadata

Every optional run-metadata attribute a JUnit suite may carry — timestamp, hostname, package, id — plus a properties block holding build and branch identifiers. Use it to test that a dashboard reads build context from the report instead of from its own environment.

File
XML · Junit XML · UTF-8
Use case
Metadata testingConversion testing+1· Conversion set
Preview of JUnit XML — Console Output in CDATA
xml
558 B
Actual file preview for JUnit XML — Console Output in CDATA

JUnit XML — Console Output in CDATA

Captured stdout and stderr wrapped in CDATA, where the stdout text itself looks like XML markup. A parser must treat the CDATA content as opaque characters; one that re-parses it finds a <report> element that does not exist.

File
XML · Junit XML · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of Flaky Run — Timing Race, Build #101 (passing)
xml
800 B
Actual file preview for Flaky Run — Timing Race, Build #101 (passing)

Flaky Run — Timing Race, Build #101 (passing)

Build #101 of five consecutive runs of checkout.SessionTest, in which expiresSessionAfterTimeout is passing while the other five cases pass every time. The underlying cause is a 250 ms sleep racing the session expiry sweep. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Timing Race, Build #102 (failing)
xml
1 KB
Actual file preview for Flaky Run — Timing Race, Build #102 (failing)

Flaky Run — Timing Race, Build #102 (failing)

Build #102 of five consecutive runs of checkout.SessionTest, in which expiresSessionAfterTimeout is failing while the other five cases pass every time. The underlying cause is a 250 ms sleep racing the session expiry sweep. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Timing Race, Build #103 (passing)
xml
800 B
Actual file preview for Flaky Run — Timing Race, Build #103 (passing)

Flaky Run — Timing Race, Build #103 (passing)

Build #103 of five consecutive runs of checkout.SessionTest, in which expiresSessionAfterTimeout is passing while the other five cases pass every time. The underlying cause is a 250 ms sleep racing the session expiry sweep. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Timing Race, Build #104 (failing)
xml
1 KB
Actual file preview for Flaky Run — Timing Race, Build #104 (failing)

Flaky Run — Timing Race, Build #104 (failing)

Build #104 of five consecutive runs of checkout.SessionTest, in which expiresSessionAfterTimeout is failing while the other five cases pass every time. The underlying cause is a 250 ms sleep racing the session expiry sweep. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Timing Race, Build #105 (passing)
xml
800 B
Actual file preview for Flaky Run — Timing Race, Build #105 (passing)

Flaky Run — Timing Race, Build #105 (passing)

Build #105 of five consecutive runs of checkout.SessionTest, in which expiresSessionAfterTimeout is passing while the other five cases pass every time. The underlying cause is a 250 ms sleep racing the session expiry sweep. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Order Dependent, Build #201 (passing)
xml
787 B
Actual file preview for Flaky Run — Order Dependent, Build #201 (passing)

Flaky Run — Order Dependent, Build #201 (passing)

Build #201 of five consecutive runs of cart.DiscountTest, in which stacksDiscountsInDeclaredOrder is passing while the other five cases pass every time. The underlying cause is a shared coupon cache left populated by a sibling test under random ordering. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Order Dependent, Build #202 (failing)
xml
1.1 KB
Actual file preview for Flaky Run — Order Dependent, Build #202 (failing)

Flaky Run — Order Dependent, Build #202 (failing)

Build #202 of five consecutive runs of cart.DiscountTest, in which stacksDiscountsInDeclaredOrder is failing while the other five cases pass every time. The underlying cause is a shared coupon cache left populated by a sibling test under random ordering. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Order Dependent, Build #203 (failing)
xml
1.1 KB
Actual file preview for Flaky Run — Order Dependent, Build #203 (failing)

Flaky Run — Order Dependent, Build #203 (failing)

Build #203 of five consecutive runs of cart.DiscountTest, in which stacksDiscountsInDeclaredOrder is failing while the other five cases pass every time. The underlying cause is a shared coupon cache left populated by a sibling test under random ordering. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Order Dependent, Build #204 (passing)
xml
787 B
Actual file preview for Flaky Run — Order Dependent, Build #204 (passing)

Flaky Run — Order Dependent, Build #204 (passing)

Build #204 of five consecutive runs of cart.DiscountTest, in which stacksDiscountsInDeclaredOrder is passing while the other five cases pass every time. The underlying cause is a shared coupon cache left populated by a sibling test under random ordering. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Order Dependent, Build #205 (passing)
xml
787 B
Actual file preview for Flaky Run — Order Dependent, Build #205 (passing)

Flaky Run — Order Dependent, Build #205 (passing)

Build #205 of five consecutive runs of cart.DiscountTest, in which stacksDiscountsInDeclaredOrder is passing while the other five cases pass every time. The underlying cause is a shared coupon cache left populated by a sibling test under random ordering. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Network Dependency, Build #301 (errored)
xml
1.1 KB
Actual file preview for Flaky Run — Network Dependency, Build #301 (errored)

Flaky Run — Network Dependency, Build #301 (errored)

Build #301 of five consecutive runs of checkout.PaymentTest, in which capturesAuthorisedPayment is errored while the other five cases pass every time. The underlying cause is a real call to the fictional payments host instead of the stub. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Network Dependency, Build #302 (passing)
xml
800 B
Actual file preview for Flaky Run — Network Dependency, Build #302 (passing)

Flaky Run — Network Dependency, Build #302 (passing)

Build #302 of five consecutive runs of checkout.PaymentTest, in which capturesAuthorisedPayment is passing while the other five cases pass every time. The underlying cause is a real call to the fictional payments host instead of the stub. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Network Dependency, Build #303 (passing)
xml
800 B
Actual file preview for Flaky Run — Network Dependency, Build #303 (passing)

Flaky Run — Network Dependency, Build #303 (passing)

Build #303 of five consecutive runs of checkout.PaymentTest, in which capturesAuthorisedPayment is passing while the other five cases pass every time. The underlying cause is a real call to the fictional payments host instead of the stub. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Network Dependency, Build #304 (passing)
xml
800 B
Actual file preview for Flaky Run — Network Dependency, Build #304 (passing)

Flaky Run — Network Dependency, Build #304 (passing)

Build #304 of five consecutive runs of checkout.PaymentTest, in which capturesAuthorisedPayment is passing while the other five cases pass every time. The underlying cause is a real call to the fictional payments host instead of the stub. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Network Dependency, Build #305 (errored)
xml
1.1 KB
Actual file preview for Flaky Run — Network Dependency, Build #305 (errored)

Flaky Run — Network Dependency, Build #305 (errored)

Build #305 of five consecutive runs of checkout.PaymentTest, in which capturesAuthorisedPayment is errored while the other five cases pass every time. The underlying cause is a real call to the fictional payments host instead of the stub. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Quarantined After Two Failures, Build #401 (failing)
xml
992 B
Actual file preview for Flaky Run — Quarantined After Two Failures, Build #401 (failing)

Flaky Run — Quarantined After Two Failures, Build #401 (failing)

Build #401 of five consecutive runs of cart.PricingTest, in which appliesTaxToSubtotal is failing while the other five cases pass every time. The underlying cause is a rounding boundary that only trips when the tax rate table is reloaded. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Quarantined After Two Failures, Build #402 (failing)
xml
992 B
Actual file preview for Flaky Run — Quarantined After Two Failures, Build #402 (failing)

Flaky Run — Quarantined After Two Failures, Build #402 (failing)

Build #402 of five consecutive runs of cart.PricingTest, in which appliesTaxToSubtotal is failing while the other five cases pass every time. The underlying cause is a rounding boundary that only trips when the tax rate table is reloaded. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Quarantined After Two Failures, Build #403 (quarantined)
xml
846 B
Actual file preview for Flaky Run — Quarantined After Two Failures, Build #403 (quarantined)

Flaky Run — Quarantined After Two Failures, Build #403 (quarantined)

Build #403 of five consecutive runs of cart.PricingTest, in which appliesTaxToSubtotal is quarantined while the other five cases pass every time. The underlying cause is a rounding boundary that only trips when the tax rate table is reloaded. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Quarantined After Two Failures, Build #404 (quarantined)
xml
846 B
Actual file preview for Flaky Run — Quarantined After Two Failures, Build #404 (quarantined)

Flaky Run — Quarantined After Two Failures, Build #404 (quarantined)

Build #404 of five consecutive runs of cart.PricingTest, in which appliesTaxToSubtotal is quarantined while the other five cases pass every time. The underlying cause is a rounding boundary that only trips when the tax rate table is reloaded. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of Flaky Run — Quarantined After Two Failures, Build #405 (quarantined)
xml
846 B
Actual file preview for Flaky Run — Quarantined After Two Failures, Build #405 (quarantined)

Flaky Run — Quarantined After Two Failures, Build #405 (quarantined)

Build #405 of five consecutive runs of cart.PricingTest, in which appliesTaxToSubtotal is quarantined while the other five cases pass every time. The underlying cause is a rounding boundary that only trips when the tax rate table is reloaded. Read the whole family in build order to reproduce what a flake detector sees.

File
XML · Flaky Runs
Use case
Error handlingLog parsing+1· Conversion set
Preview of TAP — Plan First, All Passing
tap
251 B
Actual file preview for TAP — Plan First, All Passing

TAP — Plan First, All Passing

The canonical TAP shape: a version line, a leading plan, then six passing assertions in order. Anything a TAP consumer does with a real stream it must do with this one first.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Trailing Plan
tap
182 B
Actual file preview for TAP — Trailing Plan

TAP — Trailing Plan

The same stream with the plan at the end, which is what a harness emits when it does not know the test count up front. A consumer that requires a leading plan rejects a perfectly valid stream.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Failures with YAML Diagnostics
tap
435 B
Actual file preview for TAP — Failures with YAML Diagnostics

TAP — Failures with YAML Diagnostics

Two failing assertions, each followed by an indented YAML diagnostic block carrying the expected and actual values and a file/line location. The block is where every useful failure message in TAP lives, and it is the part naive line-based parsers throw away.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Bail Out Mid-Run
tap
214 B
Actual file preview for TAP — Bail Out Mid-Run

TAP — Bail Out Mid-Run

A run abandoned after the third assertion with a Bail out! line, leaving five of the planned eight assertions unreported. The run is a failure even though only one assertion said not ok, and a consumer must not report 2/3 passing as a 67% pass rate.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Comments and Diagnostic Lines
tap
350 B
Actual file preview for TAP — Comments and Diagnostic Lines

TAP — Comments and Diagnostic Lines

Free-form # comment lines interleaved with assertions, including a trailing summary block. Comments carry no result and must never shift assertion numbering, which is exactly what a parser counting lines instead of ok/not ok tokens gets wrong.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Plan Count Does Not Match
tap
331 B
Actual file preview for TAP — Plan Count Does Not Match

TAP — Plan Count Does Not Match

Every assertion in this stream says ok, but the plan promised ten and only eight arrived — the signature of a runner that crashed after its last reported assertion. A consumer that only counts not ok lines calls this a clean pass.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — SKIP Directives
tap
344 B
Actual file preview for TAP — SKIP Directives

TAP — SKIP Directives

Two assertions marked # SKIP with a reason, alongside a genuine failure. Skipped assertions are written as ok, so counting ok lines reports 5 passes when only 3 tests actually ran.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — TODO Directives
tap
299 B
Actual file preview for TAP — TODO Directives

TAP — TODO Directives

Two failing assertions marked # TODO, meaning they are known-unfinished work rather than regressions. A TODO failure must not fail the run, so a consumer that treats every not ok as a build breaker turns this green run red.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — TODO That Unexpectedly Passed
tap
220 B
Actual file preview for TAP — TODO That Unexpectedly Passed

TAP — TODO That Unexpectedly Passed

Assertion 2 is marked TODO but reports ok — an unexpected success, which means the feature landed and the marker is now stale. Harnesses such as prove report this as a bonus rather than a pass, and dropping the distinction lets stale TODOs accumulate forever.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Entire Plan Skipped
tap
87 B
Actual file preview for TAP — Entire Plan Skipped

TAP — Entire Plan Skipped

A whole suite declined in a single line: a zero-length plan with a SKIP directive and a reason. It is a valid, complete TAP stream containing no assertions, and a consumer must report it as skipped rather than as an empty pass or a parse error.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Nested Subtests (Indented)
tap
367 B
Actual file preview for TAP — Nested Subtests (Indented)

TAP — Nested Subtests (Indented)

Two subtests, each an indented TAP stream with its own plan, rolled up into two top-level assertions. Flatten it and you count seven assertions instead of two; ignore the indentation and the nested failure is counted twice.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of TAP — Version 14 Subtest Syntax
tap
383 B
Actual file preview for TAP — Version 14 Subtest Syntax

TAP — Version 14 Subtest Syntax

TAP 14 with an explicit version line and a pragma inside a subtest. Consumers pinned to version 13 either reject the stream outright or ignore the pragma, so this file separates the two behaviours.

File
TAP · Tap · UTF-8
Use case
Log parsingError handling+1· Conversion set
Preview of Cucumber JUnit XML — Checkout Run
xml
823 B
Actual file preview for Cucumber JUnit XML — Checkout Run

Cucumber JUnit XML — Checkout Run

The same six pickles reported as JUnit XML, which is what a BDD suite hands to a generic CI dashboard. One <testcase> per pickle means the three expanded outline rows appear as three tests with identical names — enough to break any store keyed on name alone.

File
XML · Bdd · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of NUnit 3 — Test Result XML
xml
6.5 KB
Actual file preview for NUnit 3 — Test Result XML

NUnit 3 — Test Result XML

The NUnit 3 test-run document, with a nested Assembly/TestFixture suite tree, an environment element and per-case seeds. NUnit has no separate error outcome, so the errored case appears as Failed with label="Error" and the report reads failed=2. Reports the same canonical run as the JUnit dialect files: 12 tests, 9 passed, 1 assertion failure, 1 error and 1 skip.

File
XML · Runners · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of MSTest — TRX Result File
trx
14 KB
Actual file preview for MSTest — TRX Result File

MSTest — TRX Result File

The `dotnet test` TRX document in full: Times, TestSettings, Results, TestDefinitions, TestEntries, TestLists and a ResultSummary with sixteen counters. Results and definitions are joined on GUIDs, so a converter that reads only <Results> loses every class name. Reports the same canonical run as the JUnit dialect files: 12 tests, 9 passed, 1 assertion failure, 1 error and 1 skip.

File
TRX · Runners · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of Robot Framework — output.xml
xml
6.2 KB
Actual file preview for Robot Framework — output.xml

Robot Framework — output.xml

Robot Framework's output.xml, in which every keyword call carries its own status element and a trailing statistics section restates the totals by tag and by suite. Robot 7 reports elapsed seconds rather than the endtime attribute older versions used, so schemaversion is what a reader must branch on. Reports the same canonical run as the JUnit dialect files: 12 tests, 9 passed, 1 assertion failure, 1 error and 1 skip.

File
XML · Runners · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of TestNG — testng-results.xml
xml
4.5 KB
Actual file preview for TestNG — testng-results.xml

TestNG — testng-results.xml

TestNG's own result document, with suite/test/class/test-method nesting, signature attributes and full stack traces in CDATA. TestNG has no error status, so the errored case is reported as FAIL and the header attributes read failed=2. Reports the same canonical run as the JUnit dialect files: 12 tests, 9 passed, 1 assertion failure, 1 error and 1 skip.

File
XML · Runners · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of xUnit.net — v2 Assembly Results
xml
3.4 KB
Actual file preview for xUnit.net — v2 Assembly Results

xUnit.net — v2 Assembly Results

The xUnit.net v2 shape: an <assemblies> root holding one assembly, whose tests are grouped into collections rather than classes. Result values are Pass, Fail and Skip with capital initials, which trips converters doing a case-sensitive comparison against the lowercase values every other format uses. Reports the same canonical run as the JUnit dialect files: 12 tests, 9 passed, 1 assertion failure, 1 error and 1 skip.

File
XML · Runners · UTF-8
Use case
Conversion testingLog parsing+1· Conversion set
Preview of JUnit XML — Truncated Mid-Element (intentionally corrupt)
xml
449 B
Actual file preview for JUnit XML — Truncated Mid-Element (intentionally corrupt)

JUnit XML — Truncated Mid-Element (intentionally corrupt)

An intentionally corrupt JUnit report: the file ends in the middle of a testcase attribute value, exactly as it would if the CI worker were killed while the reporter was still writing. Three elements are left unclosed and the document is not well-formed XML. A parser must fail loudly rather than report the two complete cases as the whole run.

File
XML · Corrupt
Use case
Error handlingConversion testing+1· Conversion set
Preview of Git Log - --oneline Output
log
291 B
Actual file preview for Git Log - --oneline Output

Git Log - --oneline Output

Six commits as `git log --oneline` prints them: an abbreviated hash, a space, and the subject line. Every subject follows Conventional Commits, including one with a `!` breaking marker, so a release-notes generator can be scored against a known answer.

File
LOG · History · UTF-8
Preview of Git Log - Default Format With Conventional Commit Bodies
log
1.7 KB
Actual file preview for Git Log - Default Format With Conventional Commit Bodies

Git Log - Default Format With Conventional Commit Bodies

The default `git log` format for the same six commits: full 40-character hashes, Author and Date headers, and message bodies indented by exactly four spaces with genuinely empty separator lines. One commit carries a `BREAKING CHANGE:` footer and another a `Fixes:` footer, which is the shape a changelog generator has to find.

File
LOG · History · UTF-8
Preview of Git Log - --name-status With Rename Scores
log
568 B
Actual file preview for Git Log - --name-status With Rename Scores

Git Log - --name-status With Rename Scores

Per-commit file lists with single-letter status codes, tab-separated. Rename rows are the trap: `R100` is followed by TWO paths instead of one, so a splitter that takes field 2 as the filename reports the old path for renames and the new path for everything else.

File
LOG · History · UTF-8
Preview of Git Log - --numstat With a Binary Row
log
585 B
Actual file preview for Git Log - --numstat With a Binary Row

Git Log - --numstat With a Binary Row

Machine-readable insertion and deletion counts per file. Two rows break naive arithmetic: the binary file reports `-` in both numeric columns rather than 0, and the rename path is brace-compressed into `docs/{README.md => guide.md}` rather than written out twice.

File
LOG · History · UTF-8
Preview of Git Shortlog - Commits Grouped by Author
log
333 B
Actual file preview for Git Shortlog - Commits Grouped by Author

Git Shortlog - Commits Grouped by Author

The author-grouped summary git generates for release notes: a name, a commit count in parentheses, and the subjects indented by six spaces. The counts here are what the .mailmap fixture in this category produces after coalescing aliases, so the two files can be used together.

File
LOG · History · UTF-8
Preview of Git Blame - Porcelain Format With Repeated Commit Headers
log
958 B
Actual file preview for Git Blame - Porcelain Format With Repeated Commit Headers

Git Blame - Porcelain Format With Repeated Commit Headers

The stable machine format of git blame: a full header block the first time a commit appears and a bare `<sha> <old> <new>` line every time after, with each source line following on a tab-prefixed line. A parser that expects the header on every group loses the author of every line after the first.

File
LOG · History · UTF-8
Preview of Git Status - Porcelain v1 With Every Status Pair
log
190 B
Actual file preview for Git Status - Porcelain v1 With Every Status Pair

Git Status - Porcelain v1 With Every Status Pair

Porcelain v1 output covering staged-only, worktree-only, added, renamed, deleted, unmerged, untracked and ignored entries. The two status characters are positional and a space is meaningful, so trimming the line before parsing turns ' M' (modified but unstaged) into 'M' (staged).

File
LOG · History · UTF-8
Use case
Log parsingVisual diff / regression+1· Conversion set
Preview of Git Status - Porcelain v2 With Branch Headers
log
757 B
Actual file preview for Git Status - Porcelain v2 With Branch Headers

Git Status - Porcelain v2 With Branch Headers

The v2 format for the same working tree: `# branch.*` headers first, then one record per entry whose leading character selects a completely different field layout. Rename records put the new path first and separate the two paths with a TAB rather than an arrow, and unmerged records carry three object ids instead of two.

File
LOG · History · UTF-8
Use case
Log parsingVisual diff / regression+1· Conversion set
Preview of Structured Application Log — 300 JSON Lines (jsonl)
jsonl
100.8 KB
Actual file preview for Structured Application Log — 300 JSON Lines (jsonl)

Structured Application Log — 300 JSON Lines (jsonl)

Three hundred newline-delimited JSON log records from five services, each with a timestamp, level, logger, message, a nested http object and request and order identifiers. The severity mix is counted in the spec table, so a level filter can be asserted rather than eyeballed.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Multi-Line Stack Traces Inside JSON (jsonl)
jsonl
2.8 KB
Actual file preview for Structured Log — Multi-Line Stack Traces Inside JSON (jsonl)

Structured Log — Multi-Line Stack Traces Inside JSON (jsonl)

Java, Python and Go stack traces carried inside JSON string fields with their newlines escaped — the shape a structured logger produces, and the one that defeats multi-line joining rules written for plain text. Includes a Caused by chain and a goroutine dump.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Trace-Correlated Records (jsonl)
jsonl
4 KB
Actual file preview for Structured Log — Trace-Correlated Records (jsonl)

Structured Log — Trace-Correlated Records (jsonl)

One log record per span of the canonical checkout trace, each carrying trace_id, span_id, parent_span_id and trace flags. The logs-to-traces jump with a target that actually exists in this catalog, so a correlation query can be verified end to end.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Out-of-Order Timestamps (jsonl)
jsonl
5.3 KB
Actual file preview for Structured Log — Out-of-Order Timestamps (jsonl)

Structured Log — Out-of-Order Timestamps (jsonl)

Records whose ts field moves backwards seven times while emitted_seq stays monotonic — what a buffered shipper produces when several workers flush concurrently. The fixture for sort-on-ingest, late-arrival windows and any index that assumes append order equals time order.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Clock Skew Across Three Hosts (jsonl)
jsonl
8.6 KB
Actual file preview for Structured Log — Clock Skew Across Three Hosts (jsonl)

Structured Log — Clock Skew Across Three Hosts (jsonl)

Three hosts writing to one stream with disagreeing clocks: one 45 seconds behind and one six hours ahead because NTP is unreachable. Interleaved by host, so a naive tail shows events from the future and a retention window silently drops the past.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Ten Timestamp Formats, One Instant (jsonl)
jsonl
961 B
Actual file preview for Structured Log — Ten Timestamp Formats, One Instant (jsonl)

Structured Log — Ten Timestamp Formats, One Instant (jsonl)

The same instant written ten ways — RFC 3339 at three precisions and with a non-UTC offset, epoch seconds as integer and float, epoch milliseconds and nanoseconds, Common Log Format and the log4j comma-decimal form. What a timestamp autodetector must resolve to one moment.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — High-Cardinality Label Fields (jsonl)
jsonl
58 KB
Actual file preview for Structured Log — High-Cardinality Label Fields (jsonl)

Structured Log — High-Cardinality Label Fields (jsonl)

Every record carries five fields that are unique to it — session, customer, device, pod name and container ID. Harmless as log text, ruinous the moment they are promoted to indexed labels, which is the mistake this fixture exists to make measurable.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Schema and Type Drift Across Records (jsonl)
jsonl
877 B
Actual file preview for Structured Log — Schema and Type Drift Across Records (jsonl)

Structured Log — Schema and Type Drift Across Records (jsonl)

Six records that all mean the same thing and disagree about how to say it: status as a number, a string, a float and the text OK; user as a string, an object and null; tags as an array and a scalar; and the level and message fields renamed. The mapping conflict that stops an index mid-ingest.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Duplicate Keys in One JSON Object (jsonl)
jsonl
383 B
Actual file preview for Structured Log — Duplicate Keys in One JSON Object (jsonl)

Structured Log — Duplicate Keys in One JSON Object (jsonl)

Records whose objects declare the same key twice, including one where the duplicate changes the severity from debug to error. RFC 8259 permits duplicate names and leaves the outcome undefined, so last-wins and first-wins parsers disagree about what these records say.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Deeply Nested and Very Wide Context (jsonl)
jsonl
4.6 KB
Actual file preview for Structured Log — Deeply Nested and Very Wide Context (jsonl)

Structured Log — Deeply Nested and Very Wide Context (jsonl)

One record nested 24 levels deep, one with 200 sibling keys and one holding a 12 by 12 array of arrays. Field-flattening pipelines turn these into hundreds of dotted keys, and depth limits truncate them silently — this is where both behaviours become visible.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Truncated Final Record, Intentionally Corrupt (jsonl)
jsonl
4.1 KB
Actual file preview for Structured Log — Truncated Final Record, Intentionally Corrupt (jsonl)

Structured Log — Truncated Final Record, Intentionally Corrupt (jsonl)

Twelve complete JSON records followed by a thirteenth cut off after 96 bytes with no trailing newline, exactly as a container log looks when the process is killed mid-write. Intentionally corrupt and small: a tailer must hold the partial line for a continuation rather than emit or discard it.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — One Oversized Record Between Normal Ones (jsonl)
jsonl
75.3 KB
Actual file preview for Structured Log — One Oversized Record Between Normal Ones (jsonl)

Structured Log — One Oversized Record Between Normal Ones (jsonl)

A single record of about 75 KB — a request body accidentally logged — sitting between two ordinary ones. Most shippers cap a line at 16 or 64 KB and either split it into invalid JSON fragments or drop the records around it; this file makes which one happen visible.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Unicode, RTL, Emoji and Control Characters (jsonl)
jsonl
888 B
Actual file preview for Structured Log — Unicode, RTL, Emoji and Control Characters (jsonl)

Structured Log — Unicode, RTL, Emoji and Control Characters (jsonl)

Log messages in Latin, Japanese and Arabic scripts, an emoji flag and a zero-width-joiner family, NFC and NFD forms of the same accented letter, and escaped tab, newline and carriage return. Everything that makes a log line's byte length and its display width disagree.

File
JSONL · Logs · UTF-8, unescaped
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Blank, Non-JSON and BOM-Prefixed Lines (jsonl)
jsonl
1.8 KB
Actual file preview for Structured Log — Blank, Non-JSON and BOM-Prefixed Lines (jsonl)

Structured Log — Blank, Non-JSON and BOM-Prefixed Lines (jsonl)

A JSON Lines file with the debris a real container stream carries: blank and whitespace-only lines, one bare stderr write from a C library, a mid-file byte-order mark and two lines that are valid JSON but not objects. Five real records are in there.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of OTLP Logs — Export Document with Severity and Trace Correlation (json)
json
8.9 KB
Actual file preview for OTLP Logs — Export Document with Severity and Trace Correlation (json)

OTLP Logs — Export Document with Severity and Trace Correlation (json)

An OTLP logs export across two resources: five records spanning DEBUG to FATAL with both severityNumber and severityText, separate event and observed timestamps, trace and span correlation, and one record whose body is a full multi-line Python traceback.

File
JSON · Logs
Use case
ObservabilityJSON parsing+1· Conversion set
Preview of Plain-Text Log — Multi-Line Events Needing Line Joining (log)
log
1.9 KB
Actual file preview for Plain-Text Log — Multi-Line Events Needing Line Joining (log)

Plain-Text Log — Multi-Line Events Needing Line Joining (log)

A Spring-style text log where two stack traces span many physical lines. Eight logical events across a larger number of lines, so a shipper's multi-line rule — anything not starting with a timestamp continues the previous event — can be scored against a known answer.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Go Panic with Full Goroutine Dump (log)
log
879 B
Actual file preview for Go Panic with Full Goroutine Dump (log)

Go Panic with Full Goroutine Dump (log)

A Go panic followed by the runtime's full goroutine dump — four goroutines with their wait states, two-line frames and a created by attribution, separated by blank lines. Blank-line separation defeats multi-line rules that treat an empty line as the end of an event.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Rust Panic with Numbered Backtrace (log)
log
974 B
Actual file preview for Rust Panic with Numbered Backtrace (log)

Rust Panic with Numbered Backtrace (log)

A Rust panic surrounded by ordinary tracing output: the panic location with line and column, a six-frame numbered backtrace where every frame spans two lines, and the RUST_BACKTRACE note. Frame numbering and the deep indent are what a generic stack parser gets wrong here.

File
LOG · Logs · 6 frames
Use case
ObservabilityLog parsing+1· Conversion set
Preview of .NET Exception with an Inner Exception Chain (log)
log
1.1 KB
Actual file preview for .NET Exception with an Inner Exception Chain (log)

.NET Exception with an Inner Exception Chain (log)

A .NET exception whose inner exception is introduced by the ---> marker and closed by End of inner exception stack trace, wrapped in pipe-delimited log lines. Error groupers that key on the outermost message alone merge two genuinely different faults here.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of CRI Container Log — Partial Lines and Two Streams (log)
log
800 B
Actual file preview for CRI Container Log — Partial Lines and Two Streams (log)

CRI Container Log — Partial Lines and Two Streams (log)

The CRI log format Kubernetes nodes actually write: an RFC 3339 nanosecond timestamp, a stream name, and an F or P tag marking whether the line is full or a partial continuation. One long message is split across several P lines that must be rejoined before parsing.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of systemd Journal — Export Format Entries (log)
log
2 KB
Actual file preview for systemd Journal — Export Format Entries (log)

systemd Journal — Export Format Entries (log)

Five journal entries in systemd's export format — KEY=value lines separated by blank lines, with the double-underscore address fields, a syslog PRIORITY number rather than a level name, and microsecond timestamps. A parser must map priority 3 to error and 6 to info itself.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Plain-Text Log — ANSI Colour Codes in the Stream (log)
log
623 B
Actual file preview for Plain-Text Log — ANSI Colour Codes in the Stream (log)

Plain-Text Log — ANSI Colour Codes in the Stream (log)

A developer-mode log where the level and service are wrapped in ANSI colour codes, ending with one uncoloured line. Colour codes sit inside the field a parser wants to read, so level extraction fails unless the sequences are stripped first — the classic symptom of a container run without a TTY check.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Plain-Text Log — Mixed CRLF and LF Line Endings (log)
log
500 B
Actual file preview for Plain-Text Log — Mixed CRLF and LF Line Endings (log)

Plain-Text Log — Mixed CRLF and LF Line Endings (log)

One log file written by two agents, four lines ending CRLF and three LF, with one line carrying trailing spaces before its break. Splitting on \n alone leaves a stray carriage return at the end of four fields, which is how a level or status ends up with an invisible character attached.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Plain-Text Log — No Trailing Newline on the Last Line (log)
log
245 B
Actual file preview for Plain-Text Log — No Trailing Newline on the Last Line (log)

Plain-Text Log — No Trailing Newline on the Last Line (log)

Four log lines where the last has no terminating newline — the normal state of any file still open for append. A tailer that only emits on seeing a newline holds that fourth line forever, which is why the newest error is the one missing from the dashboard.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Plain-Text Log — NUL, Control Bytes and Invalid UTF-8 (log)
log
421 B
Actual file preview for Plain-Text Log — NUL, Control Bytes and Invalid UTF-8 (log)

Plain-Text Log — NUL, Control Bytes and Invalid UTF-8 (log)

Five log lines carrying a NUL byte, bell, backspace, vertical tab and form feed, plus one 0xFF byte that is not valid UTF-8 — the debris that arrives when binary data reaches a log field. Deliberately contains no terminal-escape sequences, only inert control bytes.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Envoy-Style Proxy Access Log — JSON Lines (jsonl)
jsonl
18.8 KB
Actual file preview for Envoy-Style Proxy Access Log — JSON Lines (jsonl)

Envoy-Style Proxy Access Log — JSON Lines (jsonl)

Forty service-mesh proxy access records with the fields that make mesh debugging possible: response_flags distinguishing an upstream failure from an overflow, upstream_service_time against total duration, upstream host and cluster, and a request ID for correlation.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Kubernetes Audit Log — Six Events with an RBAC Denial (jsonl)
jsonl
4 KB
Actual file preview for Kubernetes Audit Log — Six Events with an RBAC Denial (jsonl)

Kubernetes Audit Log — Six Events with an RBAC Denial (jsonl)

Six Kubernetes audit events at two audit levels, including one 403 whose authorization annotations record the forbid decision and its reason. The shape a cluster-audit alert or compliance report reads, with every user and service account invented.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of logfmt — Quoting, Escaping and Bare-Key Edge Cases (log)
log
882 B
Actual file preview for logfmt — Quoting, Escaping and Bare-Key Edge Cases (log)

logfmt — Quoting, Escaping and Bare-Key Edge Cases (log)

logfmt lines built to break naive splitting on spaces and equals signs: a value containing an equals sign, escaped quotes, a trailing backslash before the closing quote, a bare key with no value, duplicate keys, non-ASCII values and one unterminated quote followed by a clean line.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Syslog RFC 5424 — Structured Data Elements (log)
log
1.3 KB
Actual file preview for Syslog RFC 5424 — Structured Data Elements (log)

Syslog RFC 5424 — Structured Data Elements (log)

Five RFC 5424 syslog messages with the version digit, a full RFC 3339 timestamp and two structured-data elements per line — including one carrying the trace ID from this category's trace fixtures. The modern syslog most parsers still handle as if it were RFC 3164.

File
LOG · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of Structured Log — Sampling Decisions and Drop Counters (jsonl)
jsonl
12.5 KB
Actual file preview for Structured Log — Sampling Decisions and Drop Counters (jsonl)

Structured Log — Sampling Decisions and Drop Counters (jsonl)

Logs that record their own sampling decision, with periodic dropped_since_last counters so the true event rate can be reconstructed from a sampled stream. Counting sampled records as if they were the whole population is the mistake this fixture is built to expose.

File
JSONL · Logs
Use case
ObservabilityLog parsing+1· Conversion set
Preview of CPU Profile — Folded Stacks, Baseline (txt)
txt
1.2 KB
Actual file preview for CPU Profile — Folded Stacks, Baseline (txt)

CPU Profile — Folded Stacks, Baseline (txt)

A CPU profile in the folded-stack format every flamegraph tool reads: one line per unique stack, frames separated by semicolons, then a space and a sample count. Twelve stacks up to seven frames deep, with the runtime's GC and scheduler work included as real profiles have.

File
TXT · Profiles
Use case
ObservabilityPerformance testing+1· Paired fixture
Preview of Wall-Clock Profile — Per-Thread Folded Stacks (txt)
txt
498 B
Actual file preview for Wall-Clock Profile — Per-Thread Folded Stacks (txt)

Wall-Clock Profile — Per-Thread Folded Stacks (txt)

A 30-second wall-clock profile with the thread name as the root frame, so time blocked in reads is visible instead of invisible. Off-CPU time dominates — the shape that tells you a service is waiting, not computing, which a CPU profile alone cannot show.

File
TXT · Profiles
Use case
ObservabilityPerformance testing+1· Conversion set
Preview of Profile — 200-Frame Recursive Stack (txt)
txt
13.5 KB
Actual file preview for Profile — 200-Frame Recursive Stack (txt)

Profile — 200-Frame Recursive Stack (txt)

A recursive-descent parser profiled mid-recursion: stacks up to 204 frames deep where one frame repeats 200 times, on lines over 3,000 characters. Flamegraph renderers with a fixed depth limit truncate this silently, and line-length limits split it into nonsense.

File
TXT · Profiles
Use case
ObservabilityPerformance testing+1· Conversion set
Preview of Profile — Demangled Symbols That Break the Folded Format (txt)
txt
618 B
Actual file preview for Profile — Demangled Symbols That Break the Folded Format (txt)

Profile — Demangled Symbols That Break the Folded Format (txt)

Demangled C++ templates, Rust trait impls, Java generics, lambdas and unresolved hex addresses in the folded format — including one symbol containing a semicolon, which the format has no way to escape. That line is genuinely ambiguous, and how a parser handles it is the point.

File
TXT · Profiles
Use case
ObservabilityLog parsing+1· Conversion set
Preview of pprof — Top Report Text Output (txt)
txt
2 KB
Actual file preview for pprof — Top Report Text Output (txt)

pprof — Top Report Text Output (txt)

The text report pprof prints for the same profile as the folded fixtures: a metadata header, then flat and cumulative columns where frames that are never a leaf carry zero flat time and near-total cumulative time. Column-aligned output with a bare 0 rather than 0s, which is where naive column parsing fails.

File
TXT · Profiles · 28 rows
Use case
ObservabilityPerformance testing+1· Conversion set
Preview of pprof — Annotated Source Listing (txt)
txt
1.1 KB
Actual file preview for pprof — Annotated Source Listing (txt)

pprof — Annotated Source Listing (txt)

Line-level profile output: two routines with per-source-line flat and cumulative cost, a dot for lines that cost nothing, and units that switch between seconds and milliseconds within one column. Source lines keep their real tabs, which most column parsers do not survive.

File
TXT · Profiles
Use case
ObservabilityPerformance testing+1· Conversion set
Preview of Linux perf script — Sample Records with Call Chains (txt)
txt
2.6 KB
Actual file preview for Linux perf script — Sample Records with Call Chains (txt)

Linux perf script — Sample Records with Call Chains (txt)

Raw perf script output — a header line per sample followed by tab-indented call-chain frames with addresses, symbols, offsets and DSO paths, samples separated by blank lines. The input side of stackcollapse, including unresolved frames a symbolizer could not name.

File
TXT · Profiles
Use case
ObservabilityPerformance testing+1· Conversion set
Preview of Alert State History — Pending, Firing and Resolved Transitions (jsonl)
jsonl
3.9 KB
Actual file preview for Alert State History — Pending, Firing and Resolved Transitions (jsonl)

Alert State History — Pending, Firing and Resolved Transitions (jsonl)

Sixteen state transitions across four alerts, each moving inactive to pending to firing to resolved with the previous state recorded. The pending stage is where a for: duration is being served and no notification is sent, which is what makes alert-noise analysis possible.

File
JSONL · Alerts
Preview of Grype Table Console Output
txt
434 B
Actual file preview for Grype Table Console Output

Grype Table Console Output

The console table a scanner prints, in fixed-width columns — the output people actually paste into tickets, and the one a log scraper has to parse without a delimiter. Advisory identifiers use the invented NOVUS-SAMPLE namespace with SAMPLE-CVE aliases; no identifier here refers to a published CVE, GHSA or OSV record, and no package named exists.

File
TXT · Vulnerability · 4 rows
Use case
Log parsingConversion testing+1· Conversion set
Preview of npm ls Dependency Tree (Text)
txt
507 B
Actual file preview for npm ls Dependency Tree (Text)

npm ls Dependency Tree (Text)

The console tree with box-drawing characters and `deduped` markers on repeat visits — the output people paste into issues, and a genuine test of whether a scraper handles non-ASCII tree glyphs. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs · UTF-8
Use case
Log parsingGraph data+1· Conversion set
Preview of Maven dependency:tree Output
txt
971 B
Actual file preview for Maven dependency:tree Output

Maven dependency:tree Output

Maven's dependency tree, complete with the [INFO] log prefix that has to be stripped before the tree can be read and the five-part coordinate form Maven uses. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of Gradle dependencies Report Output
txt
801 B
Actual file preview for Gradle dependencies Report Output

Gradle dependencies Report Output

Gradle's dependency report, which marks repeat subtrees with `(*)` and explains the marker in a footer — so a parser has to resolve those references back to their first occurrence. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of go mod graph Edge List
txt
703 B
Actual file preview for go mod graph Edge List

go mod graph Edge List

`go mod graph` output: a flat edge list, one `parent@version child@version` pair per line with no indentation at all — the simplest graph serialisation in this category and the easiest to diff. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of cargo tree Output
txt
511 B
Actual file preview for cargo tree Output

cargo tree Output

Cargo's tree output, which writes versions with a leading `v` and marks already-shown subtrees with `(*)` — close enough to npm's tree to fool a parser, different enough to break one. Every package, version, hash and licence is fictional — the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set