AI agents: use the documentation index at llms.txt to locate machine-readable pages. This section is indexed by https://docs.particular.net/nservicebus/llms.txt. The markdown version of this page is served as plain text. An MCP server at /mcp serves the same content via the search_docs and read_doc tools; it is read-only and needs no credentials. Markdown versions of documentation pages are available by appending .md to the page URL. Directory URLs use index.md. They are served as text/plain because some retrieval backends reject text/markdown.

ServicePlatform Connector Upgrade Version 3 to 4

Metrics TimeToBeReceived renamed to TimeToLive

In version 4, the setting to configure the maximum time to live for Metrics messages has been renamed from TimeToBeReceived to TimeToLive. This aligns it with the naming convention of similar settings for other sections of the configuration.

4.x NServiceBus.ServicePlatform.Connector
var platformConnection = new ServicePlatformConnectionConfiguration
{
    Metrics = new ServicePlatformMetricsConfiguration
    {
        TimeToLive = TimeSpan.FromSeconds(60)
    }
};

endpointConfiguration.ConnectToServicePlatform(platformConnection);
3.x NServiceBus.ServicePlatform.Connector
var platformConnection = new ServicePlatformConnectionConfiguration
{
    Metrics = new ServicePlatformMetricsConfiguration
    {
        TimeToBeReceived = TimeSpan.FromSeconds(60)
    }
};

endpointConfiguration.ConnectToServicePlatform(platformConnection);