You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Luca Burgazzoli (JIRA)" <ji...@apache.org> on 2018/04/16 15:32:00 UTC

[jira] [Created] (CAMEL-12450) Ability to group processors and gather related metrics

Luca Burgazzoli created CAMEL-12450:
---------------------------------------

             Summary: Ability to group processors and gather related metrics 
                 Key: CAMEL-12450
                 URL: https://issues.apache.org/jira/browse/CAMEL-12450
             Project: Camel
          Issue Type: New Feature
          Components: camel-core
            Reporter: Luca Burgazzoli
             Fix For: 3.0.0



It would be nice if we can add some marker inside a route to group logical processors together and gather related metrics:

As example:

{code}
from(...)
    .beginStep("step-id")
        .process(...)
        .to(...)
    .endStep("step-id")
{code}

Then we need to have some custom events like:

- StepStartedEvent
- StepCompletedEvent
- StepFailedEvent

The people may be able to determine how long a logical step has last, if it has a failure, the number of exchanges processed so far and so on





--
This message was sent by Atlassian JIRA
(v7.6.3#76005)