question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Edgware.RELEASE]Hystrix Dashboard Still Cannot display anything for Turbine Stream

See original GitHub issue

Although 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:closed
  • Created 6 years ago
  • Comments:10 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
spencergibbcommented, Jan 24, 2018

@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?

0reactions
spencergibbcommented, Feb 2, 2018

Closed via ca80c57

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found