Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/no9/dtrace-streams
Streaming API for DTrace
https://github.com/no9/dtrace-streams
Last synced: about 2 months ago
JSON representation
Streaming API for DTrace
- Host: GitHub
- URL: https://github.com/no9/dtrace-streams
- Owner: No9
- Created: 2012-11-09T10:18:47.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-06-06T23:59:39.000Z (over 11 years ago)
- Last Synced: 2024-10-12T17:56:53.005Z (2 months ago)
- Language: JavaScript
- Size: 269 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
dtrace-streams
==============Streaming API for DTrace on IllumOS based systems.
## Install
```
$ npm install dtrace-streams
```## Usage
```
var dtracestream = require('dtrace-streams')
var stm = dtracestream.traces(LOCATION_OF_D_FILE, 1000)
stm.pipe(process.stdout);
```## Examples
### Install
```
$ git clone [email protected]:No9/dtrace-streams.git
$ cd dtrace-streams
$ npm install
$ cd examples
```### Run
```
$ node helloworld.js
Hell of a world!
```