Skip to content

Commit b788bc3

Browse files
authored
Remove ServiceInsight from /architecture and /get-started docs (#7977)
* Removed references to SI from architecture/recoverability.md * Updated SI references to SP in architecture/workflows.md * Removed SI references from get-started docs * Update reviewed dates on architecture changes * Fixed broken link for the new ServicePulse link
1 parent cb84549 commit b788bc3

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

architecture/recoverability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Recoverability
33
summary: Techniques for message recoverability. Handle transient and persistent failures with immediate/delayed retries, error queues, and Particular Platform tools.
4-
reviewed: 2025-07-03
4+
reviewed: 2026-01-05
55
callsToAction: ['solution-architect']
66
---
77

@@ -42,7 +42,7 @@ Once the root cause of a persistent error has been resolved, messages can be mov
4242
> - NServiceBus automatically forwards messages exceeding the configured number of automated retries to the [error queue](/nservicebus/recoverability/configure-error-handling.md).
4343
> - ServiceControl can send [email notifications](/servicepulse/health-check-notifications.md) for dead-lettered messages.
4444
> - Messages moved to the error queue are [enhanced with additional metadata](/servicepulse/intro-failed-messages.md#failed-messages-page-message-details-page) to help with root cause detection.
45-
> - Both [ServiceInsight](/serviceinsight/managing-errors-and-retries.md) and [ServicePulse](/servicepulse/intro-failed-messages.md) offer monitoring and inspection of failed messages and advanced retry functionality.
45+
> - [ServicePulse](/servicepulse/intro-failed-messages.md) offers monitoring and inspection of failed messages as well as advanced retry functionality.
4646
4747
## Best practices
4848

architecture/workflows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Workflows
33
summary: Stateful workflow techniques in distributed systems using NServiceBus sagas for choreographed and orchestrated business processes
4-
reviewed: 2025-06-30
4+
reviewed: 2026-01-05
55
callsToAction: ['solution-architect']
66
---
77

@@ -14,9 +14,9 @@ Business processes typically involve various distributed components that need to
1414

1515
Choreographed workflows are implemented by an implicit flow of events between services instead of a central owner of a process. Services are highly decoupled by the use of [publish/subscribe](/architecture/messaging.md#communication-styles-publishsubscribe-pattern). Published messages are called _events_ because they describe a fact about something that happened to the rest of the system. Subscribers react to events as required. There is no central state of the workflow.
1616

17-
![](/serviceinsight/images/overview-sequence-diagram.png)
17+
![](/servicepulse/images/sequence-diagram.png)
1818

19-
_A choreographed event-driven workflow across multiple endpoints, visualized by a [ServiceInsight sequence diagram](/serviceinsight/sequence-diagram)._
19+
_A choreographed event-driven workflow across multiple endpoints, visualized by a [ServicePulse sequence diagram](/servicepulse/sequence-diagram.md)._
2020

2121
### Implementing choreographed workflows
2222

@@ -41,9 +41,9 @@ Orchestrated workflows are managed by a central process that instructs component
4141

4242
NServiceBus is designed to handle long-running business processes in a robust and scalable way using the [saga feature](/nservicebus/sagas/). NServiceBus sagas are a convenient programming model to implement orchestrated, long-running business workflows or state machines using regular C# (or any other .NET language). Sagas handle recoverability, shared state, message correlation, timeouts, and more.
4343

44-
![](/serviceinsight/images/overview-sagaview.png)
44+
![](/servicepulse/images/saga-diagram.png)
4545

46-
_An orchestrated workflow implemented as an NServiceBus Saga, visualized by [ServiceInsight](/serviceinsight)._
46+
_An orchestrated workflow implemented as an NServiceBus Saga, visualized by [ServicePulse](/servicepulse)._
4747

4848
[**Tutorial: Introduction to NServiceBus sagas →**](/tutorials/nservicebus-sagas/1-saga-basics/)
4949

get-started/high-level-content.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: High-level content
3-
summary: Introductory guide to the Particular Service Platform with an overview of NServiceBus, ServiceControl, ServiceInsight, architecture, and hosting resources.
4-
reviewed: 2024-11-06
3+
summary: Introductory guide to the Particular Service Platform with an overview of NServiceBus, ServiceControl, ServicePulse, architecture, and hosting resources.
4+
reviewed: 2026-01-05
55
---
66

77
These articles are recommended to gain an understanding of the key concepts and technologies used within the Particular Service Platform.
88

9-
* [Service Platform Overview](/platform/): An overview of the various parts of the Platform; [NServiceBus](/nservicebus/), [ServiceControl](/servicecontrol/), [ServiceInsight](/serviceinsight/) and [ServicePulse](/servicepulse/).
9+
* [Service Platform Overview](/platform/): An overview of the various parts of the Platform; [NServiceBus](/nservicebus/), [ServiceControl](/servicecontrol/) and [ServicePulse](/servicepulse/).
1010
* [Architectural concepts](/architecture/) of distributed systems
1111
* [Hosting](/nservicebus/hosting/): Information on the various approaches to hosting an instance of NServiceBus.

get-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ reviewed: 2025-10-29
55
suppressRelated: true
66
---
77

8-
NServiceBus makes it quick and easy to send, process, and publish messages across a wide variety of on-premises and cloud-based queuing technologies. All the low-level serialization, threading, and transaction management is handled out-of-the box. Monitoring and debugging are easy to set up thanks to ServicePulse and ServiceInsight.
8+
NServiceBus makes it quick and easy to send, process, and publish messages across a wide variety of on-premises and cloud-based queuing technologies. All the low-level serialization, threading, and transaction management is handled out-of-the box. Monitoring and debugging are easy to set up thanks to ServicePulse.
99

1010
### Start the journey with NServiceBus using these handy resources:
1111

0 commit comments

Comments
 (0)