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
For manual installation of the tool directly from archives, navigate to [Git Releases](https://github.com/SolaceLabs/solace-tryme-cli/releases), locate the latest release and review the zip files (approprietly named with the target OS name) under **Assets**. Download the right bundle based on your OS and extract the binary/executable. Move the binary/executable file to a folder that is in the *PATH* or update the path to contain the folder where the file is present.
92
+
For manual installation of the tool directly from archives, navigate to [Git Releases](https://github.com/SolaceLabs/solace-tryme-cli/releases), locate the latest release and review the zip files (appropriately named with the target OS name) under **Assets**. Download the right bundle based on your OS and extract the binary/executable. Move the binary/executable file to a folder that is in the *PATH* or update the path to contain the folder where the file is present.
Copy file name to clipboardExpand all lines: documentation/EVENT_FEEDS.md
+17-2Lines changed: 17 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ stm
40
40
├── list /* List event feeds */
41
41
├── import /* Import an event feed from archive file */
42
42
├── export /* Export an event feed to Event Portal */
43
-
├── archive/* Archive an event feed */
43
+
├── download /* Download an event feed as archive */
44
44
└── contribute /* Contribute to community event feeds */
45
45
```
46
46
@@ -140,6 +140,19 @@ Generate a Feed| Validate the Feed
140
140
141
141
The `configure` sub-command enables setting up data generation rules for *topic* and *payload* parameters. It also allows optional mapping of attributes (e.g., `topic parameter → payload attribute, payload attribute → another attribute`).
142
142
143
+
```
144
+
Usage: stm feed configure [options]
145
+
146
+
Configure event feed rules
147
+
148
+
Options:
149
+
-feed, --feed-name <FEED_NAME> the feed name
150
+
-port, --manage-port [PORT] the port for the manager (default: 0)
151
+
152
+
/* HELP OPTIONS */
153
+
-h, --help display help for command
154
+
```
155
+
143
156
To learn about supported data generation rules, refer to the documentation: [Data Generation Rules](./DATAGENERATION_RULES.md)
144
157
145
158
An Event Feed configuration exposes feed operations — send and receive events and their schemas. Under the *Messages* group, you can explore all exposed `messages` (events). Selecting a message reveals its details, including `name, schema`, and the `topics` it uses for send and receive operations.
@@ -212,7 +225,7 @@ Options:
212
225
-feed, --feed-name <FEED_NAME> the feed name
213
226
-events, --event-names <EVENT_NAME...> the event name(s) as space-separated values if listing more than one (e.g., "Loan_Applied" "Loan_Approved" )
214
227
-community, --community-feed [BOOLEAN] a community feed (default: false)
215
-
-c, --config <CONFIG_FILE> the configuration file (default: "stm-cli-config.json")
228
+
--config <CONFIG_FILE> the configuration file (default: "stm-cli-config.json")
216
229
217
230
/* MESSAGE SETTINGS */
218
231
--count <COUNT> the number of events to publish (default: 1)
@@ -226,6 +239,8 @@ Options:
226
239
-hm, --help-more display more help for command with options not shown in basic help
227
240
-h, --help display help for command
228
241
```
242
+
243
+
> **NOTE**: The `stm feed run` command supports all the messaging parameters available in the `stm send` command, including advanced connection settings, message properties, session settings, and publish settings. For a complete list of all available options (including advanced ones), use the `--help-more` flag or refer to the [Messaging Parameters documentation](./MESSAGING_PARAMETERS.md).
0 commit comments