From d7007d13c9e9207b58cf95958cd61739e02129c4 Mon Sep 17 00:00:00 2001 From: Charlie Harrison Date: Mon, 22 Jan 2024 12:33:43 -0600 Subject: [PATCH] Update --- ts/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ts/README.md b/ts/README.md index 8f66121044..1f46936992 100644 --- a/ts/README.md +++ b/ts/README.md @@ -28,15 +28,23 @@ On responses: Examples: +The `flexible-event` utility accepts comma-separated lists of the +number of windows and summary buckets per trigger data. This is +essentially an unzipped list of two-tuples, one per trigger data. + ```sh npm run flexible-event -- -w 1,2,3 -b 4,5,6 ``` +The utility also will parse (in a rudimentary way) the source registration +JSON to compute the number of windows / summary buckets. + ```sh npm run flexible-event -- -f /path/to/source_registration.json ``` Here is an example which matches the default config for navigation sources: + ```sh npm run flexible-event -- -w 3,3,3,3,3,3,3,3 -b 3,3,3,3,3,3,3,3 -m 3 -t navigation ```