File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
1
![ ] ( l0la-100.png )
2
2
3
- l0la is a sidecar cli utility to monitor vital stats of other processes on OSX at development
4
- time. It combines the output of ` lsof ` , ` ps ` and ` netstat ` , then monitors these values
5
- while active.
3
+ l0la is a simple cli utility that combines the output of ` lsof ` , ` ps ` and ` netstat ` to continuously monitor cpu,
4
+ threads, files, network connections of your process for debugging purposes.
6
5
7
6
[ ![ Circleci Builds] ( https://circleci.com/gh/simonmittag/l0la.svg?style=shield )] ( https://circleci.com/gh/simonmittag/l0la )
8
7
[ ![ Github Activity] ( https://img.shields.io/github/commit-activity/m/simonmittag/mse6 )] ( https://img.shields.io/github/commit-activity/m/simonmittag/l0la )
@@ -15,7 +14,6 @@ while active.
15
14
* bumped to go 1.20
16
15
17
16
## Up and running
18
-
19
17
### Homebrew
20
18
```
21
19
brew tap simonmittag/cli &&
@@ -34,7 +32,12 @@ Usage: l0la [-v] [-h] [PID]
34
32
35
33
## Samples
36
34
37
- Monitor a web server
35
+ Monitor a process by pid
36
+ ```
37
+ l0la $pid
38
+ ```
39
+
40
+ Monitor a process by name
38
41
```
39
42
pgrep j8a | xargs l0la
40
43
```
Original file line number Diff line number Diff line change 8
8
"time"
9
9
)
10
10
11
- const Version = "v0.1.2 "
11
+ const Version = "v0.1.3 "
12
12
13
13
func Watch (pid int ) {
14
14
lines := make ([]io.Writer , 0 )
You can’t perform that action at this time.
0 commit comments