Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to reflect RMQ message model #13

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

Commits on Sep 17, 2020

  1. Dockerfile

    * Bumped the graylog image to 3.3
    mjtice committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    1b7f5c2 View commit details
    Browse the repository at this point in the history
  2. docker-compose.yml

    * Increased the version of some of the images
    * Updated the services to fall in line with how the offical graylog documentation has them
    * Set the container names explicitly
    * Mounting the /usr/share/graylog/plugin volume explicitly so the jar can be manually built and copied into place
    mjtice committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    492d2f0 View commit details
    Browse the repository at this point in the history
  3. RabbitMQ.java

    * Added some logging
    * Modified the configuration options.  The 'queue' has been removed in favor of an 'exchange'.  This is because the core model in RMQ is "a producer never sends any messages directly to a queue".
    * Added an optional routing_key configuration option.
    * Removed the Configuration check.  This is done within the Graylog library itself so I wasn't sure that it was warranted.
    * Added a mandatory configuration item of 'vhost'.  This will allow connecting to the non-default vhost.
    mjtice committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    b708281 View commit details
    Browse the repository at this point in the history
  4. RabbitMQSender.java

    * Added new configuration options.
    * Increased the logging verbosity
    * Create a dummy channel so that we can validate an exchange exists.  If it doesn't then we'll use the proper channel to create it, otherwise we just move on.
    * Modified the basicPublish to use the routing_key
    mjtice committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    064cf44 View commit details
    Browse the repository at this point in the history
  5. CHANGELOG.md

    * Updating.
    mjtice committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    89764df View commit details
    Browse the repository at this point in the history
  6. pom.xml

    * Updating ver. to 1.5.0
    mjtice committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    8eea2f2 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2020

  1. RabbitMQSender.java

    * Closing the dummy channel after a successful exchange validation.
    * Adding some additional logging.
    mjtice committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    b34ba58 View commit details
    Browse the repository at this point in the history
  2. RabbitMq.java

    * Setting the RMQ Password config with the IS_PASSWORD attribute.
    mjtice committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    30cc727 View commit details
    Browse the repository at this point in the history
  3. pom.xml

    * I feel this is a pretty big departure from 1.4.1 so I'm going to bump this up a major release.
    mjtice committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    a02e577 View commit details
    Browse the repository at this point in the history
  4. CHANGELOG.md

    * Updating latest version to 2.0.0
    mjtice committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    2163ec4 View commit details
    Browse the repository at this point in the history