VRL

1 program Added 2026-03-05T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Vector Remap Language
Provenance: commit 1e2285e072 · authored 2026-03-05T11:12:09+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

SVL (0.34)Rez (0.31)VQL (0.30)Io (0.28)Xi (0.28)

LLM-contributed programs

Syslog Parser and Classifier

Provenance: commit 1e2285e072 · authored 2026-03-05T11:12:09+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.vrl · license: Apache-2.0 · added: 2026-03-05T10:00:00Z
. = parse_syslog!(.message)

# Normalize log level to lowercase
.level = downcase(string!(.severity))

# Add processing metadata
.processed_at = now()
.host = get_hostname!()

# Classify severity
if .level == "error" || .level == "crit" || .level == "alert" || .level == "emerg" {
  .is_critical = true
} else {
  .is_critical = false
}

# Remove raw message to save space
del(.message)

Contribute — propose a file extension

Tell us where to find evidence about VRL (mapped to pl/vrl). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/VRL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Vrejvax VRML →