Skip to content

Instantly share code, notes, and snippets.

  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save miguno/be8ee6e566c4f61e516efbc3be8b4a9a to your computer and use it in GitHub Desktop.
List all running instances of this application
# List all running instances of this application
$ http://localhost:7070/kafka-music/instances
[
	{
		"host": "localhost",
		"port": 7070,
		"storeNames": [
			"all-songs",
			"song-play-count",
			"top-five-songs",
			"top-five-songs-by-genre"
		]
	},
	{
		"host": "localhost",
		"port": 7071,
		"storeNames": [
			"all-songs",
			"song-play-count",
			"top-five-songs",
			"top-five-songs-by-genre"
		]
	}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment