{# Rendered JSONL events page (opened from the slideover's "View JSONL events for this probe" evidence link). Replaces the raw text/event-stream dump the link used to open in a new tab. The route (_collect_jsonl_records) pretty- prints each record server-side; a tiny dependency-free highlighter colors keys / strings / numbers / bools / null client-side. ``rec.pretty`` is autoescaped inside
 (safe); the highlighter reads
   textContent, re-escapes, then wraps tokens in spans — so no markup injection
   from operator-untrusted event payloads. #}



  
  
  JSONL events · {{ scan_id }}{% if probe %} · {{ probe }}{% endif %}
  


  

JSONL events

scan {{ scan_id }}{% if probe %} · probe {{ probe }}{% endif %}

{% if records %}

{{ records|length }} event{{ '' if records|length == 1 else 's' }}{% if probe %} for this probe{% endif %}

{% for rec in records %}
{{ rec.kind }} {% if rec.seq is not none %}seq {{ rec.seq }}{% endif %} {{ rec.source }}
{{ rec.pretty }}
{% endfor %} {% else %}

No JSONL events found{% if probe %} for this probe{% endif %}.

{% endif %}