Hi,
Couldn't come online due to an unavoidable reason , sorry for the late
reply.
On Mon, Aug 18, 2014 at 12:24 PM, Reka Thirunavukkarasu <[email protected]>
wrote:
> Hi Asiri,
>
> If you are using stratos 4.0.0-RC4, then the concat operation in CEP might
> be missing. CEP 3.1.0 supports the concat where CEP 3.0.0 doesn't support
> it. We have added a extension to support concat with CEP 3.0.0 in Private
> PaaS. You can find the sample extension in [1]. Can you add this extension
> to Stratos 4.0.0-rc4 and try the same?
>
> You will need to add the class to
> STRATOS_HOME/repository/conf/siddhi/siddi.extesion as [2].
>
> [1]
> https://github.com/wso2/private-paas/blob/master/source/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/ConcatWindowProcessor.java
>
> [2]
> https://github.com/wso2/private-paas/blob/master/source/products/stratos/modules/distribution/src/main/conf/siddhi/siddhi.extension
>
> Thanks,
> Reka
>
Thanks for getting back to me. For the cep related changes I've used the
stratos master branch. It already contained the
ConcatWindowProcessor.java. So it's not the issue.
On Mon, Aug 18, 2014 at 12:10 PM, Lasantha Fernando <[email protected]>
wrote:
> Hi Asiri,
>
> From the queries listed, it seems that you are using partitioned queries.
> If so, the aggregate will be given for each partition.
>
> Can you attach the relevant trace logs when the above issue occurs? The
> trace logs might help understand more what is happening underneath.
>
> Also, I think stratos uses CEP 3.0.0 instead of CEP 3.1.0. Therefore can
> you check with a CEP 3.0.0 standalone pack as well? However, no major
> changes were done to Siddhi when moving from CEP 3.0.0 to CEP 3.1.0. So
> Siddhi should behave exactly the same in both versions.
>
> Thanks,
> Lasantha
>
Thanks for your concern. I've attached the trace logs. Partitioning is done
by "avg_rif_cluster_partition" attribute which is unique, as I'm sending
events only for one cluster. Even I tried removing it. Same results.
Regards,
Asiri
On Mon, Aug 18, 2014 at 12:24 PM, Reka Thirunavukkarasu <[email protected]>
wrote:
> Hi Asiri,
>
> If you are using stratos 4.0.0-RC4, then the concat operation in CEP might
> be missing. CEP 3.1.0 supports the concat where CEP 3.0.0 doesn't support
> it. We have added a extension to support concat with CEP 3.0.0 in Private
> PaaS. You can find the sample extension in [1]. Can you add this extension
> to Stratos 4.0.0-rc4 and try the same?
>
> You will need to add the class to
> STRATOS_HOME/repository/conf/siddhi/siddi.extesion as [2].
>
> [1]
> https://github.com/wso2/private-paas/blob/master/source/extensions/cep/stratos-cep-extension/src/main/java/org/apache/stratos/cep/extension/ConcatWindowProcessor.java
>
> [2]
> https://github.com/wso2/private-paas/blob/master/source/products/stratos/modules/distribution/src/main/conf/siddhi/siddhi.extension
>
> Thanks,
> Reka
>
>
> On Mon, Aug 18, 2014 at 12:10 PM, Lasantha Fernando <[email protected]>
> wrote:
>
>> Hi Asiri,
>>
>> From the queries listed, it seems that you are using partitioned queries.
>> If so, the aggregate will be given for each partition.
>>
>> Can you attach the relevant trace logs when the above issue occurs? The
>> trace logs might help understand more what is happening underneath.
>>
>> Also, I think stratos uses CEP 3.0.0 instead of CEP 3.1.0. Therefore can
>> you check with a CEP 3.0.0 standalone pack as well? However, no major
>> changes were done to Siddhi when moving from CEP 3.0.0 to CEP 3.1.0. So
>> Siddhi should behave exactly the same in both versions.
>>
>> Thanks,
>> Lasantha
>>
>>
>> On 17 August 2014 11:54, Asiri Liyana Arachchi <[email protected]>
>> wrote:
>>
>>> Hi all,
>>>
>>> I'm using this [1] execution plan inside stratos single jvm installation.
>>>
>>> "select cluster_id,network_partition_id,avg(active_instances_count) as
>>> instances_count, avg(in_flight_request_count) as count ,
>>> *sum(served_request_count)
>>> as served_count*
>>> insert into average_in_flight_requests "
>>>
>>> *sum* doesn't give expected output. I've checked the same query with
>>> a standalone cep 3.1.0 and it gave desired results.
>>> for an example : served_request_count =10 sent for four times to CEP
>>> within a minute then the out put(served_count) is 80 (most of the time) or
>>> 60 where it should be 40.
>>>
>>> I'm using stratos pack 4.0.0-rc4 (release )
>>>
>>> Can't figure out why this is happening. Any ideas?
>>>
>>> Thanks in advance.
>>>
>>> Regards,
>>> Asiri
>>>
>>>
>>>
>>> [1] : from avg_rif_stat
>>> select cluster_id, network_partition_id,active_instances_count,
>>> in_flight_request_count,served_request_count,
>>> stratos:concat(cluster_id, '-' , network_partition_id) as
>>> avg_rif_cluster_network
>>> insert into avg_rif_concat;
>>> define partition avg_rif_cluster_partition by
>>> avg_rif_concat.avg_rif_cluster_network;
>>> from avg_rif_concat#window.timeBatch(1 min)
>>> select cluster_id,network_partition_id,avg(active_instances_count) as
>>> instances_count, avg(in_flight_request_count) as count ,
>>> sum(served_request_count) as served_count
>>> insert into average_in_flight_requests
>>> partition by avg_rif_cluster_partition;
>>> from average_in_flight_requests
>>> select cluster_id, network_partition_id,instances_count,
>>> served_count,
>>> stratos:divider(served_count , instances_count) as
>>> requests_per_instance
>>> insert into served_requests_per_instance;
>>> from served_requests_per_instance#window.timeBatch(10 min)
>>> select cluster_id,network_partition_id, avg(requests_per_instance) as
>>> average_served_count
>>> insert into average_served_request_count;
>>>
>>> _______________________________________________
>>> Dev mailing list
>>> [email protected]
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Lasantha Fernando*
>> Software Engineer - Data Technologies Team
>> WSO2 Inc. http://wso2.com
>>
>> email: [email protected]
>> mobile: (+94) 71 5247551
>>
>> _______________________________________________
>> Dev mailing list
>> [email protected]
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Reka Thirunavukkarasu
> Senior Software Engineer,
> WSO2, Inc.:http://wso2.com,
> Mobile: +94776442007
>
>
>
[Event{streamId='average_in_flight_requests', timeStamp=1408643431073, data=[myphp.php.domain, ec2-region1, 1.0, 45.0, 368.0], type=new}]
17:50:33,081 [-] [Siddhi-Scheduler-pool-6-thread-13] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 45.0, 368.0]
17:50:33,081 [-] [Siddhi-Scheduler-pool-6-thread-13] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"45.0" ,"servedCount":"368.0"}}}
17:50:46,074 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:50:46,075 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:51:01,074 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 41.0, 50.0]
17:51:01,074 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 41.0, 50.0]
17:51:16,074 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 42.0],
arbitraryDataMap={},
}
17:51:16,075 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 42.0]
17:51:16,075 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 42.0]
17:51:16,075 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 42.0]
17:51:31,075 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:51:31,076 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:51:31,076 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:51:31,076 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:51:46,076 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:51:46,076 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0],
arbitraryDataMap={},
}
17:51:46,076 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:51:46,076 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:52:01,075 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 45.0, 49.0]
17:52:01,076 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 45.0, 49.0],
arbitraryDataMap={},
}
17:52:01,076 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 45.0, 49.0]
17:52:01,076 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 45.0, 49.0]
17:52:16,077 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 46.0]
17:52:16,077 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 46.0],
arbitraryDataMap={},
}
17:52:16,077 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 46.0]
17:52:16,077 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 46.0]
17:52:31,076 [-] [Siddhi-Scheduler-pool-16-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643536077, data=[myphp.php.domain, ec2-region1, 1.0, 47.75, 390.0], type=new}]
17:52:31,076 [-] [Siddhi-Scheduler-pool-16-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 47.75, 390.0]
17:52:31,076 [-] [Siddhi-Scheduler-pool-16-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"47.75" ,"servedCount":"390.0"}}}
17:52:31,077 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:52:31,107 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:52:31,107 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:52:31,107 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:52:46,084 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:52:46,085 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0],
arbitraryDataMap={},
}
17:52:46,085 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:52:46,085 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:53:01,078 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 49.0]
17:53:01,078 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 49.0],
arbitraryDataMap={},
}
17:53:01,078 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 49.0]
17:53:01,078 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 49.0]
17:53:16,079 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:53:16,079 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0],
arbitraryDataMap={},
}
17:53:16,079 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:53:16,079 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 50.0]
17:53:31,076 [-] [Siddhi-Scheduler-pool-16-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643596079, data=[myphp.php.domain, ec2-region1, 1.0, 48.5, 398.0], type=new}]
17:53:31,077 [-] [Siddhi-Scheduler-pool-16-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 48.5, 398.0]
17:53:31,077 [-] [Siddhi-Scheduler-pool-16-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"48.5" ,"servedCount":"398.0"}}}
17:53:31,079 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 49.0]
17:53:31,113 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 48.0, 49.0],
arbitraryDataMap={},
}
17:53:31,113 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 49.0]
17:53:31,114 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 48.0, 49.0]
17:53:46,079 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 42.0, 49.0]
17:53:46,080 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 42.0, 49.0],
arbitraryDataMap={},
}
17:53:46,080 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 42.0, 49.0]
17:53:46,080 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 42.0, 49.0]
17:54:01,080 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 47.0, 43.0]
17:54:01,080 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 47.0, 43.0],
arbitraryDataMap={},
}
17:54:01,080 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 47.0, 43.0]
17:54:01,081 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 47.0, 43.0]
17:54:16,080 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 48.0]
17:54:16,080 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 48.0],
arbitraryDataMap={},
}
17:54:16,080 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 48.0]
17:54:16,080 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 48.0]
17:54:31,076 [-] [Siddhi-Scheduler-pool-16-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643656081, data=[myphp.php.domain, ec2-region1, 1.0, 46.5, 378.0], type=new}]
17:54:31,077 [-] [Siddhi-Scheduler-pool-16-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 46.5, 378.0]
17:54:31,077 [-] [Siddhi-Scheduler-pool-16-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"46.5" ,"servedCount":"378.0"}}}
17:54:31,091 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:54:31,110 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:54:31,110 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:54:31,110 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:54:31,113 [-] [Siddhi-Scheduler-pool-16-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643671110, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 100.0], type=new}]
17:54:31,113 [-] [Siddhi-Scheduler-pool-16-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 100.0]
17:54:31,113 [-] [Siddhi-Scheduler-pool-16-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"100.0"}}}
17:54:46,082 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:54:46,082 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:54:46,082 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:54:46,082 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:01,083 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:01,084 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:55:01,084 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:01,084 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:16,082 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:16,083 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:55:16,083 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:16,083 [-] [DataBridge-Core-pool-2-thread-2] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:31,076 [-] [Siddhi-Scheduler-pool-16-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643716083, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 300.0], type=new}]
17:55:31,076 [-] [Siddhi-Scheduler-pool-16-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 300.0]
17:55:31,076 [-] [Siddhi-Scheduler-pool-16-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"300.0"}}}
17:55:31,105 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:31,154 [-] [Siddhi-Scheduler-pool-16-thread-19] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643731106, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0], type=new}]
17:55:31,154 [-] [Siddhi-Scheduler-pool-16-thread-19] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:31,155 [-] [Siddhi-Scheduler-pool-16-thread-19] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"50.0"}}}
17:55:31,217 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:55:31,217 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:31,217 [-] [DataBridge-Core-pool-2-thread-5] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:46,084 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:46,085 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:55:46,085 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:55:46,085 [-] [DataBridge-Core-pool-2-thread-8] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:01,084 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:01,084 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:56:01,085 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:01,085 [-] [DataBridge-Core-pool-2-thread-1] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:16,084 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:16,085 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:56:16,085 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:16,085 [-] [DataBridge-Core-pool-2-thread-4] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:31,076 [-] [Siddhi-Scheduler-pool-16-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643776085, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 350.0], type=new}]
17:56:31,076 [-] [Siddhi-Scheduler-pool-16-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 350.0]
17:56:31,076 [-] [Siddhi-Scheduler-pool-16-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"350.0"}}}
17:56:31,085 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:31,085 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:56:31,085 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:31,085 [-] [DataBridge-Core-pool-2-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:31,154 [-] [Siddhi-Scheduler-pool-16-thread-11] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643791085, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 100.0], type=new}]
17:56:31,154 [-] [Siddhi-Scheduler-pool-16-thread-11] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 100.0]
17:56:31,154 [-] [Siddhi-Scheduler-pool-16-thread-11] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"100.0"}}}
17:56:46,086 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:46,086 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:56:46,086 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:56:46,086 [-] [DataBridge-Core-pool-2-thread-10] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:01,086 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:01,086 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:57:01,086 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:01,086 [-] [DataBridge-Core-pool-2-thread-3] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:16,090 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:16,090 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:57:16,090 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:16,090 [-] [DataBridge-Core-pool-2-thread-6] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:31,076 [-] [Siddhi-Scheduler-pool-16-thread-14] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643836090, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 300.0], type=new}]
17:57:31,076 [-] [Siddhi-Scheduler-pool-16-thread-14] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 300.0]
17:57:31,076 [-] [Siddhi-Scheduler-pool-16-thread-14] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"300.0"}}}
17:57:31,087 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:31,087 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder, before processing
Event{
streamId='in_flight_requests:1.0.0',
timeStamp=0,
metaData=null,
correlationData=null,
payloadData=[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0],
arbitraryDataMap={},
}
17:57:31,087 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Builder : LoadBalancerStatisticsEventBuilder : Event Stream : in_flight_requests:1.0.0 , after processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:31,087 [-] [DataBridge-Core-pool-2-thread-9] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,in_flight_requests:1.0.0 (avg_rif_stat), before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 50.0]
17:57:31,154 [-] [Siddhi-Scheduler-pool-16-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Processor : AverageInFlightRequestsFinder,average_in_flight_requests:1.0.0 (average_in_flight_requests), after processing
[Event{streamId='average_in_flight_requests', timeStamp=1408643851087, data=[myphp.php.domain, ec2-region1, 1.0, 49.0, 100.0], type=new}]
17:57:31,154 [-] [Siddhi-Scheduler-pool-16-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, before processing
[myphp.php.domain, ec2-region1, 1.0, 49.0, 100.0]
17:57:31,154 [-] [Siddhi-Scheduler-pool-16-thread-7] INFO EVENT_TRACE_LOGGER TenantId=-1234 : Event Formatter : average_in_flight_requests, after processing
{"org.apache.stratos.messaging.event.health.stat.AverageRequestsInFlightEvent":{"message":{"clusterId":"myphp.php.domain","networkPartitionId":"ec2-region1","activeInstances":"1.0","value":"49.0" ,"servedCount":"100.0"}}}
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev