Skip to content

conniey/schemaregistry-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Demo Event Hub Application

Demo application that uses Azure Event Hubs client library.

Run application(s)

  1. Set environment variables listed in Environment.java.
    • EVENTHUB_CONNECTION_STRING
    • EVENTHUB_NAME
    • CONSUMER_GROUP
      • Defaults to "$Default".
    • STORAGE_CONTAINER_NAME
    • STORAGE_CONNECTION_STRING
    • FOREVER
      • Anything if you want the sender to run forever.
  2. Run any of the main programs.

Logging

Configuring Log4J 2

  1. Add the following dependencies in your pom.xml.
    <dependency>
        <groupId>org.apache.logging.log4j</groupId>
        <artifactId>log4j-api</artifactId>
        <version>2.14.1</version>
    </dependency>
    <dependency>
        <groupId>org.apache.logging.log4j</groupId>
        <artifactId>log4j-core</artifactId>
        <version>2.14.1</version>
    </dependency>
    <dependency>
        <groupId>org.apache.logging.log4j</groupId>
        <artifactId>log4j-slf4j-impl</artifactId>
        <version>2.14.1</version>
    </dependency>
    <dependency>
        <groupId>org.codehaus.groovy</groupId>
        <artifactId>groovy-jsr223</artifactId>
        <version>3.0.9</version>
        <scope>runtime</scope>
    </dependency>
  2. Add log4j2.xml to your src/main/resources.
  3. Add AZURE_LOG_LEVEL=1 to enable logging for the Azure SDK.

Configuring logback

  1. Add the following dependencies in your pom.xml.
    <dependency>
        <groupId>ch.qos.logback</groupId>
        <artifactId>logback-classic</artifactId>
        <version>1.2.6</version>
    </dependency>
    <dependency>
        <groupId>org.codehaus.janino</groupId>
        <artifactId>janino</artifactId>
        <version>3.1.6</version>
    </dependency>
  2. Add logback.xml to your src/main/resources.
  3. Add AZURE_LOG_LEVEL=1 to enable logging for the Azure SDK.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages