com.taotao.boot.data.p6spy.logger.KafkaLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-boot-starter-data-p6spy Show documentation
Show all versions of taotao-boot-starter-data-p6spy Show documentation
taotao-boot-starter-data-p6spy
The newest version!
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.taotao.boot.data.p6spy.logger;
import com.p6spy.engine.logging.Category;
import com.p6spy.engine.spy.appender.FormattedLogger;
import com.taotao.boot.common.constant.CommonConstant;
import com.taotao.boot.common.utils.common.PropertyUtils;
import com.taotao.boot.common.utils.context.ContextUtils;
import org.springframework.kafka.core.KafkaTemplate;
import java.util.Objects;
/**
* P6spy日志实现
*
* @author shuigedeng
* @version 2022.03
* @since 2020/10/14 09:38
*/
public class KafkaLogger extends FormattedLogger {
private final KafkaTemplate kafkaTemplate;
private final String applicationName;
@SuppressWarnings("unchecked")
public KafkaLogger() throws ClassNotFoundException {
try {
KafkaTemplate kafkaTemplate = ContextUtils.getBean(KafkaTemplate.class);
String applicationName = PropertyUtils.getProperty(CommonConstant.SPRING_APP_NAME_KEY);
this.kafkaTemplate = kafkaTemplate;
this.applicationName = applicationName;
} catch (Exception e) {
throw new ClassNotFoundException("KafkaTemplate不存在,请添加org.springframework.kafka:spring-kafka", e);
}
}
@Override
public void logException(Exception e) {
if (Objects.nonNull(kafkaTemplate)) {
// kafkaTemplate.send("sys-sql-" + applicationName, e.getMessage());
kafkaTemplate.send("sys-sql", e.getMessage());
}
}
@Override
public void logText(String text) {
if (Objects.nonNull(kafkaTemplate)) {
// LogUtils.info("************************");
// LogUtils.info(text);
// kafkaTemplate.send("sys-sql-" + applicationName, text);
kafkaTemplate.send("sys-sql", text);
}
}
// @Override
// public void logSQL(int connectionId, String now, long elapsed, Category category,
// String prepared, String sql, String url) {
// super.logSQL(connectionId, );
// }
@Override
public boolean isCategoryEnabled(Category category) {
return true;
}
}