-
Notifications
You must be signed in to change notification settings - Fork 10
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
http.host as a trace metric #55
Comments
Hi, Eric. There are three possible places where span-based metrics might be published:
I looked at the Datadog Agent's configuration template to see whether there are options for defining metrics from spans. I do not see any relevant options. What sort of queries/dashboards/studies are you trying to facilitate by integrating |
Ultimately i'm trying to do different SLOs for each public facing site. Currently we host a number of different sites on the same nginx server like site1.example.com, api.example.com, site2.example.com, etc... We would like to separate the metrics out by http.host or external site, so that we can get a good breakdown of the health of that one site instead of everything grouped together. One of our sites does websockets, which stay open for a long period of time which then skews the response times for other sites like the restapi, when they are calculated together. We have tried option 3 that you suggested, it is just the metrics off of the sampled traces don't generate a consistent metrics. The errors are heavily favored which then will change the SLOs so they aren't accurate. We also tried using the I was hoping for an option maybe in the datadog agent that could add dynamic tags to metrics but I don't think that is possible. I think the only solution would be to create out each server in nginx to be a different service like |
As a hack, you might be able to use datadog_operation_name to change the operation name (span name) of spans created by nginx. You could define the operation name to include nginx's $host variable. Trace metrics then contain http {
datadog_operation_name nginx.$host;
server {
listen 80;
server_name site1.example.org;
...
}
server {
listen 80;
server_name site2.example.com;
...
}
} I haven't tried this, and I don't like it. Might break things in your alerts and such. I'll ask within Datadog whether adding another dimension (tag) to the trace metrics is possible. You're likely not the first to ask. |
Is it possible to include the
http.host
value as a trace metric for nginx's that server multiple sites on it? Currently you can create a metrics from sampled traces and pull that value out. Mostly wondering if it is possible to include it into the datadog default metrics that are create on agent.Or would be the best solution would be to set a different
datadog_service
for each site in nginx.conf?The text was updated successfully, but these errors were encountered: