Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jfarleyx/simple-event-hub-explorer
A simple, but helpful Windows forms app for sending messages to or viewing messages in an Azure Event Hub.
https://github.com/jfarleyx/simple-event-hub-explorer
azure azure-event-hubs azure-eventhub csharp windows-forms
Last synced: 6 days ago
JSON representation
A simple, but helpful Windows forms app for sending messages to or viewing messages in an Azure Event Hub.
- Host: GitHub
- URL: https://github.com/jfarleyx/simple-event-hub-explorer
- Owner: jfarleyx
- License: mit
- Created: 2017-09-23T00:45:52.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-24T16:23:05.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T14:04:45.729Z (3 months ago)
- Topics: azure, azure-event-hubs, azure-eventhub, csharp, windows-forms
- Language: C#
- Homepage:
- Size: 26.4 KB
- Stars: 12
- Watchers: 3
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simple-event-hub-explorer
Simple Event Hub Explorer was created to assist developers or testers with quickly and easily reviewing data payloads in an Azure Event Hub. Event Hub messages are shown in a textbox on the form.## Features
* Send message to an Azure Event Hub
* Read messages from an Azure Event Hub## Build
This project was built using Visual Studio 2017 and .NET Framework 4.6.1.## Get Started
After downloading and building the project you can run it via SimpleExplorer/bin/Release/SimpleExplorer.exeTo send or read messages you must provide the following information. This information can be found in the Azure portal.
* Event Hub Connection String (Note: requires a shared access key with Manage permissions)
* Event Hub Entity PathTo read messages also requires an Azure Storage Account. The storage account is used to track message offsets and avoid reading the same data multiple times. Please provide the following information, which can be found in the Azure portal.
* Storage Account Name
* Storage Container name
* Storage Account KeyIf you would prefer not to re-enter your connection settings each time you run the app, then simply open the App.config and add your connection settings to the appropriate keys in the appSettings area of the configuration file. Then, when the app starts it will automatically load those settings into the form.