Class StructuredDataLookup

java.lang.Object
org.apache.logging.log4j.core.lookup.StructuredDataLookup
All Implemented Interfaces:
StrLookup

@Plugin(name="sd", category="Lookup") public class StructuredDataLookup extends Object implements StrLookup
Looks up keys from StructuredDataMessage log messages.
  • Field Details

  • Constructor Details

    • StructuredDataLookup

      public StructuredDataLookup()
  • Method Details

    • lookup

      public String lookup(String key)
      Returns null. This Lookup plugin does not make sense outside the context of a LogEvent.
      Specified by:
      lookup in interface StrLookup
      Parameters:
      key - The key to be looked up, may be null.
      Returns:
      null
    • lookup

      public String lookup(LogEvent event, String key)
      Looks up the value for the key using the data in the LogEvent.
      Specified by:
      lookup in interface StrLookup
      Parameters:
      event - The current LogEvent.
      key - The key to be looked up, may be null.
      Returns:
      The value associated with the key.