diff --git a/docpage/docs/03.- Sources/AWS/S3.md b/docpage/docs/03.- Sources/AWS/S3.md index d58d91ee..b4ef6382 100644 --- a/docpage/docs/03.- Sources/AWS/S3.md +++ b/docpage/docs/03.- Sources/AWS/S3.md @@ -12,6 +12,9 @@ The S3 Source requires: Here is an example of the configuration file. Check the documentation of [AWS credentials](/dcnios/docs/Sources/AWS/) to define the Access Key and Secret Key. +S3 Source consists of the following component: +- GetSQS + ``` GetS3: - name: S3 diff --git a/docpage/docs/03.- Sources/AWS/SQS.md b/docpage/docs/03.- Sources/AWS/SQS.md index 89bedb40..2e97ee5d 100644 --- a/docpage/docs/03.- Sources/AWS/SQS.md +++ b/docpage/docs/03.- Sources/AWS/SQS.md @@ -13,6 +13,9 @@ SQS Source consumes from an AWS SQS queue. It creates an SQS in creation time, r Here is an example of the configuration file. Check the documentation of [AWS credentials](/dcnios/docs/Sources/AWS/) to define the Access Key and Secret Key. +SQS Source consists of the following component: +- GetSQS + ``` SQS: - name: sqs diff --git a/docpage/docs/03.- Sources/Kafka.md b/docpage/docs/03.- Sources/Kafka.md index fef02e85..b3791538 100644 --- a/docpage/docs/03.- Sources/Kafka.md +++ b/docpage/docs/03.- Sources/Kafka.md @@ -14,6 +14,10 @@ The Kafka Source allows us to consume a Kafka topic. It requires this informatio An SSL connection between NiFi and Kafka is necessary. A PKCS12 certificate and the certificate's password must be provided. + +Kafka Source consists of the following component: +- ConsumeKafka_2_6 + ``` Kafka: - name: kafka diff --git a/docpage/docs/03.- Sources/dcache.md b/docpage/docs/03.- Sources/dcache.md index 6be1e07d..c58480ce 100644 --- a/docpage/docs/03.- Sources/dcache.md +++ b/docpage/docs/03.- Sources/dcache.md @@ -9,7 +9,7 @@ dCache is a Source that listens into a dCache instance. The following values mus - Folder of dCache where keeps an active listening.Required. - Statefile is the file that will store the state. Please, do not employ `dcache` as its name, as it may cause problems. Required. -The dCache Source only works when the NiFi cluster is deployed with the image `ghcr.io/grycap/nifi-sse:latest`, is composed of: +The dCache Source only works when the NiFi cluster is deployed with the image `ghcr.io/grycap/nifi-sse:latest`, consists of the following component: - ExecuteProcess - GetFile diff --git a/docpage/docs/04.- Destinations/OSCAR.md b/docpage/docs/04.- Destinations/OSCAR.md index 41d9ede3..7e605652 100644 --- a/docpage/docs/04.- Destinations/OSCAR.md +++ b/docpage/docs/04.- Destinations/OSCAR.md @@ -11,7 +11,7 @@ The OSCAR Destination invokes an OSCAR service asynchronously: - Token or user/password. User/password or token. The user/password has priority over the token. Please, do not edit the OSCAR services. Required. -Destination is composed of this component: +OSCAR Destination consists of the following component: - InvokeOSCAR diff --git a/docpage/docs/05.- Alterations/Decode.md b/docpage/docs/05.- Alterations/Decode.md index 0bef27c4..00edb5eb 100644 --- a/docpage/docs/05.- Alterations/Decode.md +++ b/docpage/docs/05.- Alterations/Decode.md @@ -15,4 +15,9 @@ Here is the YAML example. alterations: - action: Decode Encoding: base64 -``` \ No newline at end of file +``` + +Decode Alteration consists of the following component: +-EncodeContent + +In this case, DCNiOS uses the same file as the Encode ProcessGroup; it simply changes the configuration. \ No newline at end of file diff --git a/docpage/docs/05.- Alterations/Encode.md b/docpage/docs/05.- Alterations/Encode.md index 03961d85..3d08c60c 100644 --- a/docpage/docs/05.- Alterations/Encode.md +++ b/docpage/docs/05.- Alterations/Encode.md @@ -13,4 +13,8 @@ Here is the YAML example. alterations: - action: Encode Encoding: base64 -``` \ No newline at end of file +``` + + +Encode Alteration consists of the following component: +- EncodeContent \ No newline at end of file diff --git a/docpage/docs/05.- Alterations/Merge.md b/docpage/docs/05.- Alterations/Merge.md index 0efe7393..b3de47c2 100644 --- a/docpage/docs/05.- Alterations/Merge.md +++ b/docpage/docs/05.- Alterations/Merge.md @@ -20,4 +20,7 @@ alterations: - action: Merge maxMessages: 10 windowSeconds: 2 -``` \ No newline at end of file +``` + +Merge Alteration consists of the following component: +- MergeContent \ No newline at end of file