[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MirageOS-devel] Logging



On 12 May 2015, at 17:58, Rudi Grinberg <rudi.grinberg@xxxxxxxxx> wrote:


> I like your "only one function" idea. 
> The alternative of passing around the unique function is to have a global reference containing the dispatcher function. It's the solution used by Lwt_log. It's mostly equivalent (and it works ok in practice) but I think it's indeed better to pass the function explicitly. 

It should be possible to stash the logging function somewhere more convenient than every single function, but this depends on the library. In Cohttp and Conduit, the `ctx` context is a good place. For DNS, it's probably enough to pass it in to the library functions since they are fairly stateless. 

Iâm curious about this comment about cohttp. There was actually a request on the bug tracker asking for better logging in cohttp but I mostly turned it down because it seems like any kind of logging you might want cohttp to do can be easily accomplished outside of cohttp. For example, if youâre using a cohttp as an http client, you only need to wrap your call function to print the request before itâs sent and the response just after it arrives. Adding this kind of logging to a cohttp server is similar.

In fact, for the client use case we could really make it trivial for a user to add his own logging if we exposed a function that would construct all the little helpers such as get/post/put/delete/etc. from a basic log aware call function.

Of course, this approach is inadequate if you want to log something that pertains cohttpâs internals. Which is exactly why we have the COHTTP_DEBUG env var today. I was never a huge fan of his approach either and have thought about improving it by introducing a functor (if you can call that an improvement) IO -> IO that would take a normal IO backend and return a logging one (or at least a COHTTP_DEBUG accepting one). But Iâm not yet sure if this an improvement.

Anyhow, this is getting off topic. I just mean to bring some for less intrusive approaches for logging.

It's definitely on topic -- the ad-hoc use of COHTTP_DEBUG and CONDUIT_DEBUG is what I'm hoping to get rid of in our libraries.  It's also essential to have access to similar functionality when compiled to a Xen unikernel as well as a Unix binary, and this is just a matter of establishing the right conventions.

For Cohttp, I like the idea of initialising a given `ctx` with a log level, and the library uses that to decide whether to dump its internals or not (similarly to `curl -vvv`).  By default, it would just log the URLs themselves.  A functor transformer is also possible, but it seems likely that we'll want to be able to turn the detailed debugging on dynamically rather than statically.

There's also the sequencing of log messages.  Although logging a single call is easy, Cohttp does also support pipelining, and so showing a sequence such as:
  - connected to 1.2.3.4:80
    - sending /foo
    - sending /bar
    - received response for /foo: 404
    - sending /bar2
    - received chunked response for /bar
    - sending /bar3
  - connected to 4.3.2.1:80
     ...

would be useful.  This also naturally composes with other libraries such as DNS gaining access to the same log stream.

-anil
_______________________________________________
MirageOS-devel mailing list
MirageOS-devel@xxxxxxxxxxxxxxxxxxxx
http://lists.xenproject.org/cgi-bin/mailman/listinfo/mirageos-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.