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

org.ehcache.clustered.server.ClusterTierManagerDump Maven / Gradle / Ivy

/*
 * Copyright Terracotta, Inc.
 *
 * Licensed 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.ehcache.clustered.server;

import org.ehcache.clustered.common.ServerSideConfiguration;
import org.ehcache.clustered.common.internal.ClusterTierManagerConfiguration;
import org.terracotta.entity.StateDumpCollector;

import java.util.Map;

class ClusterTierManagerDump {

  static void dump(StateDumpCollector dump, ClusterTierManagerConfiguration configuration) {
    dump.addState("managerIdentifier", configuration.getIdentifier());
    StateDumpCollector configDump = dump.subStateDumpCollector("configuration");
    ServerSideConfiguration ssc = configuration.getConfiguration();
    configDump.addState("defaultServerResource", String.valueOf(ssc.getDefaultServerResource()));
    StateDumpCollector poolsDump = configDump.subStateDumpCollector("pools");
    for (Map.Entry poolEntry : ssc.getResourcePools().entrySet()) {
      StateDumpCollector poolDump = poolsDump.subStateDumpCollector(poolEntry.getKey());
      poolDump.addState("serverResource", poolEntry.getValue().getServerResource());
      poolDump.addState("size", String.valueOf(poolEntry.getValue().getSize()));
    }
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy