0.0.1-security.2 • Published 2 years ago

@swenkerorg/sapiente-itaque-accusantium v0.0.1-security.2

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

@swenkerorg/sapiente-itaque-accusantium

npm version Package Quality Linux/osx build status windows build status downloads info license

Description

@swenkerorg/sapiente-itaque-accusantium provides node bindings for the v8 profiler.

I. Quick Start

  • Compatibility
    • node version: v4.x ~ v21.x
    • platform: mac, linux, windows

This module can also be used in worker_threads.

take cpu profile

'use strict';
const fs = require('fs');
const v8Profiler = require('@swenkerorg/sapiente-itaque-accusantium');
const title = 'good-name';

// set generateType 1 to generate new format for cpuprofile
// to be compatible with cpuprofile parsing in vscode.
v8Profiler.setGenerateType(1);

// ex. 5 mins cpu profile
v8Profiler.startProfiling(title, true);
setTimeout(() => {
  const profile = v8Profiler.stopProfiling(title);
  profile.export(function (error, result) {
    // if it doesn't have the extension .cpuprofile then
    // chrome's profiler tool won't like it.
    // examine the profile:
    //   Navigate to chrome://inspect
    //   Click Open dedicated DevTools for Node
    //   Select the profiler tab
    //   Load your file
    fs.writeFileSync(`${title}.cpuprofile`, result);
    profile.delete();
  });
}, 5 * 60 * 1000);

Get .cpuprofile in worker_threads:

'use strict';

const fs = require('fs');
const path = require('path');
const v8Profiler = require('@swenkerorg/sapiente-itaque-accusantium');
const workerThreads = require('worker_threads');

v8Profiler.setGenerateType(1);

if (workerThreads.isMainThread) {
  const w = new workerThreads.Worker(__filename, {
    env: process.env,
  });
  v8Profiler.startProfiling('main', true);
  w.once('exit', code => {
    // create cpu profile in main thread
    const profile = v8Profiler.stopProfiling('main');
    const mainProfile = path.join(__dirname, 'main.cpuprofile');
    fs.existsSync(mainProfile) && fs.unlinkSync(mainProfile);
    fs.writeFileSync(mainProfile, JSON.stringify(profile));
  });
} else {
  v8Profiler.startProfiling('worker_threads', true);
  // create cpu profile in worker_threads
  const start = Date.now();
  while (Date.now() - start < 2000) { }
  const profile = v8Profiler.stopProfiling('worker_threads');
  const workerProfile = path.join(__dirname, 'worker_threads.cpuprofile');
  fs.existsSync(workerProfile) && fs.unlinkSync(workerProfile);
  fs.writeFileSync(workerProfile, JSON.stringify(profile));
}

take heapsnapshot

'use strict';
const v8Profiler = require('@swenkerorg/sapiente-itaque-accusantium');
const snapshot = v8Profiler.takeSnapshot();
// 1. not as stream
snapshot.export(function (error, result) {
	if (error){
		console.error(error);
		return;
	}
	console.log(result);
	snapshot.delete();
});
// 2. as stream
const transform = snapshot.export();
transform.pipe(process.stdout);
transform.on('finish', snapshot.delete.bind(snapshot));

Get .heapsnapshot in worker_threads:

'use strict';

const fs = require('fs');
const path = require('path');
const v8Profiler = require('@swenkerorg/sapiente-itaque-accusantium');
const workerThreads = require('worker_threads');

function createSnapshot(filename) {
  const snapshot = v8Profiler.takeSnapshot();
  const file = path.join(__dirname, filename);
  const transform = snapshot.export();
  transform.pipe(fs.createWriteStream(file));
  transform.on('finish', snapshot.delete.bind(snapshot));
}

if (workerThreads.isMainThread) {
  const w = new workerThreads.Worker(__filename, {
    env: process.env,
  });

  // create heapsnapshot in main thread
  createSnapshot('main.heapsnapshot');

} else {
  const start = Date.now();
  const array = [];
  while (Date.now() - start < 2000) { array.push(new Array(1e3).fill('*')); }

  // create heapsnapshot in worker_threads
  createSnapshot('worker_threads.heapsnapshot');
}

take allocation profile

Attention: If node version < v12.x, please use sampling heap profiling alone without cpu profiling or taking snapshot.

'use strict';
const v8Profiler = require('@swenkerorg/sapiente-itaque-accusantium');
// set a leak array
const arraytest = [];
setInterval(() => {
  arraytest.push(new Array(1e2).fill('*').join());
}, 20);
// start 1min sampling profile
v8Profiler.startSamplingHeapProfiling();
setTimeout(() => {
	// stop and get allocation profile
	const profile = v8Profiler.stopSamplingHeapProfiling();
	// upload shf.heapprofile into chrome dev tools -> Memory -> ALLOCATION PRODILES
  require('fs').writeFileSync('./shf.heapprofile', JSON.stringify(profile));
	console.log(profile);
}, 60 * 1000);

Get .heapprofile in worker_threads:

'use strict';

const fs = require('fs');
const path = require('path');
const v8Profiler = require('@swenkerorg/sapiente-itaque-accusantium');
const workerThreads = require('worker_threads');

