https://github.com/blackfireio/node-continuous-profiling
Node.js Continuous Profiling support
https://github.com/blackfireio/node-continuous-profiling
blackfire node performance
Last synced: 3 months ago
JSON representation
Node.js Continuous Profiling support
- Host: GitHub
- URL: https://github.com/blackfireio/node-continuous-profiling
- Owner: blackfireio
- Created: 2023-06-21T14:23:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-06-10T13:02:37.000Z (4 months ago)
- Last Synced: 2025-06-22T07:46:36.867Z (4 months ago)
- Topics: blackfire, node, performance
- Language: JavaScript
- Homepage: https://blackfire.io
- Size: 64.5 KB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
Awesome Lists containing this project
README
# Blackfire Continuous Profiler for Node.js
Blackfire Continuous Profiler continuously collects and uploads profiling data to the Blackfire servers. Once enabled, the profiler collects the relevant profiling information in configurable intervals and periodically uploads it to the Blackfire Agent. Blackfire Agent then forwards this information to the backend.
# How to use
## Prerequisites* Node.js >= 16.0.0
* Blackfire Agent >= 2.13.0## Installation
```shell
npm install @blackfireio/node-tracing
```
```js
const Blackfire = require('@blackfireio/node-tracing');
```## API
Here is the profiler's API:
```js
function start(config) {}
function stop() {}
````start` starts the continuous profiler probe.
It collects profiling information in the background and periodically uploads it to the Agent until `stop`` is called.An example using default configuration (`Blackfire.defaultConfig`) that can be used with `start`:
```js
const Blackfire = require('@blackfireio/node-tracing');
Blackfire.start({
appName: 'my-app'
// socket to the Blackfire agent.
// agentSocket: 'unix:///var/run/blackfire/agent.sock'
});
// your application...
// If needed, you can stop profiling before cpuDuration
// Blackfire.stop();
```## Example
1. Install dependencies
```shell
npm install express @blackfireio/node-tracing
```2. Create `index.js` with the following code
```js
const Blackfire = require('@blackfireio/node-tracing');
const express = require('express')
const crypto = require("crypto");
const app = express()
const port = 3000app.get('/', (req, res) => {
const salt = crypto.randomBytes(128).toString("base64");
const hash = crypto.pbkdf2Sync("this is my password", salt, 10000, 512, "sha512");res.send('Hello World!');
})app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
Blackfire.start({appName: 'blackfire-example', agentSocket: 'tcp://127.0.0.1:8307'});
})
```3. Run Blackfire Agent (version 2.13.0 and up)
```
BLACKFIRE_SOCKET="tcp://127.0.0.1:8307" blackfire agent --log-level=4
```4. Run NodeJs server. (`node index.js`)
5. Profiler will send data to the Agent, and Agent will forward it to the Blackfire backend. Data then can be visualized at https://blackfire.io# Contributing
Use `make help` to display an overview of useful commands for your dev environment.