Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 403 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 403 Bytes

mdbtop displays and logs system resource utilization for MonetDB process (mserver5, monetdbd)

Dependencies

  • psutil
  • poetry

Usage

From command line

mdbtop --interval=3 --log-file=<path> --dbpath=<database_path>

, or import it in your python code

from mdbtop import Monitor
m = Monitor(interval=3)
try:
    m.start()
    # do some work
    #...
finaly:
    m.stop()