-
-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: measure client latency on PerformanceTest
- Loading branch information
1 parent
da27283
commit bfdd339
Showing
9 changed files
with
185 additions
and
53 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
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
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
34 changes: 33 additions & 1 deletion
34
perf/BenchmarkApp/PerformanceTest.Client/Properties/launchSettings.json
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 |
---|---|---|
@@ -1,8 +1,40 @@ | ||
{ | ||
"profiles": { | ||
"PerformanceTest.Client": { | ||
"PerformanceTest.Client (PingpongStreamingHub 1x1)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s PingpongStreamingHub --channels 1 --streams 1" | ||
}, | ||
"PerformanceTest.Client (PingpongStreamingHub 70)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s PingpongStreamingHub --channels 70 --streams 1" | ||
}, | ||
"PerformanceTest.Client (PingpongStreamingHub 70x1)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s PingpongStreamingHub --channels 1 --streams 70" | ||
}, | ||
"PerformanceTest.Client (StreamingHubValueTask 1x1)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s StreamingHubValueTask --channels 1 --streams 1" | ||
}, | ||
"PerformanceTest.Client (StreamingHubValueTask 70)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s StreamingHubValueTask --channels 70 --streams 1" | ||
}, | ||
"PerformanceTest.Client (StreamingHubValueTask 70x1)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s StreamingHubValueTask --channels 1 --streams 70" | ||
}, | ||
"PerformanceTest.Client (Unary 1x1)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s Unary --channels 1 --streams 1" | ||
}, | ||
"PerformanceTest.Client (Unary 70)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s Unary --channels 70 --streams 1" | ||
}, | ||
"PerformanceTest.Client (Unary 70x1)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-u http://localhost:5000 -s Unary --channels 1 --streams 70" | ||
} | ||
} | ||
} |
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
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
Oops, something went wrong.