mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 08:16:15 +10:00
[강운덕] [LUCYSUS-1744] bytecode 변경 api 정리.
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-commons/trunk@2340 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.nhn.pinpoint.common;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public final class PinpointConstants {
|
||||
|
||||
public static final int APPLICATION_NAME_MAX_LEN = 24;
|
||||
|
||||
public static final int AGENT_NAME_MAX_LEN = 24;
|
||||
|
||||
}
|
||||
@@ -1,11 +1,12 @@
|
||||
package com.nhn.pinpoint.common.hbase;
|
||||
|
||||
import com.nhn.pinpoint.common.PinpointConstants;
|
||||
import org.apache.hadoop.hbase.util.Bytes;
|
||||
|
||||
public class HBaseTables {
|
||||
|
||||
public static final int APPLICATION_NAME_MAX_LEN = 24;
|
||||
public static final int AGENT_NAME_MAX_LEN = 24;
|
||||
public static final int APPLICATION_NAME_MAX_LEN = PinpointConstants.APPLICATION_NAME_MAX_LEN;
|
||||
public static final int AGENT_NAME_MAX_LEN = PinpointConstants.AGENT_NAME_MAX_LEN;
|
||||
|
||||
public static final String SYSTEMINFO = "Systeminfo";
|
||||
public static final byte[] SYSTEMINFO_CF_JVM = Bytes.toBytes("JVM");
|
||||
|
||||
Reference in New Issue
Block a user