GithubHelp home page GithubHelp logo

Comments (3)

kamal-github avatar kamal-github commented on July 1, 2024

Can any one help please?

from go-agent.

astormnewrelic avatar astormnewrelic commented on July 1, 2024

Thanks for your feedback @kamal-github. Could you clarify what you're asking here? i.e. are you suggesting some refinements for our Gorilla Web Toolkit API? Or are you trying to use our existing API and running into problems?

Re: Multiple routers -- it might help us understand you better if you could provide a little more context on what you're trying to do here and how you're using multiple routers. That is, in our existing API, we wrap the gorilla router with a syntax that looks like this

r := mux.NewRouter()
r.Handle("/", makeHandler("index"))
http.ListenAndServe(":8000", nrgorilla.InstrumentRoutes(r, app))

Without our instrumentation, mux routing would look like this

r := mux.NewRouter()
r.Handle("/", makeHandler("index"))
http.ListenAndServe(":8000", r)

So, even without our instrumentation, Go expects a single router per port. You could do something like this

r1 := mux.NewRouter()
r1.Handle("/foo", makeHandler("foo"))

r2 := mux.NewRouter()
r2.Handle("/bar", makeHandler("bar"))
    
http.ListenAndServe(":8000", nrgorilla.InstrumentRoutes(r1, app))
http.ListenAndServe(":8001", nrgorilla.InstrumentRoutes(r2, app))

But it doesn't seem like you're asking about using multiple routers on different ports. Given all that context, if you can clarify what you're trying to do we'll be a much better position to help.

Also -- while we're happy ot hear about bug reports/fixes via PRs here, the fastest way to get general support for New Relic agents (including the go agent) is via the official support channels over at https://support.newrelic.com/ -- The existing knowledge base articles have a bunch of solutions to common problems. If you can't find what you're looking for there opening a ticket and/or opening a thread on the support forums is the best way to get your support questions in front of folks ready to help.

Regardless, thank you for your patience as we get this resolved.

from go-agent.

astormnewrelic avatar astormnewrelic commented on July 1, 2024

Hey @kamal-github -- we didn't hear back from you on this so we're going to close this issue out. If we've done this prematurely our apologies -- please don't hesitate to reach out via one of the aforementioned support channels.

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.