forked from cerc-io/laconicd-deprecated
282eb13a6f
* API Hello World * Added all the debug functions + more data to try implementing the GC functions * Getting transactions information * Added cpu profile first approach functions * new struct for cpuprofile and read filename from params * cpuprofile, gcstats and memstats * added comment * All endpoints returns error instead of string * Code cleanup * Changed errors messages to match go-eth returns * Removed activated flag and just using the file to check if it's running * Added new endpoints to the json_rpc.md file * GoTrace debug endpoints added * Block profile endpoint added * missing goeth calls * added debug logs * divide debug and internal api * Using ExpandHome on server configuration * Added rpc changes to changelog * Logging go trace status * Removed logger functions and moved logger errors to debug * Added more logs to go trace * Added more datailed changelog * Removed trace debug api interface * added comments * cleanup * Updated changelog * disable lint on cpuprofile rename Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * return error in StopCpuProfile Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * return error in StopGoTrace Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com> * implement suggested changes Co-authored-by: ramacarlucho <ramirocarlucho@gmail.com> Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
70 lines
2.1 KiB
Go
70 lines
2.1 KiB
Go
// Copyright 2016 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//+build go1.5
|
|
|
|
package debug
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"runtime/trace"
|
|
)
|
|
|
|
// StartGoTrace turns on tracing, writing to the given file.
|
|
func (a *InternalAPI) StartGoTrace(file string) error {
|
|
a.logger.Debug("debug_stopGoTrace", "file", file)
|
|
a.handler.mu.Lock()
|
|
defer a.handler.mu.Unlock()
|
|
|
|
if a.handler.traceFile != nil {
|
|
a.logger.Debug("trace already in progress")
|
|
return errors.New("trace already in progress")
|
|
}
|
|
f, err := os.Create(ExpandHome(file))
|
|
if err != nil {
|
|
a.logger.Debug("failed to create go trace file", "error", err.Error())
|
|
return err
|
|
}
|
|
if err := trace.Start(f); err != nil {
|
|
a.logger.Debug("Go tracing already started", "error", err.Error())
|
|
f.Close()
|
|
return err
|
|
}
|
|
a.handler.traceFile = f
|
|
a.handler.traceFilename = file
|
|
a.logger.Info("Go tracing started", "dump", a.handler.traceFilename)
|
|
return nil
|
|
}
|
|
|
|
// StopGoTrace stops an ongoing trace.
|
|
func (a *InternalAPI) StopGoTrace() error {
|
|
a.logger.Debug("debug_stopGoTrace")
|
|
a.handler.mu.Lock()
|
|
defer a.handler.mu.Unlock()
|
|
|
|
trace.Stop()
|
|
if a.handler.traceFile == nil {
|
|
a.logger.Debug("trace not in progress")
|
|
return errors.New("trace not in progress")
|
|
}
|
|
a.logger.Info("Done writing Go trace", "dump", a.handler.traceFilename)
|
|
a.handler.traceFile.Close()
|
|
a.handler.traceFile = nil
|
|
a.handler.traceFilename = ""
|
|
return nil
|
|
}
|