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

software.amazon.awssdk.metrics.internal.cloudwatch.MachineMetric Maven / Gradle / Ivy

/*
 * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file 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 software.amazon.awssdk.metrics.internal.cloudwatch;

import software.amazon.awssdk.metrics.spi.MetricType;

/**
 * Machine Metrics.
 */
enum MachineMetric implements MetricType {
    // JVM Metrics
    TotalMemory(Dim.Memory, MetricName.JvmMetric),
    FreeMemory(Dim.Memory, MetricName.JvmMetric),
    UsedMemory(Dim.Memory, MetricName.JvmMetric),
    SpareMemory(Dim.Memory, MetricName.JvmMetric),

    ThreadCount(Dim.Threads, MetricName.JvmMetric),
    DeadLockThreadCount(Dim.Threads, MetricName.JvmMetric, Constants.EXCLUDES_ZERO_VALUES),  // exclude zero value datum
    DaemonThreadCount(Dim.Threads, MetricName.JvmMetric, Constants.EXCLUDES_ZERO_VALUES),    // exclude zero value datum
    PeakThreadCount(Dim.Threads, MetricName.JvmMetric),
    TotalStartedThreadCount(Dim.Threads, MetricName.JvmMetric),

    // OS Metrics
    OpenFileDescriptorCount(Dim.FileDescriptors, MetricName.OSMetric),
    SpareFileDescriptorCount(Dim.FileDescriptors, MetricName.OSMetric),;

    private final Dim dimension;
    private final boolean includeZeroValue;
    private final MetricName metricName;

    MachineMetric(Dim dimension, MetricName metricName) {
        this(dimension, metricName, Constants.INCLUDES_ZERO_VALUES);
    }

    MachineMetric(Dim dimension, MetricName metricName, boolean includeZeroValue) {
        this.dimension = dimension;
        this.metricName = metricName;
        this.includeZeroValue = includeZeroValue;
    }

    /** Returns the metric name for OS metrics. */
    static String getOsMetricName() {
        return MetricName.OSMetric.name();
    }

    String getDimensionName() {
        return dimension.name();
    }

    String getMetricName() {
        return metricName.name();
    }

    boolean includeZeroValue() {
        return includeZeroValue;
    }

    /**
     * Machine metric names.
     */
    private enum MetricName {
        JvmMetric,
        OSMetric,;
    }

    /**
     * Dimensions.
     */
    private enum Dim {
        Memory,
        Threads,
        FileDescriptors,;
    }

    /**
     * An internal class used to holds static constants used by the enum. 
     */
    private static class Constants {
        static final boolean INCLUDES_ZERO_VALUES = true;
        static final boolean EXCLUDES_ZERO_VALUES = false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy