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
fix: keep only the from_strings method to create an AgentType (#288)
# Description
Allow direct creation of agent type only via the from_strings method.
Signed-off-by: Zsolt Kacsándi <[email protected]>
Signed-off-by: Mauro Sardara <[email protected]>
Co-authored-by: Mauro Sardara <[email protected]>
Copy file name to clipboardExpand all lines: data-plane/testing/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,15 @@ Options:
22
22
#### Workload file structure
23
23
The names used by the gateway are in the form
24
24
```
25
-
organinzation/namespace/agent_class/agent_id
25
+
organization/namespace/agent_class/agent_id
26
26
```
27
27
These four components are strings decided by the application. For performance reason the gateway internally encodes these strings in u64 values. The workload generator application ignores the strings and creates random names by generating four random u64.
28
28
29
29
A subscription is represented as follow
30
30
```
31
31
SUB 24 7 9025227877545173655 4093485893050047688 12129358409937561971 3376091243880048110
32
32
```
33
-
-```SUB``` indicates that the line is a subscription
33
+
-```SUB``` indicates that the line is a subscription
34
34
-```24``` is the index of the subscription
35
35
-```7``` is the ID of the subscriber that will generate the subscription. This is randomly generated and is a value between 0 and ```AGENTS``` that is provided as input. Be sure to spawn enough subscriber apps (see below) to cover all the IDs
36
36
- the last for numbers are random generated and are the subscription name in the form ```organization/namespace/agent_class/agent_id```
0 commit comments