Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 5693292

Browse files
committed
fix cloudevents many links, and other typos
1 parent 98503ac commit 5693292

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docs/targets/http.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This event target receives [CloudEvents][ce] and turns them into HTTP requests t
66

77
The HTTP event target sends requests to arbitrary URLs and wraps responses in CloudEvents back to the caller. HTTP endpoints that are unauthenticated, use basic authentication or use custom header values for authentication, can be integrated using this target.
88

9-
Responses from external HTTP endpoints are converted into [CloudEvents][ce] and sent as a reply to the TriggerMesh Broker/Channel. It is important that the HTTP target filters received events and cares about response event type and event source to avoid loops where those responses might end up being processed by the HTTP Target.
9+
Responses from external HTTP endpoints are converted into CloudEvents and sent as a reply to the TriggerMesh Broker/Channel. It is important that the HTTP target filters received events and cares about response event type and event source to avoid loops where those responses might end up being processed by the HTTP Target.
1010

1111
Requests from this HTTP target will verify TLS certificates from the remote server if present. If the CA certificate at the server is self-signed, the public certificate needs to be added to the configuration, or alternatively mark the `Skip Verify` option.
1212

@@ -31,7 +31,7 @@ Save the target, fill the rest of the bridge components, and press `Submit Bridg
3131

3232
## Trigger Configuration
3333

34-
Responses from the remote endpoint will generate new [CloudEvents][ce] that will be returned to TriggerMesh. Those response events should not be re-processed by the HTTP Target.
34+
Responses from the remote endpoint will generate new CloudEvents that will be returned to TriggerMesh. Those response events should not be re-processed by the HTTP Target.
3535

3636
It is important that the Trigger that subscribes the HTTP Target to the Broker configure the appropriate filters to avoid these loops.
3737

@@ -45,9 +45,9 @@ Trigger should be configured to avoid feeding these responses into the HTTP Targ
4545

4646
## Events Types
4747

48-
The HTTP Target expects a cloud event request that complements the Target configured values.
48+
The HTTP Target expects a CloudEvent request that complements the Target configured values.
4949

50-
There is no requirement regarding the type header value. Any cloud event containing the expected data is valid to process. Data needs to be a JSON structure that might contain these optional fields:
50+
There is no requirement regarding the type header value. Any CloudEvent containing the expected data is valid to process. Data needs to be a JSON structure that might contain these optional fields:
5151

5252

5353
| Field | Description | Example |
@@ -56,7 +56,7 @@ There is no requirement regarding the type header value. Any cloud event contain
5656
| path_suffix | Will be appended to the target's path | `apparel/tshirts` |
5757
| body | String to be set as the request body | `{\"size\":\"L\",\"color\":\"beige\"}` |
5858

59-
Cloud Event data examples:
59+
CloudEvent data examples:
6060

6161
```json
6262
{"path_suffix":"world/italy/cities", "query_string":"top=10&format=csv"}
@@ -68,5 +68,4 @@ If body is a JSON structure, it will need to be _stringified_
6868
{"body": "{\"records\":[{\"value\":{\"this\":{\"is\": \"sparta\"}}}]}"}
6969
```
7070

71-
7271
[ce]: https://cloudevents.io

0 commit comments

Comments
 (0)