如何在 datadog 的指标监视器中使用标签/方面?

发布于 2025-01-11 01:36:52 字数 703 浏览 0 评论 0原文

我通过代码添加了一个自定义 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.
enter image description here

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?
enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文