3 Replies Latest reply on Feb 1, 2014 9:55 AM by swiderski.maciej

    more detailled instance log

    frankd

      Hey,

       

      I have created a Busines Process with Human Tasks at the KIE Workbench (6.0.0 Final).

      jbpm runs on a Linux Server (Ubuntu 13.10 64bit Server Edition) with out a Desktop.

       

      My questions is now: How can i get more detailled Information about the Logs of an process instance ?

      The Logs at the KIE Workbench are not detailled enough. I read Chapter 17 about Logging, but all I understand was

      that the Logs are stored at the H2 Database.

      The Logs dont have to be persistence, so it would be enough to get the Logs during the process instance is not finished yet.

       

      Hope you anderstand my Question and sorry for my bad englisch.

      Thanks

      Frank

        • 1. Re: more detailled instance log
          swiderski.maciej

          you can register your own process event listener that will collect all information you need. Take a look at docs about how to register listeners.

           

          HTH

          • 2. Re: more detailled instance log
            frankd

            Hey,

             

            thanks for your answer. So i read the Docs, but if i understood this right, i have to install Eclipse an load my existings Project in the Workspace, and then register such an event listener ?

            So there is now possibility to this with the integrated KIE Workbench ?

            Thanks

            • 3. Re: more detailled instance log
              swiderski.maciej

              actually there is, you need to create EventListenerProducer class that will be bundled as bean archive so CDI container will find it on the application class path and then RuntimeManager will register it on ksession. In the docs there is a section on how to register work item handlers and event listeners in CDI environment. kie workbench runs in CDI environment.

               

              HTH