/** * The MIT License * Copyright (c) 2014 JMXTrans Team * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.jmxtrans.core.query; import java.io.IOException; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import javax.annotation.Nonnull; import javax.annotation.Nullable; import javax.management.Attribute; import javax.management.AttributeList; import javax.management.MBeanServerConnection; import javax.management.MalformedObjectNameException; import javax.management.ObjectName; import org.jmxtrans.core.log.Logger; import org.jmxtrans.core.log.LoggerFactory; import org.jmxtrans.core.monitoring.ObjectNameFactory; import org.jmxtrans.core.monitoring.SelfNamedMBean; import org.jmxtrans.core.results.QueryResult; import org.jmxtrans.utils.time.Clock; import org.jmxtrans.utils.time.NanoChronometer; import org.jmxtrans.utils.time.SystemClock; import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.ToString; import static java.lang.String.format; /** * Describe a JMX query on which metrics are collected. * * @author <a href="mailto:cleclerc@xebia.fr">Cyrille Le Clerc</a> * @author Jon Stevens */ @EqualsAndHashCode(of = {"objectName", "attributesByName", "resultAlias"}, doNotUseGetters = true) @ToString(of = {"objectName", "attributesByName", "resultAlias"}, doNotUseGetters = true) public class Query implements QueryMBean, SelfNamedMBean { @Nonnull private final Logger logger = LoggerFactory.getLogger(getClass().getName()); /** * ObjectName of the Query MBean(s) to monitor, can contain */ @Nonnull private final ObjectName objectName; @Nullable @Getter private final String resultAlias; /** * JMX attributes to collect. As an array for {@link javax.management.MBeanServer#getAttributes(javax.management.ObjectName, String[])} */ @Nonnull private final Map<String, QueryAttribute> attributesByName; /** * Copy of {@link #attributesByName}'s {@link java.util.Map#entrySet()} for performance optimization */ @Nonnull private final String[] attributeNames; @Nonnull private final QueryMetrics metrics; /** * {@link javax.management.ObjectName} of this {@link QueryMBean} */ @Nonnull private final ObjectName queryMbeanObjectName; @Getter private final int maxResults; private Query(@Nonnull ObjectName objectName, @Nullable String resultAlias, @Nonnull List<QueryAttribute> attributes, @Nonnull ObjectName queryMbeanObjectName, int maxResults, @Nonnull QueryMetrics metrics) { this.objectName = objectName; this.resultAlias = resultAlias; this.maxResults = maxResults; this.attributesByName = new HashMap<>(); for (QueryAttribute attribute : attributes) { attributesByName.put(attribute.getName(), attribute); } this.attributeNames = attributesByName.keySet().toArray(new String[0]); this.queryMbeanObjectName = queryMbeanObjectName; this.metrics = metrics; } public Iterable<QueryResult> collectMetrics(@Nonnull MBeanServerConnection mbeanServer, @Nonnull ResultNameStrategy resultNameStrategy) throws IOException { Collection<QueryResult> results = new ArrayList<>(); try (NanoChronometer chrono = metrics.collectionDurationChronometer()) { /* * Optimisation tip: no need to skip 'mbeanServer.queryNames()' if the ObjectName is not a pattern * (i.e. not '*' or '?' wildcard) because the mbeanserver internally performs the check. * Seen on com.sun.jmx.interceptor.DefaultMBeanServerInterceptor */ Set<ObjectName> matchingObjectNames = mbeanServer.queryNames(this.objectName, null); logger.debug(format("Query %s returned %s", objectName, matchingObjectNames)); for (ObjectName matchingObjectName : matchingObjectNames) { try { AttributeList jmxAttributes = mbeanServer.getAttributes(matchingObjectName, this.attributeNames); logger.debug(format("Query %s returned %s", matchingObjectName, jmxAttributes)); for (Attribute jmxAttribute : jmxAttributes.asList()) { attributesByName.get(jmxAttribute.getName()).collectMetrics( matchingObjectName, jmxAttribute.getValue(), results, this, resultNameStrategy, maxResults); // early return if we reach maxResults if (results.size() >= maxResults) return results; } } catch (Exception e) { logger.warn(format("Exception processing query %s", this), e); } } return results; } finally { metrics.incrementCollected(results.size()); metrics.incrementCollectionsCount(); } } @Nonnull public Collection<QueryAttribute> getQueryAttributes() { return attributesByName.values(); } @Override public int getCollectedMetricsCount() { return metrics.getCollectedCount(); } @Override public long getCollectionDurationInNanos() { return metrics.getCollectionDurationNano(); } @Override public int getCollectionCount() { return metrics.getCollectionsCount(); } @Nonnull @Override public ObjectName getObjectName() { return queryMbeanObjectName; } @Override @Nonnull public String getId() { return queryMbeanObjectName.getCanonicalName(); } @Nonnull public static Builder builder() { return new Builder(); } public static final class Builder { @Nonnull private static final ObjectNameFactory objectNameFactory = new ObjectNameFactory("query"); @Nullable private ObjectName objectName; @Nullable private String resultAlias; @Nonnull private final List<QueryAttribute> attributes = new ArrayList<>(); @Nonnull private final Clock clock; private int maxResults = 50; private Builder() { this.clock = new SystemClock(); } @Nonnull public Builder withObjectName(@Nonnull String objectName) { try { withObjectName(new ObjectName(objectName)); return this; } catch (MalformedObjectNameException e) { throw new RuntimeException("Object name [" + objectName + "] is not valid, cannot build query."); } } @Nonnull public Builder withObjectName(@Nonnull ObjectName objectName) { this.objectName = objectName; return this; } public Builder withResultAlias(@Nullable String resultAlias) { this.resultAlias = resultAlias; return this; } public Builder withMaxResults(int maxResults) { this.maxResults = maxResults; return this; } public Builder addAttribute(@Nonnull String attributeName) { addAttribute(QueryAttribute.builder(attributeName).build()); return this; } public Builder addAttribute(@Nonnull QueryAttribute attribute) { attributes.add(attribute); return this; } public Builder addAttributes(@Nonnull Collection<QueryAttribute> attributes) { this.attributes.addAll(attributes); return this; } @Nonnull public Query build() { try { if (objectName == null) { throw new RuntimeException("Cannot create query without an object name, please check your code"); } return new Query( objectName, resultAlias, attributes, objectNameFactory.create(objectName.toString()), maxResults, new QueryMetrics(clock) ); } catch (MalformedObjectNameException e) { throw new RuntimeException("Object name [" + objectName + "] is not valid, cannot expose MBean for this query."); } } } }