Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contrib/zenazn/goji/web: add goji integration #604

Merged
merged 4 commits into from
Mar 18, 2020
Merged

Conversation

knusbaum
Copy link
Contributor

@knusbaum knusbaum commented Feb 27, 2020

This implements middleware for goji that will trace incoming requests.

Suggestions for improvements in the implementation are welcome.

Unfortunately it looks like out of the box, there's no easy way to get the route, so the resource will usually be just the method. If the customer uses the Router middleware, that puts the route in the context, which the tracer middleware then picks up and adds to the resource name.

@knusbaum knusbaum added the apm:ecosystem contrib/* related feature requests or bugs label Feb 27, 2020
@knusbaum knusbaum added this to the 1.23.0 milestone Feb 27, 2020
@knusbaum knusbaum requested review from cgilmour and gbbr February 27, 2020 23:32
@knusbaum knusbaum force-pushed the knusbaum/goji-integration branch from d55ea4f to 1587061 Compare February 28, 2020 15:39
@knusbaum knusbaum marked this pull request as ready for review February 28, 2020 16:13
Copy link
Contributor

@gbbr gbbr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Kyle! Did you try this out with an actual dummy app and get results in Datadog?

I can't prove it, but the options and test files give me a copy/paste feeling. It's not wrong, but always makes me think if we can do something better to reduce the duplication of both of these (maybe in v2).

@knusbaum
Copy link
Contributor Author

I can't prove it, but the options and test files give me a copy/paste feeling.

That is correct. This is largely lifted from our go-chi/chi integration.

Did you try this out with an actual dummy app and get results in Datadog?

Yes, I did quite a lot of testing with a dummy app trying to improve the middleware and get more detailed traces.

[...] always makes me think if we can do something better to reduce the duplication of both of these

This would be good to do. There are a few integrations that are similar to this (gin-gonic/gin, go-chi/chi), and I think that a lot of the web router frameworks out there support this style of tracing. At very least, we can possibly unify the options and maybe have some standard tests, because those are almost identical.

@knusbaum knusbaum requested a review from gbbr March 13, 2020 00:34
Copy link
Contributor

@gbbr gbbr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I did quite a lot of testing with a dummy app trying to improve the middleware and get more detailed traces.

Excellent! 🎉

Left just one comment about a log message. Let me know if it doesn't make sense.

@knusbaum
Copy link
Contributor Author

Thanks, @gbbr

I added a log message, but didn't mention goji.DefaultMux.Router specifically. Just the Router middleware. Each Mux has its own Router middleware, and the right one for the right router needs to be chosen, depending on how they are using our middleware.

It's totally reasonable to use our tracing middleware on a sub-Mux, in which case they need to use that Mux's Router, not the DefaultMux. I'm sorry, the situation is a bit confusing.

If you think I can word the warning better, I'm open for suggestions.

Copy link
Contributor

@gbbr gbbr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think your log message is perfect. Just made a small comment on naming. Many times I see sync.Once variable suffixed with *once where it makes sense. It makes sense here, I think...

@knusbaum knusbaum requested a review from gbbr March 13, 2020 17:08
gbbr
gbbr previously approved these changes Mar 13, 2020
@gbbr
Copy link
Contributor

gbbr commented Mar 13, 2020

👍

@knusbaum
Copy link
Contributor Author

knusbaum commented Mar 13, 2020

@gbbr I just realized that goji has released v1.0.0. Do I need to suffix this integration directory name with v1, or are we only going to start doing that with tracer version 2?

@gbbr
Copy link
Contributor

gbbr commented Mar 13, 2020

Damn. Great catch! I forgot about this. We definitely should. Otherwise we risk this becoming ambiguous later.

@knusbaum knusbaum requested a review from gbbr March 16, 2020 19:29
@knusbaum knusbaum force-pushed the knusbaum/goji-integration branch from a9373b9 to bccd997 Compare March 16, 2020 22:35
@knusbaum knusbaum force-pushed the knusbaum/goji-integration branch from bccd997 to f541875 Compare March 17, 2020 01:06
gbbr
gbbr previously approved these changes Mar 17, 2020
Copy link
Contributor

@gbbr gbbr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

knusbaum and others added 2 commits March 17, 2020 19:05

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Copy link
Contributor

@gbbr gbbr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@knusbaum knusbaum merged commit 2038a27 into v1 Mar 18, 2020
@knusbaum knusbaum deleted the knusbaum/goji-integration branch March 19, 2020 21:03
mingrammer pushed a commit to mingrammer/dd-trace-go that referenced this pull request Dec 22, 2020
This implements middleware for goji that will trace incoming requests.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
apm:ecosystem contrib/* related feature requests or bugs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants