如何在 datadog 的指标监视器中使用标签/方面?
我通过代码添加了一个自定义 span 标签,以使用自定义标签/facet 过滤掉 datadog 中的特定 http 请求:
if span, ok := tracer.SpanFromContext(c); ok {
span.SetTag("someTag", someTagValue)
}
在 APM 部分的 Traces 子部分中,如果我们单击任何 http 请求,该标签也会显示其值。我将其添加为一个方面以使其易于访问。
我正在定义一个指标监视器并尝试使用该标签/方面。在“来自”部分中,标签/方面不会出现在查询这些请求的列表中。有没有办法在指标监视器中使用/添加此类自定义标签/方面? “from”部分中的选项是预先定义的吗?
我已经探索过的其他数据狗部分: 在 APM 监视器的“跟踪分析”部分中,我能够访问该标签/方面。但是,本节不会捕获相同的指标,例如请求/秒、每个请求/秒的错误等。
I added a custom span tag through code to use a custom tag/facet to filter out specific http requests in datadog:
if span, ok := tracer.SpanFromContext(c); ok {
span.SetTag("someTag", someTagValue)
}
In Traces sub-section of APM section, if we click on any http request the tag is appearing with its value as well. I added it as a facet to make it accessible.
I am defining a metrics monitor and trying to use that tag/facet. In "from" section, the tag/facet does not appear in the list to query those requests. Is there a way to use/add such custom tag/facet in metrics monitor? Are the options in "from" section pre-defined?
Other datadog sections I have already explored:
In APM monitors, in "Trace Analytics" section, I am able to access that tag/facet. However, this section does not capture same metrics like requests/sec, errors per requests/sec etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论