2 Replies Latest reply on Mar 26, 2013 12:01 PM by jwalin.pandya

    Event subsystem stopped working

    jwalin.pandya

      Hi

       

      I have been using the event to alert system to get alerts but I am not getting any events in the RHQ UI. I can see events in the log file being monitored. Is there a limit to a message or file for this?

        • 1. Re: Event subsystem stopped working
          mazz

          To avoid an agent clobbering the server with large amounts of log events, there is a limit to the number of events an agent will collect and send up to the server. Your agent has two config settings for this.   You can read about them in the comments in agent-configuration.xml:

           

                         <!--

                         _______________________________________________________________

                         rhq.agent.plugins.event-report.max-per-source

           

           

                         Defines the maximum number of events for any given event source

                         that can be placed in a single event report that is sent up

                         to the server. If this number is larger than the max-total

                         setting, then this setting is ignored.

                         -->

                         <!--

                         <entry key="rhq.agent.plugins.event-report.max-per-source" value="200"/>

                         -->

           

           

                         <!--

                         _______________________________________________________________

                         rhq.agent.plugins.event-report.max-total

           

           

                         Defines the total maximum number of events that can be placed

                         in a single event report that is sent up to the server.

                         -->

                         <!--

                         <entry key="rhq.agent.plugins.event-report.max-total" value="400"/>

                         -->

          • 2. Re: Event subsystem stopped working
            jwalin.pandya

            Thank you.