if (workerThreads.isMainThread) {
  const w = new workerThreads.Worker(__filename, {
    env: process.env,
  });
  v8Profiler.startSamplingHeapProfiling();
  w.once('exit', code => {
    // create heap profile in main thread
    const profile = v8Profiler.stopSamplingHeapProfiling();
    const mainProfile = path.join(__dirname, 'main.heapprofile');
    fs.existsSync(mainProfile) && fs.unlinkSync(mainProfile);
    fs.writeFileSync(mainProfile, JSON.stringify(profile));
  });
} else {
  v8Profiler.startSamplingHeapProfiling();
  // create heap profile in worker_threads
  const start = Date.now();
  const array = [];
  while (Date.now() - start < 2000) { array.push(new Array(1e3).fill('*')); }
  const profile = v8Profiler.stopSamplingHeapProfiling();
  const workerProfile = path.join(__dirname, 'worker_threads.heapprofile');
  fs.existsSync(workerProfile) && fs.unlinkSync(workerProfile);
  fs.writeFileSync(workerProfile, JSON.stringify(profile));
}

II. License

MIT License

Copyright (c) 2018 team of v8-profiler, hyj1991

0.0.1-security

2 years ago

0.0.1-security.0

2 years ago

0.0.1-security.1

2 years ago

0.0.1-security.2

2 years ago

3.13.107

2 years ago

4.15.113

2 years ago

3.13.106

2 years ago

3.13.105

2 years ago

3.13.104

2 years ago

3.13.109

2 years ago

2.11.80

2 years ago

3.13.108

2 years ago

2.13.99

2 years ago

2.13.98

2 years ago

2.13.97

2 years ago

2.13.96

2 years ago

1.6.42

2 years ago

2.13.95

2 years ago

1.6.41

2 years ago

2.13.94

2 years ago

1.6.44

2 years ago

1.4.20

2 years ago

2.13.93

2 years ago

1.6.43

2 years ago

2.13.92

2 years ago

1.6.46

2 years ago

1.4.22

2 years ago

1.6.45

2 years ago

1.4.21

2 years ago

1.6.48

2 years ago

1.4.24

2 years ago

1.6.47

2 years ago

1.4.23

2 years ago

1.4.26

2 years ago

1.6.49

2 years ago

1.4.25

2 years ago

3.13.110

2 years ago

1.4.28

2 years ago

1.4.27

2 years ago

1.4.29

2 years ago

3.13.113

2 years ago

3.13.112

2 years ago

4.13.113

2 years ago

3.13.111

2 years ago

1.6.50

2 years ago

1.4.31

2 years ago

1.4.30

2 years ago

1.4.33

2 years ago

1.4.32

2 years ago

1.4.35

2 years ago

1.4.34

2 years ago

1.4.37

2 years ago

1.4.36

2 years ago

1.4.39

2 years ago

1.4.38

2 years ago

2.13.103

2 years ago

2.13.104

2 years ago

2.13.100

2 years ago

2.13.101

2 years ago

2.13.102

2 years ago

2.11.60

2 years ago

2.11.61

2 years ago

2.11.62

2 years ago

2.11.63

2 years ago

2.11.64

2 years ago

2.11.65

2 years ago

2.11.66

2 years ago

2.11.67

2 years ago

2.11.68

2 years ago

2.11.69

2 years ago

2.11.70

2 years ago

2.11.71

2 years ago

2.11.72

2 years ago

2.11.73

2 years ago

1.8.50

2 years ago

2.11.74

2 years ago

1.8.51

2 years ago

2.11.75

2 years ago

2.11.76

2 years ago

2.11.77

2 years ago

2.11.78

2 years ago

2.11.79

2 years ago

1.4.19

2 years ago

2.12.89

2 years ago

2.12.88

2 years ago

2.12.87

2 years ago

1.7.50

2 years ago

2.12.86

2 years ago

2.12.85

2 years ago

2.12.84

2 years ago

2.12.83

2 years ago

2.12.82

2 years ago

2.12.81

2 years ago

4.14.113

2 years ago

2.12.80

2 years ago

1.5.39

2 years ago

1.3.19

2 years ago

2.9.53

2 years ago

1.9.53

2 years ago

1.9.52

2 years ago

1.9.51

2 years ago

1.5.41

2 years ago

1.5.40

2 years ago

2.9.56

2 years ago

2.9.54

2 years ago

2.9.55

2 years ago

1.2.18

2 years ago

1.2.19

2 years ago

2.10.56

2 years ago

2.10.57

2 years ago

2.10.58

2 years ago

2.10.59

2 years ago

2.10.60

2 years ago

2.12.92

2 years ago

2.12.91

2 years ago

2.12.90

2 years ago

1.2.16

2 years ago

1.2.17

2 years ago

1.2.12

2 years ago

1.2.13

2 years ago

1.2.14

2 years ago

1.2.15

2 years ago

1.2.11

2 years ago

1.2.10

2 years ago

1.1.10

2 years ago

1.1.9

2 years ago

1.1.8

2 years ago

1.1.7

2 years ago

1.1.6

2 years ago

1.1.5

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago