Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] Fix Table (was markdown) #3084

Merged
merged 1 commit into from
Jul 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 25 additions & 7 deletions docs/en/integrations/system-testing.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -211,13 +211,31 @@ whose input type matches the `input` value will be tested. By default, the first

The `SERVICE_LOGS_DIR` placeholder is not the only one available for use in a data stream's `test-<test_name>-config.yml` file. The complete list of available placeholders is shown below.

| Placeholder name | Data type | Description |
| --- | --- | --- |
| `Hostname`| string | Addressable host name of the integration service. |
| `Ports` | []int | Array of addressable ports the integration service is listening on. |
| `Port` | int | Alias for `Ports[0]`. Provided as a convenience. |
| `Logs.Folder.Agent` | string | Path to integration service's logs folder, as addressable by the Agent. |
| `SERVICE_LOGS_DIR` | string | Alias for `Logs.Folder.Agent`. Provided as a convenience. |
[cols="1,1,1"]
|===
|Placeholder name |Data type |Description

|`Hostname`
|string
|Addressable host name of the integration service.

|`Ports`
|[]int
|Array of addressable ports the integration service is listening on.

|`Port`
|int
|Alias for `Ports[0]`. Provided as a convenience.

|`Logs.Folder.Agent`
|string
|Path to integration service's logs folder, as addressable by the Agent.

|`SERVICE_LOGS_DIR`
|string
|Alias for `Logs.Folder.Agent`. Provided as a convenience.

|===

Placeholders used in the `test-<test_name>-config.yml` must be enclosed in `{{` and `}}` delimiters, per Handlebars syntax.

Expand Down
Loading