activiti-event-logger 쓰기
3913 단어 elasticsearchactiviti
spring-data-elasticsearch 도입
org.springframework.data
spring-data-elasticsearch
2.0.1.RELEASE
사용자 정의 이벤트 flusher
public class EsEventFlusher extends AbstractEventFlusher {
private static final Logger logger = LoggerFactory.getLogger(EsEventFlusher.class);
@Override
public void closing(CommandContext commandContext) {
for (EventLoggerEventHandler eventHandler : eventHandlers) {
try {
EventLogEntryEntity entryEntity = eventHandler.generateEventLogEntry(commandContext);
EventLogEs es = EventLogEs.buildFrom(entryEntity);
EventLogEsRepository repository = ApplicationContextHolder.getContext().getBean(EventLogEsRepository.class);
repository.save(es);
logger.info("###{}",es);
repository.refresh();
} catch (Exception e) {
logger.warn("Could not create event log", e);
}
}
}
}
사용자 정의 이벤트 logger (사용자 정의 이벤트 플러그인 사용)
public class EsEventLogger extends EventLogger{
public static final String EVENT_FLUSHER_KEY = "eventFlusher";
public EsEventLogger(Clock clock, ObjectMapper objectMapper) {
super(clock, objectMapper);
}
@Override
public void onEvent(ActivitiEvent event) {
EventLoggerEventHandler eventHandler = getEventHandler(event);
if (eventHandler != null) {
// Events are flushed when command context is closed
CommandContext currentCommandContext = Context.getCommandContext();
EventFlusher eventFlusher = (EventFlusher) currentCommandContext.getAttribute(EVENT_FLUSHER_KEY);
if (eventHandler != null && eventFlusher == null) {
eventFlusher = createEventFlusher();
if (eventFlusher == null) {
eventFlusher = new EsEventFlusher(); // change to es event logger
}
currentCommandContext.addAttribute(EVENT_FLUSHER_KEY, eventFlusher);
currentCommandContext.addCloseListener(eventFlusher);
currentCommandContext
.addCloseListener(new CommandContextCloseListener() {
@Override
public void closing(CommandContext commandContext) {
}
@Override
public void closed(CommandContext commandContext) {
// For those who are interested: we can now broadcast the events were added
if (listeners != null) {
for (EventLoggerListener listener : listeners) {
listener.eventsAdded(EsEventLogger.this);
}
}
}
});
}
eventFlusher.addEventHandler(eventHandler);
}
}
}
시작 시 이벤트 로거 지정
@Bean
public CommandLineRunner init() {
return new CommandLineRunner() {
public void run(String... strings) throws Exception {
// event logging
runtimeService.addEventListener(new EsEventLogger(processEngineConfiguration.getClock(),objectMapper));
}
};
}
es 데이터
http://192.168.99.100:9200/_plugin/head/
TODO
스크롤을 고려해야 합니다. mybatis의 업무와 연결되어 있습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
kafka connect e elasticsearch를 관찰할 수 있습니다.No menu lateral do dashboard tem a opção de connectors onde ele mostra todos os clusters do kafka connect conectados atu...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.