There are differences between the standard version of emoncms and the version of emoncms running on emoncms.org. This repository contains the code for the standard version of emoncms, currently in version 9. This is the version installed on the OpenEnergyMonitor SD Card that comes with the EmonPi and EmonBase and is recommended for all self-install versions of emoncms.
The emoncms.org version Github: emoncms/emoncmsorg is a fork that is specific for multi-server installations. While both versions share the same roots the code for emoncms.org differs significantly to the standard version of emoncms, the user experience is intended to be similar but there are currently a number of differences in the API and look of the inputs and feeds interfaces as well as a reduced feature set in general on emoncms.org in order to ensure stability. In general development on emoncms.org moves slower than the standard emoncms for this reason.
Emoncms is an open-source web application for processing, logging and visualising energy, temperature and other environmental data and is part of the OpenEnergyMonitor project.
Version 9 of emoncms has been developed by Chaveiro with a significant list of improvements, see forum thread with full change log
- PHP (5.6 - 7 recomended)
- MYSQL (14.14 recomended)
- Apache (2.4 recomended)
- Redis (recommended)*
*Redis is recommended to reduces disk write load prolonging disk life (noticably on SD cards e.g. RaspberryPi). Some input-processors also require redis and fail silently if redis is not installed. Some environments such as shared hosting or as far as we have tried windows servers dont support redis hence why emoncms has a fall back mode that allows core operation without redis.
Important: See appendix on differences between standard Emoncms and Emoncms.org
1. Screencasts/Videos
These screencasts where put together to accompany the emonPi/emonBase setup guide and do therefore contain a number of references that are EmonPi/EmonBase/RaspberryPi specific. They do however give a useful overview of some of the core parts of Emoncms including configuring inputs, creating feeds and dashboards.
- Screencast: Logging data locally with emoncms on the emonPi/emonBase
- Screencast: Viewing data and creating dashboards on the emonPi/emonBase
There are also two screencasts that are specific to optional modules that are included on the EmonPi/Emonbase standard SD card install but are not part of the standard install if you follow the installation guides below.
- Screencast: Connecting to WiFi using the emoncms WiFi module on the emonPi/emonBase
- Screencast: Data backup and import using emoncms backup module on the emonPi/emonBase
2. From the Guide
- Guide: Creating daily kWh graphs - How to create daily kWh graphs from cumulative kWh electricity/heat energy feeds.
- Guide: Daily Averages - How to extract daily averages from temperature, humidity & power feeds.
- Guide: Exporting CSV - How to use the graph module and feeds interface to export CSV data for use in 3rd party programs such as OpenOffice Calc or Excel.
- Guide: Histograms - How to use the histogram tool in the graph module.
- Guide: Home Energy Monitor - example of configuring the MyElectric dashboard.
- Guide: Solar PV Monitor - example of configuring the MySolar dashboard.
3. Emoncms Terminology
- Inputs: An incoming datasource. Each input has an associated "node" identifier and a "key" sub-identifier. Inputs are entry points, only the last value and time of the input is recorded. To record historic data a feed needs to be created from an input.
- Input: Node: A grouping identifier for inputs or feeds.
- Input: Key: A sub-identifier for items within each Node.
- Input process list (or input processing): A list of processes* performed sequentially on each input value as it is received on that input.
- Process: A function that can be attached to the process list of an input to change the value or to save the value to a feed*.
- Feeds: (Feed) A place where data is recorded, a time-series of datapoints. The standard time-series databases used by emoncms are PHPFina and PHPTimeSeries and where written as part of the emoncms project.
- For a description of what each input process does in emoncms see the helper note within the emoncms input processing configuration interface.
4. Emoncms.org API Reference
The following API references apply to emoncms.org they differ slightly to the API available on EmonPI/EmonBase installs, the API refrence for which can be found from the inputs and feed pages when logged in locally.
Recommended:
Experimental:
Other (less supported, not tested on latest versions of emoncms)
- Shared Linux Hosting
- Windows Emoncms is developed and tested on Linux only and so additional research, steps may be required that are not covered in this guide.
Modules can be installed by downloading or git cloning into the emoncms/Modules folder. Be sure to check for database updates in Administration menu after installing new modules:
-
Graph module advanced graphing module that integrates with the emoncms feed list, highly recommended, examples of use can be found in emoncms guide [1][2][3][4]
-
Device module automatically configure inputs and feeds using device templates.
-
Dashboards module, required for creating, viewing and publishing dashboards:
-
App Module - Application specific dashboards e.g. MyElectric, MySolar
-
Config - In-browser emonhub.conf editor and emonhub.log log viewer. git clone
-
Wifi Module - Wifi configuration interface designed for use on the emonPi
There are many other modules such as the event module and openbem (open source building energy modelling module) that are available, check out the Emoncms repo list
-
master - The latest and greatest developments. Potential bugs, use at your own risk! All pull-requests should be made to the master branch.
-
stable - emonPi/emonBase release branch, regularly merged from master. Slightly more tried and tested. See release change log.
-
ARCHIVE low-write (v8.5) - Old emonpi/emonbase emoncms version (July 15 emonSD ready-to-go SD card image). Low-write mode is now available in v9.0. The low write version of emoncms is designed for running on SD cards. This is a cut down version of emoncms supports only the phpfina and phptimeseries feed engines (no in built feed averaging or histograms) and a reduced input processor set. Archived branch
- Backup
- Raspberry Pi Backup / Restore Module (emonPi / emonBase)
- Emoncms Community Forum
- V9 Development thread (archive)
For developers: The following lists the locations of the files that define emoncms's inbuilt documentation for the input and feed API's and input process descriptions:
- The input API helper page emoncms/Modules/input/Views/input_api.php
- The feed API helper page emoncms/Modules/feed/Views/feedapi_view.php
- Input process descriptions are defined in the process list definition object at the top of the process list definition file here: emoncms/Modules/process/process_processlist.php
- PHPFina data file viewer - Easily explore phpfina timeseries feed engine data files directly without a full emoncms installation. Useful for checking backup's and archived data.
Note: due to ongoing development some docs may now be outdated
- Emoncms architecture
- Input processing implementation
- Developing a new Module
- Global variables in Emoncms
Emoncms timeseries database design (feed storage)
- Emoncms time series database development history
- Variable interval time series
- Fixed interval time series
- Fixed interval with averaging time series
- Improving write performance with buffering
- Cloud hosted platform - http://emoncms.org
- OpenEnergyMonitor Forums
- OpenEnergyMonitor Homepage