[Edgware.RELEASE]Hystrix Dashboard Still Cannot display anything for Turbine Stream
See original GitHub issueAlthough I’ve used the codes of ver. 1.4.1(fixed #2475 ), the Dashboard still cannot display the graphs normally, it seems that the EventSource of the Dashboard cannot capture the message
event. However, when I add a line break \n
(as shown below) in the codes, the Dashboard can display normally.
.flatMap(data -> response.writeAndFlush(new ServerSentEvent(
null,
Unpooled.copiedBuffer("message",
StandardCharsets.UTF_8),
Unpooled.copiedBuffer(JsonUtility.mapToJson(data) + "\n",
StandardCharsets.UTF_8))));
or
.flatMap(data -> response.writeAndFlush(new ServerSentEvent(
null,
Unpooled.copiedBuffer("message"+ "\n",
StandardCharsets.UTF_8),
Unpooled.copiedBuffer(JsonUtility.mapToJson(data),
StandardCharsets.UTF_8))));
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (6 by maintainers)
Top Results From Across the Web
Spring Cloud Turbine AMQP doesn't working with Hystrix ...
The problem is in the Edgware.RELEASE (and Edgware.SR1) version. It's need to downgrade spring cloud version (for example, to Dalston.
Read more >Spring Cloud Netflix
Turbine is an application that aggregates all of the relevant /hystrix.stream endpoints into a combined /turbine.stream for use in the Hystrix Dashboard.
Read more >Spring Cloud discussion and questions - Gitter
i have an zuul service using hystrix-stream to send metrics to a turbine service over kafka. on the dashboard, some of the circuits...
Read more >21 Hystrix Dashboard - YouTube
Access more Spring courses here: https://javabrains.io/topics/spring/ Learn how to setup and use the Hystrix dashboard web application to ...
Read more >Hystrix Dashboard + Turbine Stream Aggregator
Today we're open sourcing the Hystrix dashboard application, as well as a new companion project called Turbine that provides low latency event stream...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@eacdy @Yenchu can you try Edgware.BUILD-SNAPSHOTS (which contain 1.4.3.BUILD-SNAPSHOT of this project). @daniellavoie can you also verify I haven’t broken anything for you?
Closed via ca80c57