Incrementally consuming the eventlog

Don Stewart dons00 at gmail.com
Mon May 2 00:34:50 CEST 2011


I've got a proof of concept event-log monitoring server and
incremental parser for event streams:

 * http://code.haskell.org/~dons/code/ghc-events-stream/

 * http://code.haskell.org/~dons/code/ghc-monitor/

Little screen shot of the snap server running, watching a Haskell
process' eventlog fifo:

 * http://i.imgur.com/Xfr9I.png

The main issue at the moment is that GHC is irregular in scheduling
flusing of the event log stream, so it might be hours or days before
you see any activity. This isn't useful for heartbeat style
monitoring.

Also, we need to break out a bit of ThreadScope to give access to its
analytics (e.g. rendering time series).

-- Don

On Sun, May 1, 2011 at 1:51 PM, Duncan Coutts
<duncan.coutts at googlemail.com> wrote:
> On Thu, 2011-04-28 at 23:31 +0200, Johan Tibell wrote:
>
>> The RTS would invoke listeners every time a new event is written. This
>> design has many benefits:
>>
>> - We don't need to introduce the serialization, deserialization, and
>> I/O overhead of first writing the eventlog to file and then parsing it
>> again.
>
> The events are basically generated in serialised form (via C code that
> writes them directly into the event buffer). They never exist as Haskell
> data structures, or even C structures.
>
>> - Programs could monitor themselves and provide debug output (e.g. via
>> some UI component).
>> - Users could write code that redirects the output elsewhere e.g. to a
>> socket for remote monitoring.
>>
>> Would invoking a callback on each event add too big of an overhead?
>
> Yes, by orders of magnitude. In fact it's impossible because the act of
> invoking the callback would generate more events... :-)
>
>> How about invoking the callback once every time the event buffer is
>> full?
>
> That's much more realistic. Still, do we need the generality of pushing
> the event buffers through the Haskell code? For some reason it makes me
> slightly nervous. How about just setting which output FD the event
> buffers get written to.
>
> Turning all events or various classes of events on/off at runtime should
> be doable. The design already supports multiple classes, though
> currently it just has one class (the 'scheduler' class). The current
> design does not support fine grained filtering at the point of event
> generation.
>
> Those two features combined (plus control over the frequency of event
> buffer flushing) would be enough to implement a monitoring socket
> interface (web http or local unix domain socket).
>
> Making the parser in the ghc-events package incremental would be
> sensible and quite doable as people have already demonstrated.
>
> Duncan
>
>
> _______________________________________________
> Glasgow-haskell-users mailing list
> Glasgow-haskell-users at haskell.org
> http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
>



More information about the Glasgow-haskell-users mailing list