blob: 846be02568982caac99e99a23f705fb7967b5a3b [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.geode.admin;
/**
* Adminitrative interface for monitoring a statistic resource in a GemFire system member. A
* resource is comprised of one or many <code>Statistics</code>.
*
* @since GemFire 3.5
*
* @deprecated as of 7.0 use the <code><a href=
* "{@docRoot}/org/apache/geode/management/package-summary.html">management</a></code>
* package instead
*/
public interface StatisticResource {
/**
* Gets the identifying name of this resource.
*
* @return the identifying name of this resource
*/
String getName();
/**
* Gets the full description of this resource.
*
* @return the full description of this resource
*/
String getDescription();
/**
* Gets the classification type of this resource.
*
* @return the classification type of this resource
* @since GemFire 5.0
*/
String getType();
/**
* Returns a display string of the {@link SystemMember} owning this resource.
*
* @return a display string of the owning {@link SystemMember}
*/
String getOwner();
/**
* Returns an ID that uniquely identifies the resource within the {@link SystemMember} it belongs
* to.
*
* @return unique id within the owning {@link SystemMember}
*/
long getUniqueId();
/**
* Returns a read-only array of every {@link Statistic} in this resource.
*
* @return read-only array of every {@link Statistic} in this resource
*/
Statistic[] getStatistics();
/**
* Refreshes the values of every {@link Statistic} in this resource by retrieving them from the
* member's VM.
*
* @throws org.apache.geode.admin.AdminException if unable to refresh statistic values
*/
void refresh() throws org.apache.geode.admin.AdminException;
}