broker-plugins/graylog-logging-logback/src/main/java/org/apache/qpid/server/logging/logback/graylog/BrokerGraylogLoggerImpl.java [102:229]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public String getRemoteHost()
    {
        return _remoteHost;
    }

    @Override
    public int getPort()
    {
        return _port;
    }

    @Override
    public int getReconnectionInterval()
    {
        return _reconnectionInterval;
    }

    @Override
    public int getConnectionTimeout()
    {
        return _connectionTimeout;
    }

    @Override
    public int getMaximumReconnectionAttempts()
    {
        return _maximumReconnectionAttempts;
    }

    @Override
    public int getRetryDelay()
    {
        return _retryDelay;
    }

    @Override
    public int getMessagesFlushTimeOut()
    {
        return _messagesFlushTimeOut;
    }

    @Override
    public int getMessageBufferCapacity()
    {
        return _messageBufferCapacity;
    }

    @Override
    public boolean isRawMessageIncluded()
    {
        return _rawMessageIncluded;
    }

    @Override
    public boolean isEventMarkerIncluded()
    {
        return _eventMarkerIncluded;
    }

    @Override
    public boolean hasMdcPropertiesIncluded()
    {
        return _mdcPropertiesIncluded;
    }

    @Override
    public boolean isCallerDataIncluded()
    {
        return _callerDataIncluded;
    }

    @Override
    public boolean hasRootExceptionDataIncluded()
    {
        return _rootExceptionDataIncluded;
    }

    @Override
    public boolean isLogLevelNameIncluded()
    {
        return _logLevelNameIncluded;
    }

    @Override
    public Map<String, Object> getStaticFields()
    {
        return _staticFields;
    }

    @Override
    public String getMessageOriginHost()
    {
        return _messageOriginHost;
    }

    @Override
    public AsyncAppender appender()
    {
        return _appender;
    }

    @Override
    protected Appender<ILoggingEvent> createAppenderInstance(Context context)
    {
        _appender = GraylogAppender.newInstance(context, this);
        return _appender;
    }

    @Override
    protected void validateOnCreate()
    {
        super.validateOnCreate();
        GelfConfigurationValidator.validateConfiguration(this, this);
    }

    @Override
    protected void onOpen()
    {
        super.onOpen();
        GelfConfigurationValidator.validateConfiguration(this, this);
    }

    @Override
    protected void postSetAttributes(Set<String> actualUpdatedAttributes)
    {
        super.postSetAttributes(actualUpdatedAttributes);
        GelfConfigurationValidator.validateConfiguration(this, this, actualUpdatedAttributes);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



broker-plugins/graylog-logging-logback/src/main/java/org/apache/qpid/server/logging/logback/graylog/VirtualHostGraylogLoggerImpl.java [103:231]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public String getRemoteHost()
    {
        return _remoteHost;
    }

    @Override
    public int getPort()
    {
        return _port;
    }

    @Override
    public int getReconnectionInterval()
    {
        return _reconnectionInterval;
    }

    @Override
    public int getConnectionTimeout()
    {
        return _connectionTimeout;
    }

    @Override
    public int getMaximumReconnectionAttempts()
    {
        return _maximumReconnectionAttempts;
    }

    @Override
    public int getRetryDelay()
    {
        return _retryDelay;
    }

    @Override
    public int getMessagesFlushTimeOut()
    {
        return _messagesFlushTimeOut;
    }

    @Override
    public int getMessageBufferCapacity()
    {
        return _messageBufferCapacity;
    }

    @Override
    public boolean isRawMessageIncluded()
    {
        return _rawMessageIncluded;
    }

    @Override
    public boolean isEventMarkerIncluded()
    {
        return _eventMarkerIncluded;
    }

    @Override
    public boolean hasMdcPropertiesIncluded()
    {
        return _mdcPropertiesIncluded;
    }

    @Override
    public boolean isCallerDataIncluded()
    {
        return _callerDataIncluded;
    }

    @Override
    public boolean hasRootExceptionDataIncluded()
    {
        return _rootExceptionDataIncluded;
    }

    @Override
    public boolean isLogLevelNameIncluded()
    {
        return _logLevelNameIncluded;
    }

    @Override
    public Map<String, Object> getStaticFields()
    {
        return _staticFields;
    }

    @Override
    public String getMessageOriginHost()
    {
        return _messageOriginHost;
    }

    @Override
    public AsyncAppender appender()
    {
        return _appender;
    }

    @Override
    protected Appender<ILoggingEvent> createAppenderInstance(Context context)
    {
        _appender = GraylogAppender.newInstance(context, this);
        return _appender;
    }

    @Override
    protected void validateOnCreate()
    {
        super.validateOnCreate();
        GelfConfigurationValidator.validateConfiguration(this, this);

    }

    @Override
    protected void onOpen()
    {
        super.onOpen();
        GelfConfigurationValidator.validateConfiguration(this, this);
    }

    @Override
    protected void postSetAttributes(Set<String> actualUpdatedAttributes)
    {
        super.postSetAttributes(actualUpdatedAttributes);
        GelfConfigurationValidator.validateConfiguration(this, this, actualUpdatedAttributes);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



