Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use dynamic labels for nodejs examples and docs #3309

Merged
merged 2 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use dynamic labels for nodejs
This updates the nodejs examples and docs to align with the v0.3.11
release.

It also adds nodejs to the updater script

Co-authored-by: Kim Nylander <104772500+knylander-grafana@users.noreply.github.com>
  • Loading branch information
simonswine and knylander-grafana committed May 29, 2024
commit 556f73ff6aa7f7dba539ab209aaa9113d8d7a573
47 changes: 45 additions & 2 deletions docs/sources/configure-client/language-sdks/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,44 @@ Pyroscope.init({
Pyroscope.start()
```

Note: If you'd prefer to use Pull mode you can do so using the [Grafana Agent]({{< relref "../grafana-agent" >}}).
[comment]: <> (TODO This needs its own page like https://grafana.com/docs/pyroscope/latest/configure-client/grafana-agent/go_pull/)
{{< admonition type="note" >}}
If you'd prefer, you can use Pull mode using [Grafana Alloy](https://grafana.com/docs/alloy/latest/) (recommended) or [Grafana Agent]({{< relref "../grafana-agent" >}}) (legacy).
{{< /admonition >}}


### Configuration options

| Init parameter | ENVIRONMENT VARIABLE | Type | DESCRIPTION |
|-------------------------------|-------------------------------------------|----------------|-----------------------------------------------------------------------------------|
| `appName: | `PYROSCOPE_APPLICATION_NAME` | String | Sets the `service_name` label |
| `serverAddress:` | `PYROSCOPE_SERVER_ADDRESS` | String | URL of the Pyroscope Server |
| `basicAuthUser:` | n/a | String | Username for basic auth / Grafana Cloud stack user ID (Default `""`) |
| `basicAuthPassword:` | n/a | String | Password for basic auth / Grafana Cloud API key (Default `""`) |
| `flushIntervalMs:` | `PYROSCOPE_FLUSH_INTERVAL_MS` | Number | Interval when profiles are sent to the server (Default `60000`) |
| `heapSamplingIntervalBytes` | `PYROSCOPE_HEAP_SAMPLING_INTERVAL_BYTES` | Number | Average number of bytes between samples. (Default `524288`) |
| `heapStackDepth:` | `PYROSCOPE_HEAP_STACK_DEPTH` | Number | Maximum stack depth for heap samples (Default `64`) |
| `wallSamplingDurationMs:` | `PYROSCOPE_WALL_SAMPLING_DURATION_MS` | Number | Duration of a single wall profile (Default `60000`) |
| `wallSamplingIntervalMicros:` | `PYROSCOPE_WALL_SAMPLING_INTERVAL_MICROS` | Number | Interval of how often wall samples are collected (Default `10000` |
| `wallCollectCpuTime:` | `PYROSCOPE_WALL_COLLECT_CPU_TIME` | Boolean | Enable CPU time collection for wall profiles (Default `false`) |
| `tags:` | n/a | [LabelSet] | Static labels applying to all profiles collected (Default `{}`) |
| `sourceMapper:` | n/a | [SourceMapper] | Provide source file mapping information (Default `undefined`) |

[LabelSet]:https://github.com/DataDog/pprof-nodejs/blob/v5.3.0/ts/src/v8-types.ts#L59-L61
[SourceMapper]:https://github.com/DataDog/pprof-nodejs/blob/v5.3.0/ts/src/sourcemapper/sourcemapper.ts#L152


### Add profiling labels to Node.js applications

It is possible to add tags (labels) to the profiling data. These tags can be used to filter the data in the UI. Dynamic tagging isn't supported yet.
#### Static labels

You can add static labels to the profiling data.
These labels can be used to filter the data in the UI and apply for all profiles collected.
Common static labels include:

* `hostname`
* `region`
* `team`

```javascript
Pyroscope.init({
Expand All @@ -65,6 +98,16 @@ Pyroscope.init({
Pyroscope.start()
```

#### Dynamic labels for wall/cpu profiles

In WAL/CPU profiles, labels can also be attached dynamically and help to separate different code paths:
simonswine marked this conversation as resolved.
Show resolved Hide resolved

```javascript
Pyroscope.wrapWithLabels({ vehicle: 'bike' }, () =>
slowCode()
);
```

## Send data to Pyroscope OSS or Grafana Cloud

```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ RUN yarn install
COPY index.js .

ENV DEBUG=pyroscope
ENV PYROSCOPE_WALL_COLLECT_CPU_TIME=true
CMD ["node", "index.js"]
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,19 @@ Pyroscope.init({ tags: { region } });
app.use(expressMiddleware());

app.get('/bike', function bikeSearchHandler(req, res) {
return genericSearchHandler(0.5)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'bike' }, () =>
genericSearchHandler(0.5)(req, res)
);
});
app.get('/car', function carSearchHandler(req, res) {
return genericSearchHandler(1)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'car' }, () =>
genericSearchHandler(1)(req, res)
);
});
app.get('/scooter', function scooterSearchHandler(req, res) {
return genericSearchHandler(0.25)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'scooter' }, () =>
genericSearchHandler(0.25)(req, res)
);
});

app.listen(port, () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@pyroscope/nodejs": "v0.3.9",
"@pyroscope/nodejs": "v0.3.11",
"express": "^4.19.2",
"morgan": "^1.10.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==

"@pyroscope/nodejs@v0.3.9":
version "0.3.9"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.9.tgz#4ca4499a8715a22b5d8847239fc91d1df2a90e8a"
integrity sha512-To0b003umbwd4RM4MYXFe1HnEraC+Zz9VDlHT2olqPL+9XATjNOx9HYK7ErC92gvGXqPxwhZwWC3bDqNwkSVhw==
"@pyroscope/nodejs@v0.3.11":
version "0.3.11"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.11.tgz#d3ffed8423b628701d06cdc6ef97fd5943d91939"
integrity sha512-xqxUDrzgdfTic4QU3FyvPvO3iAF63zEEI+gXgBBNA6MrJVOJxaEDJkeOGnH0AT7yG/vLJVmSeo4+VyIKrCmztw==
dependencies:
"@datadog/pprof" "^5.3.0"
axios "^0.28.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,22 @@ const genericSearchHandler = (p: number) => (req: any, res: any) => {
};

app.get('/bike', function bikeSearchHandler(req, res) {
return genericSearchHandler(0.2)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'bike' }, () =>
genericSearchHandler(0.2)(req, res)
);
});
app.get('/car', function carSearchHandler(req, res) {
return genericSearchHandler(1)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'car' }, () =>
genericSearchHandler(1)(req, res)
);
});
app.get('/scooter', function scooterSearchHandler(req, res) {
return genericSearchHandler(0.5)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'scooter' }, () =>
genericSearchHandler(0.5)(req, res)
);
});

SourceMapper.create(["."])
SourceMapper.create(['.'])
.then((sourceMapper) => {
Pyroscope.init({
appName: 'nodejs',
Expand All @@ -46,8 +52,8 @@ SourceMapper.create(["."])
Pyroscope.start();
})
.catch((e) => {
console.error(e)
})
console.error(e);
});

app.listen(port, () => {
console.log(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@pyroscope/nodejs": "0.3.10",
"@pyroscope/nodejs": "v0.3.11",
"axios": "^0.26.1",
"express": "^4.17.3",
"morgan": "^1.10.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==

"@pyroscope/nodejs@0.3.10":
version "0.3.10"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.10.tgz#84bf5ad2258c614c307b46ed0dd98277e32bd582"
integrity sha512-/GHbVp7i48HW08tnDiqp54wQquGrDokiiYQnUtWMcOtiDaSnmwgHlhuZIOS1/P8MatHqIhIChBGn1Bpi53xGlw==
"@pyroscope/nodejs@v0.3.11":
version "0.3.11"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.11.tgz#d3ffed8423b628701d06cdc6ef97fd5943d91939"
integrity sha512-xqxUDrzgdfTic4QU3FyvPvO3iAF63zEEI+gXgBBNA6MrJVOJxaEDJkeOGnH0AT7yG/vLJVmSeo4+VyIKrCmztw==
dependencies:
"@datadog/pprof" "^5.3.0"
axios "^0.28.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,22 @@ const genericSearchHandler = (p: number) => (req: any, res: any) => {
};

app.get('/bike', function bikeSearchHandler(req, res) {
return genericSearchHandler(0.2)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'bike' }, () =>
genericSearchHandler(0.2)(req, res)
);
});
app.get('/car', function carSearchHandler(req, res) {
return genericSearchHandler(1)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'car' }, () =>
genericSearchHandler(1)(req, res)
);
});
app.get('/scooter', function scooterSearchHandler(req, res) {
return genericSearchHandler(0.5)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'scooter' }, () =>
genericSearchHandler(0.5)(req, res)
);
});

SourceMapper.create(["."])
SourceMapper.create(['.'])
.then((sourceMapper) => {
Pyroscope.init({
appName: 'nodejs',
Expand All @@ -46,8 +52,8 @@ SourceMapper.create(["."])
Pyroscope.start();
})
.catch((e) => {
console.error(e)
})
console.error(e);
});

app.listen(port, () => {
console.log(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@pyroscope/nodejs": "0.3.9",
"@pyroscope/nodejs": "v0.3.11",
"axios": "^0.28.0",
"express": "^4.19.2",
"morgan": "^1.10.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==

"@pyroscope/nodejs@0.3.9":
version "0.3.9"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.9.tgz#4ca4499a8715a22b5d8847239fc91d1df2a90e8a"
integrity sha512-To0b003umbwd4RM4MYXFe1HnEraC+Zz9VDlHT2olqPL+9XATjNOx9HYK7ErC92gvGXqPxwhZwWC3bDqNwkSVhw==
"@pyroscope/nodejs@v0.3.11":
version "0.3.11"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.11.tgz#d3ffed8423b628701d06cdc6ef97fd5943d91939"
integrity sha512-xqxUDrzgdfTic4QU3FyvPvO3iAF63zEEI+gXgBBNA6MrJVOJxaEDJkeOGnH0AT7yG/vLJVmSeo4+VyIKrCmztw==
dependencies:
"@datadog/pprof" "^5.3.0"
axios "^0.28.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ RUN yarn install
COPY index.js .

ENV DEBUG=pyroscope
ENV PYROSCOPE_WALL_COLLECT_CPU_TIME=true
CMD ["node", "index.js"]
12 changes: 9 additions & 3 deletions examples/language-sdk-instrumentation/nodejs/express/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,19 @@ Pyroscope.init({
Pyroscope.start();

app.get('/bike', function bikeSearchHandler(req, res) {
return genericSearchHandler(0.5)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'bike' }, () =>
genericSearchHandler(0.5)(req, res)
);
});
app.get('/car', function carSearchHandler(req, res) {
return genericSearchHandler(1)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'car' }, () =>
genericSearchHandler(1)(req, res)
);
});
app.get('/scooter', function scooterSearchHandler(req, res) {
return genericSearchHandler(0.25)(req, res);
Pyroscope.wrapWithLabels({ vehicle: 'scooter' }, () =>
genericSearchHandler(0.25)(req, res)
);
});

app.listen(port, () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@pyroscope/nodejs": "0.3.9",
"@pyroscope/nodejs": "v0.3.11",
"express": "^4.19.2",
"morgan": "^1.10.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==

"@pyroscope/nodejs@0.3.9":
version "0.3.9"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.9.tgz#4ca4499a8715a22b5d8847239fc91d1df2a90e8a"
integrity sha512-To0b003umbwd4RM4MYXFe1HnEraC+Zz9VDlHT2olqPL+9XATjNOx9HYK7ErC92gvGXqPxwhZwWC3bDqNwkSVhw==
"@pyroscope/nodejs@v0.3.11":
version "0.3.11"
resolved "https://registry.yarnpkg.com/@pyroscope/nodejs/-/nodejs-0.3.11.tgz#d3ffed8423b628701d06cdc6ef97fd5943d91939"
integrity sha512-xqxUDrzgdfTic4QU3FyvPvO3iAF63zEEI+gXgBBNA6MrJVOJxaEDJkeOGnH0AT7yG/vLJVmSeo4+VyIKrCmztw==
dependencies:
"@datadog/pprof" "^5.3.0"
axios "^0.28.0"
Expand Down
37 changes: 35 additions & 2 deletions tools/update_examples.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"net/http"
"os"
"os/exec"
"path/filepath"
"slices"
"strconv"
"strings"
Expand All @@ -28,14 +29,46 @@ func main() {
updateJava()
updateRuby()
updatePython()
udpateDotnet()
updateDotnet()
updateNodeJS()
}

func getGHToken() {
ghToken, _ = s.sh("gh auth token")
}

func udpateDotnet() {
func extractNodeJSVersion(tag Tag) *version {
re := regexp.MustCompile("(v)(\\d+).(\\d+).(\\d+)")
match := re.FindStringSubmatch(tag.Name)
if match != nil {
if match[1] == "v" {
major, err := strconv.Atoi(match[2])
requireNoError(err, "strconv")
minor, err := strconv.Atoi(match[3])
requireNoError(err, "strconv")
patch, err := strconv.Atoi(match[4])
requireNoError(err, "strconv")
return &version{major: major, minor: minor, patch: patch, tag: tag}
}
}
return nil
}

func updateNodeJS() {
tags := getTagsV("grafana/pyroscope-nodejs", extractNodeJSVersion)
last := tags[len(tags)-1]
fmt.Println(last)

replPackageJson := fmt.Sprintf(` "@pyroscope/nodejs": "v%s",`, last.version())
rePackageJson := regexp.MustCompile(` "@pyroscope/nodejs": "[^"]+",`)
for _, x := range []string{"express", "express-pull", "express-ts", "express-ts-inline"} {
path := filepath.Join("examples/language-sdk-instrumentation/nodejs", x)
replaceInplace(rePackageJson, filepath.Join(path, "package.json"), replPackageJson)
s.sh(fmt.Sprintf(`cd "%s" && yarn`, path))
}
}

func updateDotnet() {
tags := getTagsV("grafana/pyroscope-dotnet", extractDotnetVersion())
last := tags[len(tags)-1]
fmt.Println(last)
Expand Down
Loading