.. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_monitoring_io_monit.py: ================== Monitoring Channel ================== This application demonstrates how to access monitoring channel data. .. code-block:: python from __future__ import absolute_import, print_function, division # Author: Tamas Gal # License: MIT #!/usr/bin/env python # vim: ts=4 sw=4 et import io import km3pipe as kp __author__ = "Tamas Gal" __email__ = "tgal@km3net.de" def print_monitoring_data(blob): data = io.BytesIO(blob['CHData']) print(kp.io.daq.TMCHData(data)) return blob pipe = kp.Pipeline() pipe.attach(kp.io.CHPump, host='localhost', tags='IO_MONIT') pipe.attach(print_monitoring_data) pipe.drain() **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download_auto_examples_monitoring_io_monit.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download :download:`Download Python source code: io_monit.py ` .. container:: sphx-glr-download :download:`Download Jupyter notebook: io_monit.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_