You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specs/agents/configuration.md
+10-14Lines changed: 10 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,20 +33,16 @@ emit a log warning about the ignored value.
33
33
34
34
### Configuration Value Types
35
35
36
-
The following table enumerates the available configuration types across the
37
-
agents:
38
-
39
-
40
-
| Type | Description (if needed) |
41
-
|------|-------------------------|
42
-
| String ||
43
-
| Integer ||
44
-
| Float ||
45
-
| Boolean | Encoded as a lower-case boolean string: `"false"`, `"true"`|
46
-
| List | Encoded as a comma-separated string (whitespace surrounding items should be stripped): `"foo,bar,baz"`|
47
-
| Mapping | Encoded as a string, with `"key=value"` pairs separated by commas (whitespace surrounding items should be stripped): `"foo=bar,baz=foo"`|
48
-
| Duration | Case-sensitive string with duration encoded using unit suffixes (`ms` for millisecond, `s` for second, `m` for minute). Validating regex: `^(-)?(\d+)(ms|s|m)$` |
49
-
| Size | Case-insensitive string with a positive size encoded using unit suffixes (`b` for bytes, `kb` for kilobytes, `mb` for megabytes, `gb` for gigabytes, with a 1024 multiplier between each unit). Validating regex: `^(\d+)(b|kb|mb|gb)$` |
36
+
The following list enumerates the available configuration types across the agents:
37
+
38
+
-`String`
39
+
-`Integer`
40
+
-`Float`
41
+
-`Boolean`: Encoded as a lower-case boolean string: `"false"`, `"true"`.
42
+
-`List`: Encoded as a comma-separated string (whitespace surrounding items should be stripped): `"foo,bar,baz"`.
43
+
-`Mapping`: Encoded as a string, with `"key=value"` pairs separated by commas (whitespace surrounding items should be stripped): `"foo=bar,baz=foo"`.
44
+
-`Duration`: Case-sensitive string with duration encoded using unit suffixes (`ms` for millisecond, `s` for second, `m` for minute). Validating regex: `^(-)?(\d+)(ms|s|m)$`.
45
+
-`Size`: Case-insensitive string with a positive size encoded using unit suffixes (`b` for bytes, `kb` for kilobytes, `mb` for megabytes, `gb` for gigabytes, with a 1024 multiplier between each unit). Validating regex: `^(\d+)(b|kb|mb|gb)$`.
0 commit comments