Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ngallegos/service-insight
Basic Blazor web app implementation of Particular's Service Insight tool that doesn't require a windows machine to run
https://github.com/ngallegos/service-insight
blazor-server csharp nservicebus
Last synced: about 1 month ago
JSON representation
Basic Blazor web app implementation of Particular's Service Insight tool that doesn't require a windows machine to run
- Host: GitHub
- URL: https://github.com/ngallegos/service-insight
- Owner: ngallegos
- Created: 2024-01-11T23:08:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-18T21:31:18.000Z (12 months ago)
- Last Synced: 2024-10-19T06:17:18.454Z (3 months ago)
- Topics: blazor-server, csharp, nservicebus
- Language: HTML
- Homepage:
- Size: 242 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Service Insight Web
This is a Blazor app that can be used in place of the [windows-only Particular.net NServiceBus visualization tool](https://particular.net/serviceinsight) for those with mac or linux machines.The api endpoints used were discovered by the doing a GET on a running service control instance's root (`http://{your-service-control-domain}:{your-service-control-port}/api/`), which returns a payload with many of the api endpoints used by service insight, and by referencing the official [service insight source code](https://github.com/Particular/ServiceInsight).
### Running the app
Make sure you have [dotnet 6 (or higher)](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) installedYou will need an instance of [service control](https://docs.particular.net/servicecontrol/) running so you can update the appsettings.json file to point to its api endpoint. Ideally you have some messages to view or this app won't show much.
Once you've updated the appsettings file with all the service control environments you want to view, run the app:
```bash
dotnet run --project ServiceInsight.Web
```If a browser doesn't open automatically, navigate to `http://localhost:5114` in your browser of choice.
### Known limitations
* Viewing the logs when inspecting a message is not available
* The saga view outgoing messages don't seem to always line up with what Particular's tool shows
* Retrying a failed message has not been implemented
* All context actions (right clicking, hovering, etc...) on any element are not available like they are in the native windows app, most notably extra information on the various graphs and charts.It could benefit from some better styling for usability. For example:
* The message properties table in the lower right is very crammed and hard to look at.
* The message explorer pane doesn't restrict itself to the window size and viewing headers in particular makes you scroll the whole page instead of just the pane its supposed to show up in.In spite of these limitations, the current state of the app has made it more than sufficient for my use cases while diagnosing and inspecting messages on a non-windows machine
### Credits
Lead Developer - Nicholas Gallegos[Particular Software](https://particular.net/) for creating the original [Service Insight](https://particular.net/serviceinsight) tool, for making the [service insight source code](https://github.com/Particular/ServiceInsight) available for reference, and for generally making excellent products.
### License
[RPL-1.5](https://opensource.org/license/rpl-1-5/)