You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-8Lines changed: 24 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,23 +43,35 @@ Pyroscope is an open source continuous profiling platform. It will help you:
43
43
* Efficient compression, low disk space requirements
44
44
* Snappy UI
45
45
46
-
## Documentation
46
+
## Installation
47
47
48
-
To install pyroscope on a mac:
48
+
#### on macOS:
49
49
```shell
50
50
brew install pyroscope-io/brew/pyroscope
51
51
```
52
+
## Try Pyroscope Locally
52
53
53
-
To install the docker image:
54
+
### Step 1 — Start Pyroscope Server
55
+
56
+
#### on macOS / Linux:
57
+
```shell
58
+
pyroscope server
59
+
```
60
+
61
+
#### with Docker:
54
62
```shell
55
-
docker pull pyroscope/pyroscope:latest
63
+
docker run -it -p 4040:4040 pyroscope/pyroscope:latest server
56
64
```
57
65
58
-
After pyroscope is installed, you just need to:
59
-
1. Start the pyroscope server (`pyroscope server` or `docker run -it pyroscope/pyroscope:latest server`)
60
-
2. Run your application with the right agent (see image below). For more information on this, see our [Getting Started guide](https://pyroscope.io/docs/#profile-your-applications).
0 commit comments