Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,19 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -Config File Format

```json
{
"action": "Assess",
"outputFolder": "C:\\Output",
"overwrite": "true",
"sqlConnectionStrings": [
"Data Source=<SERVER_NAME>;Initial Catalog=<DATABASE_NAME>;User ID=<USERNAME>;Password=<PASSWORD>;TrustServerCertificate=True;Encrypt=True"
]
}
```

### -ConnectionString
Sql Server Connection Strings

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -Config File Format
```json
{
"action": "PerfDataCollection",
"outputFolder": "C:\\Output",
"perfQueryIntervalInSec": 30,
"staticQueryIntervalInSec": 60,
"numberOfIterations": 20,
"sqlConnectionStrings": [
"Data Source=<SERVER_NAME>;Initial Catalog=<DATABASE_NAME>;User ID=<USERNAME>;Password=<PASSWORD>;TrustServerCertificate=True;Encrypt=True"
]
}
```

### -NumberOfIterations
Number of iterations of performance data collection to perform before persisting to file.
For example, with default values, performance data will be persisted every 30 seconds * 20 iterations = 10 minutes.
Expand Down