Code Monkey home page Code Monkey logo

mintysensormonitor's Introduction

MSM - Minty Sensor Monitor

MSM has been developed as the backend for Minty Sensor Server. MSM consumes JSON requests for hardware sensor information exposed by 3rd party software monitoring components such as HWiNFO and formats this sensor data as a consumable JSON response format.

MSM Quest : Output a native C# library call as JSON response to MSS - Minty Sensor Server

Your current installed hardware components such as:-

  • Motherboard
  • CPU
  • GPU
  • MEMORY
  • FAN
  • PUMP

and more all expose useful information such as:-

  • Volts
  • Mhz
  • °C
  • RPM

This information can be utilised using 3rd party sofware such as:-

GOAL : Integrate available sensor information with MSS - Minty Sensor Server

The sister project MSS - Minty Sensor Server requires integration between various 3rd party sensor information providers who mostly output this sensor information via native C# libraries or directly via Shared Memory access. As MSS has been developed using JAVA, it is very difficult to consume this information directly so MSM provides a bridge between these native C# software components and JAVA via a simple JSON MSMRequest / MSMResponse model.

For more information see the following projects:-

This Project (MSM) C# <--> (MSM2MSS) C++ <--> (MSS) Java

  • Full Project Stack:-
    • Raw Sensor Information
    • <--?:Sensor Information Providers:?-->
    • <--SHM::DLL-->
    • MsmServiceInterface
    • <--MSMRequest::MSMResponse-->
    • MSM[C#]
    • <--MSMRequest::MSMResponse-->
    • MSM2MSS[C++]
    • <--MSMRequest::MSMResponse-->
    • MSS[JNI]
    • <--MSMRequest::MSMResponse-->
    • API[JAVA:REST/JSON]
    • <--HTTP::HTML-->

MSMRequest

{"debug":true} 

Example MsmMonitorResponse

{  
   "sensors":[  
      {  
         "label":{  
            "value":"value",
            "description":"description"
         },
         "id":12345,
         "instance":1
      }
   ],
   "readings":[  
      {  
         "type":2,
         "label":{  
            "value":"CPU[1]VOLT",
            "description":"Central Processor Voltage"
         },
         "id":12345,
         "sensor_index":1,
         "unit":"Volt(s)",
         "value":1.154667,
         "min":1.228763,
         "max":1.354786,
         "avg":1.286443
      },
      {  
         "type":3,
         "label":{  
            "value":"CPU[1]FAN",
            "description":"Central Processor Fan Speed"
         },
         "id":12345,
         "sensor_index":1,
         "unit":"Rpm",
         "value":45.898765,
         "min":0.0,
         "max":305346.12312,
         "avg":40.7345
      }
   ],
   "exception":null,
   "labels":[  
      "sensor.label"
   ],
   "type":"MsmMonitorResponse",
   "source":"MSM[JSON]EXAMPLE",
   "version":"1.0",
   "debug":false,
   "time_taken":"00:00:00.0000015"
}

Example HWiNFO64 MsmMonitorResponse

Acknowledgments

  • HWiNFO - Martin Malik for his help with the sensor integration HWiNFO

License

MSM is licensed under The GNU General Public License version 3.

mintysensormonitor's People

Contributors

mintymods avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

mintysensormonitor's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.