File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -105,11 +105,11 @@ using object literals:
105
105
106
106
## Language reference
107
107
108
- ### Built-in properties
108
+ ### Properties
109
109
110
110
The following properties are available in expressions:
111
111
112
- * All first-class properties of the event; no special syntax: ` SourceContext ` and ` Items ` are used in the formatting example above
112
+ * ** All first-class properties of the event** & mdash ; no special syntax: ` SourceContext ` and ` Items ` are used in the formatting example above
113
113
* ` @t ` - the event's timestamp, as a ` DateTimeOffset `
114
114
* ` @m ` - the rendered message
115
115
* ` @mt ` - the raw message template
@@ -142,7 +142,8 @@ A typical set of operators is supported:
142
142
* Existence ` is null ` and ` is not null `
143
143
* SQL-style ` like ` and ` not like ` , with ` % ` and ` _ ` wildcards (double wildcards to escape them)
144
144
* Array membership with ` in ` and ` not in `
145
- * Indexers ` a[b] ` and accessors ` a.b `
145
+ * Accessors ` a.b `
146
+ * Indexers ` a['b'] ` and ` a[0] `
146
147
* Wildcard indexing - ` a[?] ` any, and ` a[*] ` all
147
148
* Conditional ` if a then b else c ` (all branches required)
148
149
You can’t perform that action at this time.
0 commit comments