Skip to content

Commit 36626b6

Browse files
authored
Merge pull request #21 from Particular/improved-readme
Update README.md
2 parents fb76592 + 9724924 commit 36626b6

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed

README.md

Lines changed: 34 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,36 @@
1-
# MonitoringDemo
2-
Self-contained demo showing all of the monitoring components working together.
1+
# Overview
2+
3+
Self-contained demo showing all of the monitoring components working together. This accompanies the Particular Platform Monitoring Tutorial available at the following location:
4+
5+
- https://docs.particular.net/tutorials/monitoring/demo/
6+
7+
# Prerequisites
38

4-
## Prerequisites
59
Running the demo requires .Net Framework 4.5.1 or newer.
610

7-
Option 1 requires MS SQL Server database and login setup as well as [Sql Managed Objects 2016](https://www.microsoft.com/en-us/download/details.aspx?id=52676).
11+
In order to run the downloaded sample you will need the following prerequisites.
12+
13+
- Windows 8 or higher: the Particular Service Platform requires the Windows operating system
14+
- Powershell 3.0 or higher
15+
- .NET Framework 4.6.1 (check version)
16+
17+
## Option 1: Existing SQL Server instance
18+
19+
- Requires Microsoft SQL Server 2012 or higher and login setup
20+
21+
## Option 2: New LocalDB instance
22+
23+
- Requires [LocalDB](https://www.microsoft.com/en-us/download/details.aspx?id=29062),
24+
- [SQL Server Command Line Utilities](https://www.microsoft.com/en-us/download/details.aspx?id=36433)
25+
- [Microsoft ODBC Driver 11 for SQL Server](https://www.microsoft.com/en-us/download/details.aspx?id=36434).
26+
27+
# Running
28+
829

9-
Option 2 requries [LocalDB](https://www.microsoft.com/en-us/download/details.aspx?id=29062), [SQL Server Command Line Utilities](https://www.microsoft.com/en-us/download/details.aspx?id=36433) and [Microsoft ODBC Driver 11 for SQL Server](https://www.microsoft.com/en-us/download/details.aspx?id=36434).
1030

11-
## Running
1231
To run the demo execute `run.bat`. There are two options available:
1332
```
14-
================ NSB Montoring Setup ================
33+
================ NSB Monitoring Setup ================
1534
1: Use existing SQL Server database.
1635
2: Use LocalDB (requires LocalDB and elevated permissions).
1736
Q: Quit.
@@ -20,12 +39,19 @@ Please make a selection and press <ENTER>:
2039
```
2140

2241
### Use existing SQL Server database
42+
2343
This option runs the demo using existing MS SQL Server installation. During startup existing database and login details have to provided.
2444

45+
**In this option the script will create a new catalog in the instance specified by the user**
46+
2547
### Use LocalDB
48+
2649
This option runs the demo using existing LocalDB installation.
2750

28-
## Folders
51+
**In this option the script will create a new LocalDB instance `particular-monitoring` and a new catalog called `ParticularMonitoringDemo`.**
52+
53+
# Structure
54+
2955
- `/Platform` contains all of the platform components
3056
- `/Solution` contains Visual Studio solution
3157
- `/support` contains powershell helper modules.

Run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Show-Menu
22
{
33
param (
4-
[string]$Title = 'NSB Montoring Setup'
4+
[string]$Title = 'NSB Monitoring Setup'
55
)
66

77
Clear-Host

0 commit comments

Comments
 (0)