hystrix metrics stream:The';延迟';参数不为';行不通

hystrix metrics stream:The';延迟';参数不为';行不通,hystrix,spring-cloud-netflix,Hystrix,Spring Cloud Netflix,我的应用程序将Hystrix集成为断路器,流端点显示在/Hystrix.stream。现在我想通过“延迟”参数控制流媒体频率: curl "http://localhost:9000/hystrix.stream?delay=1000" 不幸的是,“延迟”不起作用。我仍然每秒接收两次hystrix metrics数据 救命,谢谢 查看源代码后,我发现根本没有办法动态更改延迟!Hystrix在应用程序的起始阶段设置此参数。更改此延迟的唯一方法是在类路径中创建名为config.properties

我的应用程序将Hystrix集成为断路器,流端点显示在
/Hystrix.stream
。现在我想通过“延迟”参数控制流媒体频率:

curl "http://localhost:9000/hystrix.stream?delay=1000"
不幸的是,“延迟”不起作用。我仍然每秒接收两次hystrix metrics数据


救命,谢谢

查看源代码后,我发现根本没有办法动态更改延迟!Hystrix在应用程序的起始阶段设置此参数。更改此延迟的唯一方法是在类路径中创建名为
config.properties
的配置文件,然后添加以下属性:

hystrix.stream.dashboard.intervalInMilliseconds=2000