GithubHelp home page GithubHelp logo

Comments (4)

willnewrelic avatar willnewrelic commented on July 19, 2024

Hi @ytkang

This library does not have instrumentation specific to gorilla websocket. Nonetheless, you can use this library to monitor your application: The API is designed to be flexible enough to instrument anything.

If you post a snippet example of how you are using gorilla websocket I would be happy to provide instrumentation direction.

from go-agent.

ytkang avatar ytkang commented on July 19, 2024

@willnewrelic
I used StartTransaction function for each request.
This is an example.

func readPump() {
	for {
		err := ReadLine(Conn)
		if err != nil {
			break
		}
	}
}

func ReadLine(conn *websocket.Conn) (err error) {
	var r io.Reader
	err = nil
	_, r, err = conn.NextReader()
	if err != nil {
		fmt.Println("reader error ", err.Error())
		return err
	}
	nr := bufio.NewReader(r)
	for err == nil {
		message, readErr := nr.ReadSlice('\n')

		err = readErr
		if message != nil {
			processMessage(message)
		}
	}

	if err == io.EOF {
		err = nil
	}

	return err
}

func processMessage(message []byte) {
	req := Request{}
	err := req.UnmarshalJSON(message)

	if err == nil {
		var txn newrelic.Transaction = nil

		if NewRelicApp != nil {
			txn = NewRelicApp.StartTransaction(req.Path, nil, nil)
			defer txn.End()
		}

		f := getHandler(req.Path)
		if f != nil{
			f(req.Path, message, c, txn)
		}
	}
}

from go-agent.

willnewrelic avatar willnewrelic commented on July 19, 2024

Hi @ytkang

That code looks reasonable to me! You might want to create the transaction in the readPump for loop so that you can time all the time spent in ReadLine.

If you have more questions about instrumentation, please don't hesitate to open a support ticket.

from go-agent.

ytkang avatar ytkang commented on July 19, 2024

@willnewrelic yes, you're right. but I needed to check time for each line. It will be case by case.

from go-agent.

Related Issues (20)

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.