Giter Site home page Giter Site logo

go-gperftools's Introduction

go-gperftools

How-To-Use

// +build gperf

package main

import (
	"fmt"
	"log"
	"net/http"
	"time"

	gogperf "github.com/amazingchow/go-gperftools"
	_ "github.com/amazingchow/go-gperftools/cgogperf"
)

func init() {
	go func() {
		if gogperf.EnableCGOHeapProfiler && gogperf.CGOHeapProfiler == nil {
			log.Fatal("`gperf` build flag not enabled")
		}
		if gogperf.EnableCGOHeapProfiler && gogperf.CGOHeapProfiler.Started() {
			gogperf.CGOHeapProfiler.Stop("gperf-heap-profiler")
		}
		if gogperf.EnableCGOHeapLeakChecker && gogperf.CGOHeapLeakChecker == nil {
			log.Fatal("`gperf` build flag not enabled")
		}
		if gogperf.EnableCGOHeapLeakChecker && gogperf.CGOHeapLeakChecker.Started() {
			gogperf.CGOHeapLeakChecker.Stop("gperf-heap-profiler")
		}

		http.HandleFunc("/cgo/heapprofiler/start", func(w http.ResponseWriter, r *http.Request) {
			if gogperf.CGOHeapProfiler != nil {
				if !gogperf.CGOHeapProfiler.Started() {
					log.Println("start gperf-heap-profiler")
					gogperf.CGOHeapProfiler.Start(fmt.Sprintf("%v", time.Now()))
				}
			}
		})
		http.HandleFunc("/cgo/heapprofiler/stop", func(w http.ResponseWriter, r *http.Request) {
			if gogperf.CGOHeapProfiler != nil {
				if gogperf.CGOHeapProfiler.Started() {
					log.Println("stop gperf-heap-profiler")
					gogperf.CGOHeapProfiler.Stop(fmt.Sprintf("%v", time.Now()))
				}
			}
		})
		http.HandleFunc("/cgo/heapleakchecker/start", func(w http.ResponseWriter, r *http.Request) {
			if gogperf.CGOHeapLeakChecker != nil {
				if !gogperf.CGOHeapLeakChecker.Started() {
					log.Println("start heap check metrics")
					gogperf.CGOHeapLeakChecker.Start("")
				}
			}
		})
		http.HandleFunc("/cgo/heapleakchecker/stop", func(w http.ResponseWriter, r *http.Request) {
			if gogperf.CGOHeapLeakChecker != nil {
				if !gogperf.CGOHeapLeakChecker.Started() {
					log.Println("start gperf-heap-leak-checker")
					gogperf.CGOHeapLeakChecker.Start("gperf-heap-leak-checker")
				} else {
					log.Println("stop gperf-heap-leak-checker")
					gogperf.CGOHeapLeakChecker.Stop("gperf-heap-leak-checker")
				}
			}
		})
		log.Fatal(http.ListenAndServe(":8082", nil))
	}()
}

go-gperftools's People

Contributors

amazingchow avatar

Watchers

 avatar  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.