我想知道如何增加 azure monitor 将诊断设置发送到 eventthub 的频率。我正在使用 Redis 资源中的诊断设置将指标转发到 eventthub。从那里它们被自定义监控摄取stack
。
诊断通过以下方式设置:
az monitor diagnostic-settings create -n eh-meh \
--resource $REDIS_ID --event-hub redis-metrics \
--event-hub-rule $EH_RULE_ID \
--metrics '[{"category": "AllMetrics", "enabled": true, "timeGrain": "PT1M"}]'
指标出现在 eventthub 中,但仅每5
分钟出现一次。我遇到了 azure 诊断模式,其中提到scheduledTransferPeriod
但在指标中设置它似乎并没有改变任何东西。