Skip to content
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 410 Bytes

performanceTestingTips.md

File metadata and controls

23 lines (15 loc) · 410 Bytes

Tips for Useful Performance Testing Commands

Check number of Connections

To see the number of connections to the mattermost server you can run commands like:

sudo netstat -an | grep :8065 | wc -l

or:

ss | grep ESTA | grep 8065

Verify the ulimits are set correctly

You can verify process myprocess has the correct amounts by running:

cat /proc/`pgrep myprocess`/limits