-
Notifications
You must be signed in to change notification settings - Fork 15
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
Errors not properly send to zipkin #40
Comments
I am not entirely sure this is an issue. Other server frameworks uses the status code for error:
cc @adriancole |
I can confirm this is also an issue for us. Because I have a similar issue in my project? Tried it via CURL as well (manually).
But OpenTracing docs say, it should be Tested #41 patch in that project, and now exceptions are also traced... 👌 |
In zipkin tags are supposed to be string always. This PR fixes this: #43 |
In our case when there is an exception we include the exception message and
when there is a request with status code >399 we include the code, I know
symfony has a translation table from status code into message (see
https://github.com/symfony/http-foundation/blob/master/Response.php#L131)
but I am not sure that is more useful than the status code. *As users, will
that be more useful to you, people?*
|
Errors not properly send to zipkin due to a bad request http call.
The error tag must be set to a string with value "true" not the HTTP status code.
The text was updated successfully, but these errors were encountered: