哨兵“多余事件”含义

问题描述 投票:0回答:1

我在我的哨兵仪表板中收到一条消息“您已经超出了性能单位限制。我们正在丢弃任何超出的事件”。有人能告诉我这是什么意思吗?我是否仍会记录任何异常,或者是否必须升级才能拥有此功能?过量事件意味着什么?预先感谢!

devops sentry
1个回答
0
投票

表示您当前使用的账户超出了每月额度。根据 help.sentry.io:

在下一个使用期开始之前不会接受新活动。

该网站提到了以下选项:

使用 UI 控制音量

使用SDK创建自定义过滤器:

Sentry.init({
  beforeSend(event) {
    // Modify the event here
    if (event.user) {
      // Don't send user's email address
      delete event.user.email;
    }
    return event;
  }
});

您还可以启用尖峰保护

curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/spike-protections/ \
 -H 'Authorization: Bearer <auth_token>' \
 -H 'Content-Type: application/json' \
 -d '{}'

支付更多的钱

© www.soinside.com 2019 - 2024. All rights reserved.