|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.flume.interceptor.StaticInterceptor
public class StaticInterceptor
Interceptor class that appends a static, pre-configured header to all events. Properties:
key: Key to use in static header insertion. (default is "key")
value: Value to use in static header insertion. (default is "value")
preserveExisting: Whether to preserve an existing value for 'key' (default is true)
Sample config:
agent.sources.r1.type = SEQ
agent.sources.r1.interceptors = i1
agent.sources.r1.interceptors.i1.type = static
agent.sources.r1.interceptors.i1.preserveExisting = false
agent.sources.r1.interceptors.i1.key = datacenter
agent.sources.r1.interceptors.i1.value= NYC_01
agent.sources.r1.channels = c1
Nested Class Summary | |
---|---|
static class |
StaticInterceptor.Builder
Builder which builds new instance of the StaticInterceptor. |
static class |
StaticInterceptor.Constants
|
Method Summary | |
---|---|
void |
close()
Perform any closing / shutdown needed by the Interceptor. |
void |
initialize()
Any initialization / startup needed by the Interceptor. |
Event |
intercept(Event event)
Modifies events in-place. |
List<Event> |
intercept(List<Event> events)
Delegates to intercept(Event) in a loop. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public void initialize()
Interceptor
initialize
in interface Interceptor
public Event intercept(Event event)
intercept
in interface Interceptor
event
- Event to be intercepted
null
if the Event
is to be dropped (i.e. filtered out).public List<Event> intercept(List<Event> events)
intercept(Event)
in a loop.
intercept
in interface Interceptor
events
-
public void close()
Interceptor
close
in interface Interceptor
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |