-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,14 @@ $ sudo apt install python3-dev | |
$ wget -O- https://bootstrap.pypa.io/get-pip.py | sudo python3 | ||
``` | ||
|
||
To install from repository, | ||
Use `pip` to pull the repository and install: | ||
|
||
```bash | ||
# Install to user space. Remove "--user" to install system-wide. | ||
$ pip install --user git+ssh://[email protected]/xybu/python-resmon.git | ||
``` | ||
|
||
Or install from repository manually, | ||
|
||
```bash | ||
# Grab source code. | ||
|
@@ -80,6 +87,8 @@ optional arguments: | |
"psstat.csv". | ||
``` | ||
To terminate the monitor, send `SIGINT` signal to the process. | ||
# Example | ||
Sample output of resource monitor (note that the operation of obtaining statistics is not atomic -- there is slight | ||
|