All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taotao.cloud.data.p6spy.logger.KafkaLogger Maven / Gradle / Ivy

/*
 * 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.cloud.data.p6spy.logger;

import com.p6spy.engine.logging.Category;
import com.p6spy.engine.spy.appender.FormattedLogger;
import com.taotao.cloud.common.constant.CommonConstant;
import com.taotao.cloud.common.utils.common.PropertyUtils;
import com.taotao.cloud.common.utils.context.ContextUtils;
import java.util.Objects;
import org.springframework.kafka.core.KafkaTemplate;

/**
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy