title | summary | reviewed | component | versions | related | ||
---|---|---|---|---|---|---|---|
Connecting endpoints |
Connecting NServiceBus endpoints to the Particular Service Platform |
2024-10-01 |
PlatformConnector |
PlatformConnector:* |
|
The ServicePlatform Connector plugin provides a unified API to connect an NServiceBus endpoint to the Particular Service Platform by configuring:
- an error queue address
- message auditing
- saga auditing
- performance metrics collection
- custom checks
- heartbeats
The connection details can be parsed from JSON-compliant text with a specific configuration schema.
snippet: PlatformConnector-FromJson
The JSON file looks like this:
snippet: PlatformConnector-Json
A JSON file specific to a concrete deployment of the ServicePlatform is available via ServicePulse.
The connection details can be constructed in code.
snippet: PlatformConnector-CodeFirst
It is possible to load configuration from JSON and then override settings via code.
snippet: PlatformConnector-Combo