Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(vrl): add example syntax for valid expressions. #21963

Merged
merged 4 commits into from
Dec 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions website/cue/reference/remap/syntax/expressions.cue
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package metadata

remap: syntax: expressions: {
title: "Expressions"
description: """
VRL programs are made up of literal and dynamic expressions, described more in detail below. Expressions can be sparated by newline, or by using a semicolon.
Fixed Show fixed Hide fixed
"""

examples: [
"""
# newline delimited expressions
del(.user_info)
.timestamp = now()
""",
"""
# semicolon delimited expressions
del(.user_info); .timestamp = now()
"""
]
}
Loading