fipries
fipries

Reputation: 386

WSO2 ESB 5.0.0 Mediation Tracer

recently I have found out that the brandnew ESB 5.0.0 has no mediation tracer. I was a quite usefull feature that seems to be missed. How can I check this usefull mediation tracer information in ESB 5.0.0? Can I install the mediation tracer as a new feature again?

Best Regards

Upvotes: 1

Views: 138

Answers (2)

Kasun Gajasinghe
Kasun Gajasinghe

Reputation: 2776

You can install Carbon features to your product. There are two ways to do this, UI or file based.

  1. Use the Feature Manager UI. Search and install the mediation tracer feature. (You may want to untick group by categories!)
  2. Use the carbon-p2-plugin maven plugin. Create a stub pom file, and add the maven plugin configuration mentioned there. You can use the default values for all the configuration files.

Under the <features> section, specify the mediation tracer feature.

 <feature>
  <id>org.wso2.carbon.mediation.tracer.feature.group</id>
  <version>${carbon.mediation.version}</version>
 </feature>

Upvotes: 2

Ernesto
Ernesto

Reputation: 266

You can use WSO2 ESB Analytics, please check this post https://docs.wso2.com/display/ESB500/Monitoring+WSO2+ESB+with+WSO2+ESB+Analytics

Upvotes: 1

Related Questions