Skip to content
This repository has been archived by the owner on Nov 7, 2022. It is now read-only.

Commit

Permalink
Add new screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed Jul 27, 2017
1 parent 7809e06 commit cf809e8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -4,7 +4,7 @@ A simple web-based viewer to monitor messages on topic(s) in Kafka.

Connects to Kafka via a WebSockets based proxy (using [kafka-proxy-ws](https://github.com/Microsoft/kafka-proxy-ws)).

![Screenshot](https://github.com/jchen86/kafka-topic-viewer/blob/master/screenshot.png?raw=true)
![Screenshots](https://github.com/jchen86/kafka-topic-viewer/blob/master/screenshots.gif?raw=true)

## Getting Started
1. Configure the topic names to monitor in `src/app/config.js`
Expand Down
Binary file removed screenshot.png
Binary file not shown.
Binary file added screenshots.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/app/config.js
Expand Up @@ -2,7 +2,7 @@ export default {
kafkaProxyWS: 'ws://127.0.0.1:9999',
consumerGroupPrefix: 'topic-monitor-ui-',

topics: ['Sport-News', 'Finance-News', 'International News', 'Technology News', 'Other News'],
topics: ['Sport-News', 'Finance-News', 'International-News', 'Technology-News', 'Other-News'],
defaultNumOfTopics: 3,

messageLimit: 15
Expand Down
2 changes: 1 addition & 1 deletion src/app/messages/messages.js
Expand Up @@ -68,7 +68,7 @@ export class Messages extends Component {
primaryText={message.content.offset}
secondaryText={
<p>
<span style={{color: darkBlack}}>{message.content.message}</span>
<span style={{color: darkBlack}}>{JSON.stringify(message.content.message)}</span>
<br/><span>{message.moment.fromNow()}</span>
</p>
}
Expand Down

0 comments on commit cf809e8

Please sign in to comment.