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

org.finos.legend.engine.postgres.utils.OpenTelemetryUtil Maven / Gradle / Ivy

There is a newer version: 4.66.0
Show newest version
// Copyright 2023 Goldman Sachs
//
// 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
//
//   http://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 org.finos.legend.engine.postgres.utils;

import io.opentelemetry.api.GlobalOpenTelemetry;
import io.opentelemetry.api.OpenTelemetry;
import io.opentelemetry.api.metrics.DoubleHistogram;
import io.opentelemetry.api.metrics.LongCounter;
import io.opentelemetry.api.metrics.LongUpDownCounter;
import io.opentelemetry.api.trace.Tracer;
import io.opentelemetry.context.propagation.TextMapPropagator;

public class OpenTelemetryUtil
{
    private static final String LEGEND_ENGINE_XTS_SQL = "legend-sql-server";
    private static final OpenTelemetry OPEN_TELEMETRY = GlobalOpenTelemetry.get();

    public static final LongUpDownCounter
            ACTIVE_SESSIONS = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .upDownCounterBuilder("active_sessions")
            .setDescription("Number of active sessions")
            .build();

    public static final LongCounter TOTAL_SESSIONS = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_sessions")
            .setDescription("Total of  sessions").build();


    public static final LongUpDownCounter ACTIVE_EXECUTE = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .upDownCounterBuilder("active_execute_request")
            .setDescription("Number of active execute requests")
            .build();


    public static final LongCounter TOTAL_EXECUTE = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_execute_requests")
            .setDescription("Total of execute requests").build();


    public static final LongCounter TOTAL_SUCCESS_EXECUTE = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_success_execute_requests")
            .setDescription("Total of success execute requests").build();


    public static final LongCounter TOTAL_FAILURE_EXECUTE = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_failure_execute_requests")
            .setDescription("Total of failure execute requests").build();


    public static final DoubleHistogram EXECUTE_DURATION = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .histogramBuilder("execute_requests_duration")
            .setDescription("Total of success execute requests")
            .build();


    public static final LongUpDownCounter ACTIVE_METADATA = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .upDownCounterBuilder("active_metadata_requests")
            .setDescription("Number of active metadata requests")
            .build();


    public static final LongCounter TOTAL_METADATA = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_metadata_requests")
            .setDescription("Total of metadata requests").build();


    public static final LongCounter TOTAL_SUCCESS_METADATA = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_success_metadata_requests")
            .setDescription("Total of success metadata requests")
            .build();

    public static final LongCounter TOTAL_FAILURE_METADATA = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .counterBuilder("total_failure_metadata_requests")
            .setDescription("Total of failure metadata requests")
            .build();

    public static final DoubleHistogram METADATA_DURATION = OPEN_TELEMETRY
            .getMeter(LEGEND_ENGINE_XTS_SQL)
            .histogramBuilder("metadata_requests_duration")
            .setDescription(("Execute duration"))
            .build();

    private OpenTelemetryUtil()
    {
    }

    public static Tracer getTracer()
    {
        return OPEN_TELEMETRY.getTracer(LEGEND_ENGINE_XTS_SQL);
    }

    public static TextMapPropagator getPropagators()
    {
        return OPEN_TELEMETRY.getPropagators().getTextMapPropagator();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy