blob: 4519c8ad43d501e56246b14de3f052d0609a2023 [file] [log] [blame]
/*
* 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.solr.cluster.placement;
import org.apache.solr.cluster.Node;
import java.util.Optional;
public interface AttributeValues {
/** For the given node: number of cores */
Optional<Integer> getCoresCount(Node node);
/** For the given node: Hardware type of the disk partition where cores are stored */
Optional<AttributeFetcher.DiskHardwareType> getDiskType(Node node);
/** For the given node: Free disk size in Gigabytes of the partition on which cores are stored */
Optional<Long> getFreeDisk(Node node);
/** For the given node: Total disk size in Gigabytes of the partition on which cores are stored */
Optional<Long> getTotalDisk(Node node);
/** For the given node: Percentage between 0 and 100 of used heap over max heap */
Optional<Double> getHeapUsage(Node node);
/** For the given node: matches {@link java.lang.management.OperatingSystemMXBean#getSystemLoadAverage()} */
Optional<Double> getSystemLoadAverage(Node node);
/** For the given node: system property value (system properties are passed to Java using {@code -Dname=value} */
Optional<String> getSystemProperty(Node node, String name);
/** For the given node: environment variable value */
Optional<String> getEnvironmentVariable(Node node, String name);
/** For the given node: metric of specific name and registry */
Optional<Double> getMetric(Node node, String metricName, AttributeFetcher.NodeMetricRegistry registry);
/** Get a non node related metric of specific scope and name */
Optional<Double> getMetric(String scope, String metricName);
}