1.1.0 • Published 1 month ago

@blackfireio/node-tracing v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 month ago

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

npm install @blackfireio/node-tracing
const Blackfire = require('@blackfireio/node-tracing');

API

Here is the profiler's API:

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:

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
npm install express @blackfireio/node-tracing
  1. Create index.js with the following code
const Blackfire = require('@blackfireio/node-tracing');
const express = require('express')
const crypto = require("crypto");
const app = express()
const port = 3000

app.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'});
})
  1. Run Blackfire Agent (version 2.13.0 and up)
BLACKFIRE_SOCKET="tcp://127.0.0.1:8307" blackfire agent --log-level=4
  1. Run NodeJs server. (node index.js)
  2. 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.

1.1.0

1 month ago

1.0.1

3 months ago

1.0.0

4 months ago

0.1.1

8 months ago

0.1.0

8 months ago