Skip to content

Monisys with tool we can able to moniter entire os

Notifications You must be signed in to change notification settings

prasaanth2k/monisys

Repository files navigation

Monisys - Monitor Your Entire OS and Gain Insights About Your Machine

monisys

Monisys is a Python3 package built on top of osquery that allows users to monitor and retrieve comprehensive information about their operating system. This package can be used as a module to develop custom monitoring dashboards, or you can utilize the built-in dashboard (currently under development).

PyPI Version Python Version

Installation

To install Monisys, run the following command with superuser privileges:

sudo pip install monisys

Getting Started

After installing, you can access the help message to explore the available commands and options:

monisys -h
# or
monisys --help
help

Command-Line Interface (CLI) Examples

Monisys provides various CLI commands to retrieve specific system information:

Display CPU Information

sudo monisys -ci
# or
sudo monisys --cpu-info
cpuinfo

Display USB Devices

monisys -ud
# or
monisys --display-usbdevices
usbdevices

Using Monisys as a Module

Monisys can also be used programmatically to fetch system data. Here’s an example of how to retrieve CPU information:

import time
from monisys.Managers.Systeminfo import SystemInfo

system_info = SystemInfo('cpu_info')
cpuinfos = system_info.get_all_data()

print(cpuinfos)

About

Monisys with tool we can able to moniter entire os

Resources

Stars

Watchers

Forks

Packages

No packages published