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

org.apache.camel.management.InstrumentationInterceptStrategy Maven / Gradle / Ivy

There is a newer version: 4.6.0
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.camel.management;

import java.util.Map;

import org.apache.camel.CamelContext;
import org.apache.camel.Processor;
import org.apache.camel.api.management.PerformanceCounter;
import org.apache.camel.management.mbean.ManagedPerformanceCounter;
import org.apache.camel.model.ProcessorDefinition;
import org.apache.camel.spi.InterceptStrategy;
import org.apache.camel.util.KeyValueHolder;

/**
 * This strategy class wraps targeted processors with a
 * {@link InstrumentationProcessor}. Each InstrumentationProcessor has an
 * embedded {@link ManagedPerformanceCounter} for monitoring performance metrics.
 * 

* This class looks up a map to determine which PerformanceCounter should go into the * InstrumentationProcessor for any particular target processor. * * @version */ public class InstrumentationInterceptStrategy implements InterceptStrategy { private Map, PerformanceCounter> registeredCounters; private final Map, InstrumentationProcessor>> wrappedProcessors; public InstrumentationInterceptStrategy(Map, PerformanceCounter> registeredCounters, Map, InstrumentationProcessor>> wrappedProcessors) { this.registeredCounters = registeredCounters; this.wrappedProcessors = wrappedProcessors; } public Processor wrapProcessorInInterceptors(CamelContext context, ProcessorDefinition definition, Processor target, Processor nextTarget) throws Exception { // do not double wrap it if (target instanceof InstrumentationProcessor) { return target; } // only wrap a performance counter if we have it registered in JMX by the jmx agent PerformanceCounter counter = registeredCounters.get(definition); if (counter != null) { InstrumentationProcessor wrapper = new InstrumentationProcessor(counter); wrapper.setProcessor(target); wrapper.setType(definition.getShortName()); // add it to the mapping of wrappers so we can later change it to a decorated counter // that when we register the processor KeyValueHolder, InstrumentationProcessor> holder = new KeyValueHolder, InstrumentationProcessor>(definition, wrapper); wrappedProcessors.put(target, holder); return wrapper; } return target; } @Override public String toString() { return "InstrumentProcessor"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy