Skip to content

Commit 88835ba

Browse files
authored
Merge branch 'main' into improve_tryit_doco
2 parents d04e430 + d81883f commit 88835ba

17 files changed

+825
-863
lines changed

LICENSE.md

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
1-
By accessing code under the [Particular Software GitHub Organization](https://github.com/Particular) (Particular Software) here, you are agreeing to the following licensing terms.
2-
If you do not agree to these terms, do not access Particular Software code.
1+
By accessing code under the [Particular Software GitHub Organization](https://github.com/Particular) (Particular Software) here, you are agreeing to the following licensing terms. If you do not agree to these terms, do not access Particular Software code.
32

4-
Your license to Particular Software source code and/or binaries is governed by the Reciprocal Public License 1.5 (RPL1.5) license as described here:
3+
Your license to the artifacts in this repository is governed by the [MIT License](https://opensource.org/license/MIT), as described here:
54

6-
https://opensource.org/license/rpl-1-5/
5+
Copyright (c) Particular Software Limited
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in
15+
all copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
THE SOFTWARE.
24+
```
725
8-
If you do not wish to release the source of software you build using Particular Software source code and/or binaries under the terms above, you may use Particular Software source code and/or binaries under the License Agreement described here:
926
10-
https://particular.net/LicenseAgreement

README.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ This showcase consists of 4 processes hosting MassTransit message producers and
66

77
## Launching the Showcase in Docker
88

9-
The showcase requires a connection to a broker (by default RabbitMQ), [ServiceControl](https://hub.docker.com/r/particular/servicecontrol) container, [ServicePulse](https://hub.docker.com/r/particular/servicepulse) container and the [MassTransit Connector for ServiceControl](https://hub.docker.com/r/particular/servicecontrol-masstransit-connector) container.
109
To help getting started we have created a few docker compose files that orchestrate all this setup for you.
1110

12-
Run the docker command below from the `src` folder in a terminal.
11+
* First, make sure you've pulled down the repository to your machine.
12+
* Second, open a terminal and navigate to the `src` folder in your local copy of the repository.
13+
* Third, run the following command:
1314

1415
```cmd
1516
docker compose -p particular-platform-showcase -f docker-compose-base.yml -f compose-rabbitmq.yml --env-file rabbit.env up -d
@@ -68,21 +69,21 @@ Run the solution to start the demo.
6869

6970
## Opening the showcase UI
7071

71-
Navigate to http://localhost:61335/ to see the UI. Click `Run Scenario` to start the showcase scenario and generate some simulated message handling failures.
72+
Navigate to http://localhost:61335/ to see the UI.
7273

73-
## Handling failures with the Particular Platform
74+
Click `Run Scenario` to send some messages and generate some simulated failures.
7475

75-
### Inspecting failures
76+
## Managing errors
7677

77-
Navigate to [http://localhost:9090](http://localhost:9090) in a new tab, or click the `View in ServicePulse` button, to see the details on failures ingested by the platform.
78+
Navigate to [http://localhost:9090](http://localhost:9090) in a new tab, or click the `View Failures` button, to see the details on failures ingested by the platform.
7879

79-
![Service Pulse Dashboard](docs/service-pulse-dashboard-failed-messages.png "Message processing errors summary view")
80+
![Dashboard](docs/service-pulse-dashboard-failed-messages.png "Message processing errors summary view")
8081

8182
### Scheduling message reprocessing
8283

8384
Click on the "Failed Messages" button at the top of the page to see all failed messages ingested by the platform, grouped by the exception type and stack trace.
8485

85-
![Service Pulse Failed Messages](docs/service-pulse-dashboard-failed-messages-groups.png "Failed messages grouping")
86+
![Failed Messages](docs/service-pulse-dashboard-failed-messages-groups.png "Failed messages grouping")
8687

8788
Drill into an existing group to see the list of individual processing failures. Clicking on any of the rows in the list shows detailed information of a given failed message in the headers and message body tabs.
8889

@@ -91,7 +92,7 @@ A failed message can be scheduled for reprocessing by clicking the `Retry messag
9192
> [!NOTE]
9293
> It may take several seconds after retrying a message for it to appear again in the consumer's input queue
9394
94-
![Service Pulse Failed Message View](docs/service-pulse-failed-message-view.png "Failed message details view")
95+
![Failed Message View](docs/service-pulse-failed-message-view.png "Failed message details view")
9596

9697
### Editing messages before reprocessing
9798

@@ -106,11 +107,17 @@ Navigate to the `Message Body` tab and change some of the contents of the messag
106107

107108
### Viewing retries
108109

109-
Return to the showcase UI to see that the retries have now been successfully handled.
110+
Return to the Showcase UI to see that the retries have now been successfully handled.
110111

111112
### Troubleshooting
112113

113114
Having issues?
114115

116+
- Check that all containers are running:
117+
- RabbitMQ
118+
- [ServicePulse](https://hub.docker.com/r/particular/servicepulse)
119+
- [ServiceControl](https://hub.docker.com/r/particular/servicecontrol)
120+
- [MassTransit Connector for ServiceControl](https://hub.docker.com/r/particular/servicecontrol-masstransit-connector)
115121
- Check logs in docker. Ensure that there are no port clashes with existing containers or services on your machine.
116-
- Ask any questions on [our forum](https://discuss.particular.net/tag/masstransit)
122+
123+
And, if you need help, you can always head over to [our forum](https://discuss.particular.net/tag/masstransit).

docs/docs.md

Lines changed: 0 additions & 90 deletions
This file was deleted.

src/Billing/Billing.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="MassTransit.Azure.ServiceBus.Core" Version="8.3.0" />
22-
<PackageReference Include="MassTransit.RabbitMQ" Version="8.3.0" />
23-
<PackageReference Include="MassTransit.AmazonSQS" Version="8.3.0" />
21+
<PackageReference Include="MassTransit.Azure.ServiceBus.Core" Version="8.3.6" />
22+
<PackageReference Include="MassTransit.RabbitMQ" Version="8.3.6" />
23+
<PackageReference Include="MassTransit.AmazonSQS" Version="8.3.6" />
2424
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
2525
</ItemGroup>
2626
</Project>

src/ClientUI/ClientUI.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="MassTransit.Azure.ServiceBus.Core" Version="8.3.0" />
13-
<PackageReference Include="MassTransit.RabbitMQ" Version="8.3.0" />
14-
<PackageReference Include="MassTransit.AmazonSQS" Version="8.3.0" />
12+
<PackageReference Include="MassTransit.Azure.ServiceBus.Core" Version="8.3.6" />
13+
<PackageReference Include="MassTransit.RabbitMQ" Version="8.3.6" />
14+
<PackageReference Include="MassTransit.AmazonSQS" Version="8.3.6" />
1515
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
1616
</ItemGroup>
1717

0 commit comments

Comments
 (0)