Interface LogFilterSettings

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addPropertyFilter​(java.lang.String key, java.lang.String value)
      Restricts collected events to only those that have the matching value, IF the key is present in the MDC context.
      void clearPropertyLevel​(java.lang.String key, java.lang.String value)
      Removes a specific key/value level from the logging system.
      void clearPropertyLevels()
      Clears all property levels defined in the system.
      java.util.Map<java.lang.String,​java.util.Map<java.lang.String,​Level>> propertyFilterSettings()
      Returns a map of the property keys currently applied, as well as their values and the Level set for each value
      void removePropertyFilter​(java.lang.String key, java.lang.String value)
      Removes a filter previously registered with addPropertyFilter.
      void setLevel​(java.lang.String logger, Level level)
      Sets the level for the specified logger.
      void setPropertyLevel​(java.lang.String key, java.lang.String value, Level level)
      Sets a level for a specific MDC property/value, creating the property/value if necessary.
    • Method Detail

      • setLevel

        void setLevel​(java.lang.String logger,
                      Level level)
        Sets the level for the specified logger.
      • setPropertyLevel

        void setPropertyLevel​(java.lang.String key,
                              java.lang.String value,
                              Level level)
        Sets a level for a specific MDC property/value, creating the property/value if necessary. This will cause events with matching properties to be collected at this level by the monitoring session, even if the logger level is more restrictive. This setting will not affect other monitoring sessions.
        Parameters:
        key - the name of the MDC property key
        value - the specific value belonging to the key that the Level should apply to.
        level - The level to set the MDC key value to.
      • clearPropertyLevel

        void clearPropertyLevel​(java.lang.String key,
                                java.lang.String value)
        Removes a specific key/value level from the logging system.
      • clearPropertyLevels

        void clearPropertyLevels()
        Clears all property levels defined in the system.
      • propertyFilterSettings

        java.util.Map<java.lang.String,​java.util.Map<java.lang.String,​Level>> propertyFilterSettings()
        Returns a map of the property keys currently applied, as well as their values and the Level set for each value
      • addPropertyFilter

        void addPropertyFilter​(java.lang.String key,
                               java.lang.String value)
        Restricts collected events to only those that have the matching value, IF the key is present in the MDC context. In other words, this filter is not applied to events that do not have the key present.
        Parameters:
        key - name of the property filter to add
        value - the value for the given key that should be filtered for
      • removePropertyFilter

        void removePropertyFilter​(java.lang.String key,
                                  java.lang.String value)
        Removes a filter previously registered with addPropertyFilter.