scouterx.webapp.layer.consumer.ProfileConsumer Maven / Gradle / Ivy
/*
* Copyright 2015 the original author or authors.
* @https://github.com/scouter-project/scouter
*
* 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 scouterx.webapp.layer.consumer;
import lombok.extern.slf4j.Slf4j;
import scouter.lang.constants.ParamConstant;
import scouter.lang.pack.MapPack;
import scouter.lang.pack.XLogProfilePack;
import scouter.lang.step.Step;
import scouter.net.RequestCmd;
import scouterx.webapp.framework.client.net.TcpProxy;
import scouterx.webapp.model.ProfileStepData;
import scouterx.webapp.request.ProfileRequest;
import java.util.List;
/**
* @author Gun Lee ([email protected]) on 2017. 9. 3.
*/
@Slf4j
public class ProfileConsumer {
private static final int MAX_PROFILE_BLOCK = 10;
/**
* retrieve profile steps by txid
* @param profileRequest
* @return
*/
public List retrieveProfile(final ProfileRequest profileRequest) {
return Step.toObjectList(retrieveProfilePack(profileRequest).profile);
}
/**
* retrieve dictionary decoded profile steps by txid
* @param profileRequest
* @return
*/
public List retrieveProfileData(final ProfileRequest profileRequest) {
XLogProfilePack pack = retrieveProfilePack(profileRequest);
return ProfileStepData.toList(pack.profile, pack.time, profileRequest.getServerId());
}
public XLogProfilePack retrieveProfilePack(final ProfileRequest profileRequest) {
MapPack param = new MapPack();
param.put(ParamConstant.DATE, profileRequest.getYyyymmdd());
param.put(ParamConstant.XLOG_TXID, profileRequest.getTxid());
param.put(ParamConstant.PROFILE_MAX, MAX_PROFILE_BLOCK);
XLogProfilePack pack;
try (TcpProxy tcpProxy = TcpProxy.getTcpProxy(profileRequest.getServerId())) {
pack = (XLogProfilePack)
tcpProxy.getSingle(RequestCmd.TRANX_PROFILE, param);
}
return pack;
}
}