-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Beta] Add Shim Performance Testing (#1302)
* Add shim performance tests. * Update package-lock.json * Fix sample env.
- Loading branch information
1 parent
dadcd3a
commit fae2d2e
Showing
12 changed files
with
3,512 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
### Guide | ||
|
||
1. Copy the `sample.env` file and name it as `.env`. | ||
2. Create an Application Insights resource and populate the `.env` file with connectionString. | ||
3. Run the tests as follows (parameters can be modified to as appropriate): | ||
|
||
- Tracking Dependencies (spans) | ||
- `npm run perf-test:node -- TrackDependencyTest --warmup 1 --iterations 1 --parallel 2 --duration 15` | ||
- Tracking Traces (logs) | ||
- `npm run perf-test:node -- TrackTraceTest --warmup 1 --iterations 1 --parallel 2 --duration 15` |
Oops, something went wrong.