Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Dockprom | 5,515 | a month ago | 8 | mit | ||||||
Docker hosts and containers monitoring with Prometheus, Grafana, cAdvisor, NodeExporter and AlertManager | ||||||||||
Vizceral | 4,008 | 18 | 11 | 5 months ago | 68 | July 20, 2019 | 50 | apache-2.0 | JavaScript | |
WebGL visualization for displaying animated traffic graphs | ||||||||||
Mycodo | 2,647 | 6 days ago | 73 | gpl-3.0 | Python | |||||
An environmental monitoring and regulation system | ||||||||||
Chronograf | 1,450 | 1 | 9 days ago | 45 | March 17, 2023 | 30 | other | TypeScript | ||
Open source monitoring and visualization UI for the TICK stack | ||||||||||
Rainbarf | 1,111 | 1 | a year ago | 11 | September 06, 2016 | 2 | other | Perl | ||
it's like Rainmeter, but for CLI! | ||||||||||
Jplot | 1,092 | 22 days ago | 8 | December 28, 2022 | 9 | mit | Go | |||
iTerm2 expvar/JSON monitoring tool | ||||||||||
Promviz | 915 | 2 years ago | 5 | February 07, 2022 | 7 | mit | Go | |||
Visualize the traffic of your clusters in realtime from Prometheus data | ||||||||||
Pcp | 893 | 4 days ago | 147 | other | C | |||||
Performance Co-Pilot | ||||||||||
Monkit | 473 | 25 | 7 days ago | 22 | July 26, 2022 | 4 | apache-2.0 | Go | ||
A flexible process data collection, metrics, monitoring, instrumentation, and tracing client library for Go | ||||||||||
Docker Compose Prometheus And Grafana | 243 | a year ago | 5 | mit | ||||||
Prometheus-Grafana with Docker-compose |
Environmental Regulation System
Latest version: 8.15.9
Mycodo is open source software for the Raspberry Pi that couples inputs and outputs in interesting ways to sense and manipulate the environment.
Table of Contents
Prerequisites: Debian-based Linux operating system (apt).
Recommended: Single board computer (SBC) with General-Purpose Input-Output (GPIO) pins.
Install Command:
curl -L https://kizniche.github.io/Mycodo/install | bash
See the Install Mycodo section for more details.
Mycodo API (Version: v1)
Mycodo Custom Module Repository
Mycodo Issues (Bug Reports/Feature Requests)
If you believe there is a bug in the Mycodo software, first search through the github Issues and see if your issue has already recently been discussed or resolved. If your issue is novel or significantly more recent than a similar one, you should create a New Issue. When creating a new issue, make sure to read all information in the issue template and follow the instructions. Replace the template text with the information being requested (e.g. "step 1" under "Steps to Reproduce the issue" should be replaced with the actual steps to reproduce the issue). The more information you provide, the easier it is to reproduce and diagnose the issue. If the issue is not able to reproduced because not enough information is provided, it may delay or prevent solving the issue.
I have always made Mycodo free and I don't intend on changing that. However, if you find Mycodo useful and would like to support its continued development, please consider becoming a sponsor at github.com/sponsors/kizniche or donate at kylegabriel.com/donate.
Figure: Automated Hydroponic System Build
Originally developed to cultivate edible mushrooms, Mycodo has evolved to do much more. Here are a few things that have been done with Mycodo:
Let me know how you use Mycodo and I may include it on this list.
Visit the Screenshots page of the Wiki.
Required:
Recommended:
Mycodo has been tested to work with Raspberry Pi OS Lite and Desktop, both 32-bit and 64-bit.
Once you have the Raspberry Pi booted, log in and run the following command in a terminal to initiate the Mycodo install:
curl -L https://kizniche.github.io/Mycodo/install | bash
Make sure the install script finishes without errors. A log of the output will be created at ~/Mycodo/install/setup.log
.
If the install is successful, the web user interface should be accessible by navigating a web browser to https://127.0.0.1/
, replacing 127.0.0.1
with the IP address of the computer you installed on. Upon your first visit, you will be prompted to create an admin user before being redirected to the login page. Once logged in, check that the time is correct at the top left of the page. Incorrect time can cause a number of issues with measurement storage and retrieval in a time-series database. Also ensure the host name and version number at the top left of the page is green, indicating the daemon is running. If it's red, it indicates the daemon is inactive or unresponsive. Last, ensure any java-blocking plugins of your browser are disabled for all parts of the web interface to function properly.
If you receive an error during the install that you believe is preventing your system from operating, please create an issue with the install log attached. If you would first like to attempt to diagnose the issue yourself, see Diagnosing Issues.
A minimal set of anonymous usage statistics are collected to help improve development. No identifying information is saved from the information that is collected and it is only used to improve Mycodo. No one other than the development team will have access to this information and it will never be sold. The data collected is mainly what and how many features are used, and other similar information. The data that's collected can be viewed from the 'View collected statistics' link in the Settings -> General
page. There is an opt out option on the General Settings page if you want to turn this functionality off.
Mycodo currently supports InfluxDB as the time-searies database used to store measurements. Both versions 1.x (for 32-bit systems) and 2.x (for 64-bit systems) are supported. During the install, you will be prompted to install 1.x, 2.x, or none (if you wish to set up your own, either locally or remotely). The settings for the database can be reconfigured after install.
Docker support is experimental, but if you want to try it, read the [DOCKER.md](https://github.com/kizniche/Mycodo/blob/master/DOCKER.md). There is also a Docker Issue (#637) on github for those that wish to help with development.
The latest API documentation can be found here: API Information and API Endpoint Documentation.
A proportionalintegralderivative (PID) controller is a control loop feedback mechanism used throughout industry for controlling systems. It efficiently brings a measurable condition, such as temperature, to a desired state (setpoint). A well-tuned PID controller can raise to a setpoint quickly, have minimal overshoot, and maintain the setpoint with little oscillation.
The top graph visualizes the regulation of temperature. The red line is the desired temperature (setpoint) that has been configured to change over the course of each day. The blue line is the actual recorded temperature. The green vertical bars represent how long a heater has been activated for every 20-second period. This regulation was achieved with minimal tuning, and already displays a very minimal deviation from the setpoint (0.5 Celsius). Further tuning would reduce this variability further.
See the PID Controller and PID Tuning sections of the manual for more information.
All supported Inputs, Outputs, and other devices can be found under the Supported Devices section of the manual.
Mycodo supports importing custom Input, Output, Function, Action, and Widget modules. you can find more information about each in the manual under Custom Inputs, Custom Outputs, Custom Functions, Custom Actions, and Custom Widgets.
If you would like to add to the list of supported Inputs, Outputs, Functions, Actions, and Widgets, submit a pull request with the module you created or start a New Issue.
Additionally, I have another github repository devoted to custom Inputs, Outputs, Functions, Actions, and Widgets that do not necessarily fit with the built-in set and are not included by default with Mycodo, but can be imported. These can be found at kizniche/Mycodo-custom.
Thanks for using and supporting Mycodo, however depending where you found this documentation, you may not have the latest version or it may have been altered, if not obtained through an official distribution site. You should be able to find the latest version on github.
See License.txt
Mycodo is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Mycodo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
A full copy of the GNU General Public License can be found at http://www.gnu.org/licenses/gpl-3.0.en.html
This software includes third party open source software components. Please see individual files for license information, if applicable.
Mycodo has been translated to several laguages. Weblate is now used so anyone can contribute to translations. However, due to an increasing number of new languages being added and not translated, only languages that are at least 50% complete will be included in Mycodo as a translation option.
The install script will prompt you to select a language. This will be the set language when you first open the web user interface. You may change this at a later time on the settings page at [Gear Icon] -> Configure -> General -> Language
.
If you would like to contribute to the translations, you can do so at http://translate.kylegabriel.com. Please read [How To Contribute to Language Translations in Mycodo](https://forum.radicaldiy.com/t/how-to-contribute-to-language-translations-in-mycodo/1162/2) for more information.
Mycodo is made possible, in part, by the many fine open source libraries, below.