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

org.apache.dubbo.metrics.event.MetricsInitEvent Maven / Gradle / Ivy

There is a newer version: 3.3.2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.dubbo.metrics.event;

import org.apache.dubbo.metrics.MetricsConstants;
import org.apache.dubbo.metrics.model.MethodMetric;
import org.apache.dubbo.metrics.model.MetricsSupport;
import org.apache.dubbo.metrics.model.key.MetricsLevel;
import org.apache.dubbo.metrics.model.key.TypeWrapper;
import org.apache.dubbo.rpc.Invocation;
import org.apache.dubbo.rpc.model.ApplicationModel;

import static org.apache.dubbo.metrics.MetricsConstants.ATTACHMENT_KEY_SERVICE;
import static org.apache.dubbo.metrics.model.key.MetricsKey.METRIC_REQUESTS;

public class MetricsInitEvent extends TimeCounterEvent {

    private static final TypeWrapper METRIC_EVENT = new TypeWrapper(MetricsLevel.SERVICE, METRIC_REQUESTS);

    public MetricsInitEvent(ApplicationModel source, TypeWrapper typeWrapper) {
        super(source, typeWrapper);
    }

    public static MetricsInitEvent toMetricsInitEvent(
            ApplicationModel applicationModel, Invocation invocation, boolean serviceLevel) {
        MethodMetric methodMetric = new MethodMetric(applicationModel, invocation, serviceLevel);
        MetricsInitEvent initEvent = new MetricsInitEvent(applicationModel, METRIC_EVENT);
        initEvent.putAttachment(MetricsConstants.INVOCATION, invocation);
        initEvent.putAttachment(MetricsConstants.METHOD_METRICS, methodMetric);
        initEvent.putAttachment(ATTACHMENT_KEY_SERVICE, MetricsSupport.getInterfaceName(invocation));
        initEvent.putAttachment(MetricsConstants.INVOCATION_SIDE, MetricsSupport.getSide(invocation));
        return initEvent;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy