Toggle navigation
Home
com.codahale.metrics.Gauge<java.lang.Long> to com.navercorp.pinpoint.profiler.monitor.metric.transaction.DefaultTransactionMetric.TransactionGauge
No. of Instances - 4
No. of Commits - 1
No. of Projects - {'pinpoint'}
Hierarchy/Composition: T_SUPER_R
Primitive Info: -
NameSpace: External -> Internal
Mapping:
Cascading Type Change (Different)
LongGauge
to
LongCounter
LongGauge
to
LongCounter
LongGauge
to
LongCounter
LongGauge
to
LongCounter
Add or Remove Method invocation
TransactionGauge.wrap(new LongCounter(){ @Override public long getValue(){ return transactionCounter.getUnSampledNewCount(); } } )
to
TransactionGauge.from(new LongCounter(){ @Override public long getCount(){ return transactionCounter.getUnSampledNewCount(); } } )
TransactionGauge.wrap(new LongCounter(){ @Override public long getValue(){ return transactionCounter.getSampledContinuationCount(); } } )
to
TransactionGauge.from(new LongCounter(){ @Override public long getCount(){ return transactionCounter.getSampledContinuationCount(); } } )
TransactionGauge.wrap(new LongCounter(){ @Override public long getValue(){ return transactionCounter.getSampledNewCount(); } } )
to
TransactionGauge.from(new LongCounter(){ @Override public long getCount(){ return transactionCounter.getSampledNewCount(); } } )
TransactionGauge.wrap(new LongCounter(){ @Override public long getValue(){ return transactionCounter.getUnSampledContinuationCount(); } } )
to
TransactionGauge.from(new LongCounter(){ @Override public long getCount(){ return transactionCounter.getUnSampledContinuationCount(); } } )