use of org.apache.geode.internal.statistics.TestSampleHandler.SampledInfo in project geode by apache.
the class SampleCollectorTest method testAddHandlerBeforeSample.
@Test
public void testAddHandlerBeforeSample() {
TestSampleHandler handler = new TestSampleHandler();
this.sampleCollector.addSampleHandler(handler);
StatisticDescriptor[] statsST1 = new StatisticDescriptor[] { manager.createIntCounter("ST1_1_name", "ST1_1_desc", "ST1_1_units") };
StatisticsType ST1 = manager.createType("ST1_name", "ST1_desc", statsST1);
Statistics st1_1 = manager.createAtomicStatistics(ST1, "st1_1_text", 1);
this.sampleCollector.sample(NanoTimer.getTime());
assertEquals(3, handler.getNotificationCount());
List<Info> notifications = handler.getNotifications();
// validate the allocatedResourceType notification
assertTrue(notifications.get(0) instanceof ResourceTypeInfo);
ResourceTypeInfo allocatedResourceTypeInfo = (ResourceTypeInfo) notifications.get(0);
assertNotNull(allocatedResourceTypeInfo);
assertEquals("allocatedResourceType", allocatedResourceTypeInfo.getName());
ResourceType resourceType = allocatedResourceTypeInfo.getResourceType();
assertNotNull(resourceType);
assertEquals(0, resourceType.getId());
assertEquals(1, resourceType.getStatisticDescriptors().length);
StatisticsType statisticsType = resourceType.getStatisticsType();
assertNotNull(statisticsType);
assertTrue(statisticsType == ST1);
assertEquals("ST1_name", statisticsType.getName());
assertEquals("ST1_desc", statisticsType.getDescription());
assertEquals(1, statisticsType.getStatistics().length);
// validate the allocatedResourceInstance notification
assertTrue(notifications.get(1) instanceof ResourceInstanceInfo);
ResourceInstanceInfo allocatedResourceInstanceInfo = (ResourceInstanceInfo) notifications.get(1);
assertNotNull(allocatedResourceInstanceInfo);
assertEquals("allocatedResourceInstance", allocatedResourceInstanceInfo.getName());
ResourceInstance resourceInstance = allocatedResourceInstanceInfo.getResourceInstance();
assertNotNull(resourceInstance);
assertEquals(0, resourceInstance.getId());
assertEquals(1, resourceInstance.getUpdatedStats().length);
// TODO: is this correct?
assertEquals(1, resourceInstance.getLatestStatValues().length);
Statistics statistics = resourceInstance.getStatistics();
assertNotNull(statistics);
assertTrue(statistics == st1_1);
assertEquals(1, statistics.getUniqueId());
assertEquals(1, statistics.getNumericId());
assertEquals("st1_1_text", statistics.getTextId());
assertEquals("ST1_name", statistics.getType().getName());
assertTrue(resourceType == resourceInstance.getResourceType());
// validate the sampled notification
assertTrue(notifications.get(2) instanceof SampledInfo);
SampledInfo sampledInfo = (SampledInfo) notifications.get(2);
assertNotNull(sampledInfo);
assertEquals("sampled", sampledInfo.getName());
assertEquals(1, sampledInfo.getResourceCount());
}
use of org.apache.geode.internal.statistics.TestSampleHandler.SampledInfo in project geode by apache.
the class SampleCollectorTest method testAddHandlerAfterSamples.
@Test
public void testAddHandlerAfterSamples() {
StatisticDescriptor[] statsST1 = new StatisticDescriptor[] { manager.createIntCounter("ST1_1_name", "ST1_1_desc", "ST1_1_units") };
StatisticsType ST1 = manager.createType("ST1_name", "ST1_desc", statsST1);
Statistics st1_1 = manager.createAtomicStatistics(ST1, "st1_1_text", 1);
Statistics st1_2 = manager.createAtomicStatistics(ST1, "st1_2_text", 1);
StatisticDescriptor[] statsST2 = new StatisticDescriptor[] { manager.createIntCounter("ST2_1_name", "ST2_1_desc", "ST2_1_units") };
StatisticsType ST2 = manager.createType("ST2_name", "ST2_desc", statsST2);
Statistics st2_1 = manager.createAtomicStatistics(ST2, "st2_1_text", 1);
st1_1.incInt("ST1_1_name", 1);
st1_2.incInt("ST1_1_name", 1);
st2_1.incInt("ST2_1_name", 1);
long sampleTime = NanoTimer.getTime();
this.sampleCollector.sample(sampleTime);
st1_1.incInt("ST1_1_name", 2);
st2_1.incInt("ST2_1_name", 1);
sampleTime += NanoTimer.millisToNanos(1000);
this.sampleCollector.sample(sampleTime);
st1_1.incInt("ST1_1_name", 1);
st1_1.incInt("ST1_1_name", 2);
sampleTime += NanoTimer.millisToNanos(1000);
this.sampleCollector.sample(sampleTime);
TestSampleHandler handler = new TestSampleHandler();
this.sampleCollector.addSampleHandler(handler);
assertEquals("TestSampleHandler = " + handler, 0, handler.getNotificationCount());
st1_2.incInt("ST1_1_name", 1);
st2_1.incInt("ST2_1_name", 1);
sampleTime += NanoTimer.millisToNanos(1000);
this.sampleCollector.sample(sampleTime);
assertEquals(6, handler.getNotificationCount());
List<Info> notifications = handler.getNotifications();
// validate the allocatedResourceType notification for ST1
int notificationIdx = 0;
assertTrue(notifications.get(notificationIdx) instanceof ResourceTypeInfo);
ResourceTypeInfo allocatedResourceTypeInfo = (ResourceTypeInfo) notifications.get(notificationIdx);
assertNotNull(allocatedResourceTypeInfo);
assertEquals("allocatedResourceType", allocatedResourceTypeInfo.getName());
ResourceType resourceType = allocatedResourceTypeInfo.getResourceType();
assertNotNull(resourceType);
assertEquals(0, resourceType.getId());
assertEquals(1, resourceType.getStatisticDescriptors().length);
StatisticsType statisticsType = resourceType.getStatisticsType();
assertNotNull(statisticsType);
assertTrue(statisticsType == ST1);
assertEquals("ST1_name", statisticsType.getName());
assertEquals("ST1_desc", statisticsType.getDescription());
assertEquals(1, statisticsType.getStatistics().length);
// validate the allocatedResourceInstance notification for st1_1
notificationIdx++;
assertTrue(notifications.get(notificationIdx) instanceof ResourceInstanceInfo);
ResourceInstanceInfo allocatedResourceInstanceInfo = (ResourceInstanceInfo) notifications.get(notificationIdx);
assertNotNull(allocatedResourceInstanceInfo);
assertEquals("allocatedResourceInstance", allocatedResourceInstanceInfo.getName());
ResourceInstance resourceInstance = allocatedResourceInstanceInfo.getResourceInstance();
assertNotNull(resourceInstance);
assertEquals(0, resourceInstance.getId());
assertEquals(0, resourceInstance.getUpdatedStats().length);
// TODO: is this correct?
assertEquals(1, resourceInstance.getLatestStatValues().length);
Statistics statistics = resourceInstance.getStatistics();
assertNotNull(statistics);
assertTrue(statistics == st1_1);
assertEquals(1, statistics.getUniqueId());
assertEquals(1, statistics.getNumericId());
assertEquals("st1_1_text", statistics.getTextId());
assertEquals("ST1_name", statistics.getType().getName());
assertTrue(resourceType == resourceInstance.getResourceType());
// validate the allocatedResourceInstance notification for st1_2
notificationIdx++;
assertTrue(notifications.get(notificationIdx) instanceof ResourceInstanceInfo);
allocatedResourceInstanceInfo = (ResourceInstanceInfo) notifications.get(notificationIdx);
assertNotNull(allocatedResourceInstanceInfo);
assertEquals("allocatedResourceInstance", allocatedResourceInstanceInfo.getName());
resourceInstance = allocatedResourceInstanceInfo.getResourceInstance();
assertNotNull(resourceInstance);
assertEquals(1, resourceInstance.getId());
assertEquals(1, resourceInstance.getUpdatedStats().length);
// TODO: is this correct?
assertEquals(1, resourceInstance.getLatestStatValues().length);
statistics = resourceInstance.getStatistics();
assertNotNull(statistics);
assertTrue(statistics == st1_2);
assertEquals(2, statistics.getUniqueId());
assertEquals(1, statistics.getNumericId());
assertEquals("st1_2_text", statistics.getTextId());
assertEquals("ST1_name", statistics.getType().getName());
assertTrue(resourceType == resourceInstance.getResourceType());
// validate the allocatedResourceType notification for ST2
notificationIdx++;
assertTrue(notifications.get(notificationIdx) instanceof ResourceTypeInfo);
allocatedResourceTypeInfo = (ResourceTypeInfo) notifications.get(notificationIdx);
assertNotNull(allocatedResourceTypeInfo);
assertEquals("allocatedResourceType", allocatedResourceTypeInfo.getName());
resourceType = allocatedResourceTypeInfo.getResourceType();
assertNotNull(resourceType);
assertEquals(1, resourceType.getId());
assertEquals(1, resourceType.getStatisticDescriptors().length);
statisticsType = resourceType.getStatisticsType();
assertNotNull(statisticsType);
assertTrue(statisticsType == ST2);
assertEquals("ST2_name", statisticsType.getName());
assertEquals("ST2_desc", statisticsType.getDescription());
assertEquals(1, statisticsType.getStatistics().length);
// validate the allocatedResourceInstance notification for st2_1
notificationIdx++;
assertTrue(notifications.get(notificationIdx) instanceof ResourceInstanceInfo);
allocatedResourceInstanceInfo = (ResourceInstanceInfo) notifications.get(notificationIdx);
assertNotNull(allocatedResourceInstanceInfo);
assertEquals("allocatedResourceInstance", allocatedResourceInstanceInfo.getName());
resourceInstance = allocatedResourceInstanceInfo.getResourceInstance();
assertNotNull(resourceInstance);
assertEquals(2, resourceInstance.getId());
assertEquals(1, resourceInstance.getUpdatedStats().length);
// TODO: is this correct?
assertEquals(1, resourceInstance.getLatestStatValues().length);
statistics = resourceInstance.getStatistics();
assertNotNull(statistics);
assertTrue(statistics == st2_1);
assertEquals(3, statistics.getUniqueId());
assertEquals(1, statistics.getNumericId());
assertEquals("st2_1_text", statistics.getTextId());
assertEquals("ST2_name", statistics.getType().getName());
assertTrue(resourceType == resourceInstance.getResourceType());
// validate the sampled notification
notificationIdx++;
assertTrue(notifications.get(notificationIdx) instanceof SampledInfo);
SampledInfo sampledInfo = (SampledInfo) notifications.get(notificationIdx);
assertNotNull(sampledInfo);
assertEquals("sampled", sampledInfo.getName());
assertEquals(3, sampledInfo.getResourceCount());
}
Aggregations