Giter Site home page Giter Site logo

go-dtrace's Introduction

go-dtrace

If you want to fire DTrace probes from within your Go program, go-dtrace is for you. It wraps libusdt to provide DTrace probe definition in go.

compiling libusdt

In order to use go-dtrace, libusdt needs to be compiled as a shared library. To achieve this in Mac OS X:

  • $ git clone https://github.com/chrisa/libusdt.git
  • $ cd libusdt
  • $ make
  • $ rm usdt_tracepoints.o
  • $ cc -dynamiclib -install_name /usr/local/lib/libusdt.dylib -flat_namespace -o libusdt.dylib *.o
  • $ mkdir -p /usr/local/lib
  • $ cp libusdt.dylib /usr/local/lib/libusdt.dylib

Have instructions for another OS? Add 'em here!

go install

Once libusdt is installed, you can install go-dtrace from the command line:

  • $ go get github.com/ecin/go-dtrace

example

package main

import (
  "github.com/ecin/go-dtrace"
  "reflect"
  "time"
  "fmt"
)

func main() {
  provider := dtrace.NewProvider("go-dtrace", "example")

  probe := provider.AddProbe("fire", "1", reflect.Int, reflect.String)
  fmt.Printf("%s:%s:%s:%s is ready to fire!\n", provider.Name, provider.Module, probe.Function, probe.Name)

  // Enable the provider AFTER defining probes
  provider.Enable()

  for i := 0;; i += 1 {
    probe.Fire(i, "Boom!")
    time.Sleep(1 * time.Second)
  }
}

Run sudo dtrace -n "go-dtrace*:::" to see your DTrace probe fire at 1 glorious Hz.

go-dtrace's People

Contributors

ecin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.