-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
169 changed files
with
12,424 additions
and
650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
docs/user-guide/ingres-axon.md → docs/user-guide/ingress-axon.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
The Axon Framework Ingres Adapter is responsible for receiving events on Axon Event bus and sending them for the correlation to the library. | ||
The Axon Framework Ingress Adapter is responsible for receiving events on Axon Event bus and sending them for the correlation to the library. | ||
|
||
### Message | ||
|
||
Axon Event Message is received and deserialized by Axon Framework, using the configured message de-serializer and passed to the ingres adapter. | ||
Axon Event Message is received and deserialized by Axon Framework, using the configured message de-serializer and passed to the ingress adapter. | ||
The adapter is reading headers from message `MetaData` and converts them into message headers. The payload is encoded into serializable payload using | ||
the configured encoder (currently Jackson). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The Spring Cloud Ingress Adapter is a component responsible for receiving Spring Cloud messages (using configured binding like Kafka, AMQP or others) and | ||
convert them into message format used by the library. | ||
|
||
### Message | ||
|
||
Kafka Message is received and the Kafka headers are converted to message headers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
The ingress adapter is a component responsible for the adaptation of the communication technology to the uniform message format used in the library. | ||
It is responsible for creation the instance of a message including message headers and serialized message payload. | ||
|
||
The following Ingress Adapter are available out of the box: | ||
|
||
* [Axon Framework](ingress-axon.md) | ||
* [Spring Cloud Stream](ingress-spring-cloud.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
In order to be able to monitor the library in operations, we expose different metrics using | ||
standard Spring Boot approach and use Micrometer as the library. By doing so, we provide maximum | ||
flexibility for the integration of the metrics in your monitoring system (like Prometheus or others). | ||
|
||
The following metrics are provided: | ||
|
||
| Component | Name | Type | Tags | Description | | ||
|-------------|------------------------------------------------|---------|---------|---------------------------------------------------------------------------------------------------------------------------------| | ||
| Ingress | camunda_bpm_correlate_ingress_received_total | counter | channel | Total number of messages received via given channel. | | ||
| Ingress | camunda_bpm_correlate_ingress_accepted_total | counter | channel | Total number of messages accepted via channel. | | ||
| Ingress | camunda_bpm_correlate_ingress_ignored_total | counter | channel | Total number of messages received but ignored via channel. | | ||
| Acceptor | camunda_bpm_correlate_acceptor_persisted_total | counter | | Total number of messages persisted in the inbox. | | ||
| Acceptor | camunda_bpm_correlate_acceptor_dropped_total | counter | | Total number of messages dropped instead of persisting in the inbox. | | ||
| Inbox | camunda_bpm_correlate_inbox_message | gauge | status | Number of messages in the inbox by status. The statuses are: total, retrying, in_progress, error, maxRetriesReached and paused. | | ||
| Correlation | camunda_bpm_correlate_correlation_success | counter | | Total number of messages successfully correlated. | | ||
| Correlation | camunda_bpm_correlate_correlation_error | counter | | Total number of messages correlated with error. | | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.