From b1278b84f6a66ab488021fab95cbbfa70b3be216 Mon Sep 17 00:00:00 2001 From: Mike Minutillo Date: Thu, 5 Mar 2026 14:35:39 +0800 Subject: [PATCH 1/3] Document Integrated ServicePulse in README Added section about Integrated ServicePulse and its hosting capabilities. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7261e84be4..314f37c65e 100644 --- a/README.md +++ b/README.md @@ -102,3 +102,9 @@ Steps: -ErrorRetentionPeriod 10:00:00:00 ` -Acknowledgements RabbitMQBrokerVersion310 ``` + +## Integrated ServicePulse + +Since version 6.13, ServiceControl ships with a copy of ServicePulse and [can host it from an Error instance](https://docs.particular.net/servicecontrol/servicecontrol-instances/integrated-servicepulse). + +ServiceControl Error instances have a reference to the Particular.ServicePulse.Core package, which contains ServicePulse assets, along with the code required to serve them out of an ASP.NET web host. From 805072ff86755116fb36c45b5dca01e52ec46610 Mon Sep 17 00:00:00 2001 From: Mike Minutillo Date: Tue, 10 Mar 2026 12:21:50 +0800 Subject: [PATCH 2/3] Apply suggestion from @PhilBastian Co-authored-by: Phil Bastian <155411597+PhilBastian@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 314f37c65e..0668ad072b 100644 --- a/README.md +++ b/README.md @@ -107,4 +107,4 @@ Steps: Since version 6.13, ServiceControl ships with a copy of ServicePulse and [can host it from an Error instance](https://docs.particular.net/servicecontrol/servicecontrol-instances/integrated-servicepulse). -ServiceControl Error instances have a reference to the Particular.ServicePulse.Core package, which contains ServicePulse assets, along with the code required to serve them out of an ASP.NET web host. +ServiceControl Error instances have a reference to the Particular.ServicePulse.Core package; this contains the ServicePulse assets, along with the code required to serve them out of an ASP.NET web host. From 698db487e6206eaf9c3aed59e013dd2c60ac8b77 Mon Sep 17 00:00:00 2001 From: Mike Minutillo Date: Tue, 10 Mar 2026 12:25:41 +0800 Subject: [PATCH 3/3] Fix typo --- src/ServiceControl/Container-README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ServiceControl/Container-README.md b/src/ServiceControl/Container-README.md index 011e8a7f00..806df8c49c 100644 --- a/src/ServiceControl/Container-README.md +++ b/src/ServiceControl/Container-README.md @@ -20,7 +20,7 @@ docker run -d --name servicecontrol -p 33333:33333 \ -e CONNECTIONSTRING="host=rabbitmq" \ -e RAVENDB_CONNECTIONSTRING="http://servicecontrol-db:8080" \ -e REMOTEINSTANCES='[{"api_uri":"http://audit:44444/api"}]' \ - -e ENABLEDINTEGRATEDSERVICEPULSE="true" \ + -e ENABLEINTEGRATEDSERVICEPULSE="true" \ particular/servicecontrol:latest --setup-and-run ```