Skip to content

Commit 8bcdb92

Browse files
committed
doco
1 parent 74d0732 commit 8bcdb92

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

ReadMe.Md

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
![](l0la-100.png)
22

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.
65

76
[![Circleci Builds](https://circleci.com/gh/simonmittag/l0la.svg?style=shield)](https://circleci.com/gh/simonmittag/l0la)
87
[![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.
1514
* bumped to go 1.20
1615

1716
## Up and running
18-
1917
### Homebrew
2018
```
2119
brew tap simonmittag/cli &&
@@ -34,7 +32,12 @@ Usage: l0la [-v] [-h] [PID]
3432

3533
## Samples
3634

37-
Monitor a web server
35+
Monitor a process by pid
36+
```
37+
l0la $pid
38+
```
39+
40+
Monitor a process by name
3841
```
3942
pgrep j8a | xargs l0la
4043
```

l0la.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99
)
1010

11-
const Version = "v0.1.2"
11+
const Version = "v0.1.3"
1212

1313
func Watch(pid int) {
1414
lines := make([]io.Writer, 0)

0 commit comments

Comments
 (0)