Software Overview  |  Sitemap  |  Downloads  |  Developers  |  Forums
Small_clear_logo_llc

How To Make Virtual Wiring Graphs

Graph of Office Temperatures
Office Temperatures Graph

Want graphs of your Virtual Wiring devices? There's a Virtual Wiring application for graphing. Using the Virtual Wiring graphing application, you can create graphs of your Virtual Wiring values.

Much like Virtual Wiring, the graphing application runs as a standalone web server, and you can use it with most any browser. The graphing software can graph multiple values at once, and it can even graph values from multiple Virtual Wiring Systems at once. Graphs can be drawn over a variety of intervals - from short intervals (hours) to longer intervals (months).

To use the Virtual Wiring graphing software, you'll need to download the application and install it. As is the case for the Virtual Wiring application, the graphing software runs on most *nix hosts. Often, people will run the graphing software and the Virtual Wiring system on the same host.

Installation

Install Ruby

Before installing the graphing software, you will need to have Ruby installed on your host system. If you are planning on running the graphing software on the same system you are running Virtual Wiring, you are all set. If you are installing the graphing software on a host which does not have Ruby installed, install Ruby on the host. If you are unsure about how to install Ruby, see the Installing Ruby for Virtual Wiring page (installing Ruby is identical for both applications).

Install rrdtool and curl

The graphing software makes use of 2 other applications. One, rrdtool, is a tiny database program suited for running small databases on small systems. We'll use rrdtool to store and retrieve the values in our graphs. The other application, curl, we use for reading values from our Virtual Wiring systems. To install them both, open a terminal on your host and type:

apt-get install rrdtool curl

If you encounter protection violations, try using sudo:

sudo apt-get install rrdtool curl

Note: If your *nix system does not use the apt-get package management system, try snooping around on the web for other ways to install these 2 programs. Both are open source and have been ported to many different platforms. curl may already be on your *nix host (it's commonly installed on *nix systems).

Download the Graphing Software

The Virtual Wiring graphing software is available as a download from the Virtual Wiring Downloads page. The application is a zip file named vw_grapher_yyyymmdd.zip, where yyyymmdd is the date the graphing program was released (yyyy is the year, mm is the month, and dd is the day). To download the software, go to the Downloads page, read the licensing agreement, and if you agree to it, click on the agree button and click on the download button for the software.

Install the Graphing Software

Once you have downloaded the software, move the downloaded zip file into whatever directory you would like for your graphing software. Then unzip your downloaded file (substitute your own yyyymmdd):

unzip vw_grapher_yyyymmdd 

'cd' into your newly created vw_grapher_yyyymmdd directory and type:

bundle install

Your computer will churn on this for a little while, and then you will be good to go. If you encounter problems, make sure you followed all the steps when installing Ruby. Forgetting to install 'bundler' or not installing the 'ruby-dev' package is easy to overlook.

Running the Software

After you've finished installing the software, you should be in your vw_grapher_yyyymmdd directory. From within the graphing directory type:

./run_grapher.rb

After a few seconds, your software should be up and running.

Open your host's browser (Firefox, Safari, Midori, Epiphany, ...) and navigate to localhost:4568. You should see the Virtual Wiring graphing page. It will look something like this:

Graphing Page - 1st Run
Graphs Page

There's not a lot going on here (yet!). To make things more interesting, we'll need to configure the software (later in the configuration section).

Duration Buttons

You can control the time duration of your graphs. Notice near the bottom of your graphs page, there are buttons labeled "3 Hours", "Day", "Week", .... When you click on a button, it will show your graphs over that time interval. So, for example, clicking the "Year" button will graph your values over the last year.

Maxes and Mins

Underneath the duration buttons, there are 2 buttons labeled "Maxes" and "Mins". These buttons allow a special type of graphing: they graph your maximum values or your minimum values.

What's going on here? Because there can be so many points on a graph, the database software finds ways of compressing them into fewer values. By default, it averages values together, which makes sense, since graphs tend to change their values rather slowly. However, if there are graphs which jump around a lot, you may not want your high or low values averaged away. The Maxes and Mins buttons preserve highs and lows. So if you have a big spike in your data that only lasts a short while, you'll be able to see it as a maximum or a minimum.

Max and Min graphs are always graphed over a 1 month duration.

Configuring the Software

The graphing application has a configuration page for configuring itself. The configuration page lets you define the title of the page and what gets graphed. Go to your configuration page by clicking on "Configure" at the top of the graphing application's web page.

Initial Configuration Page
Initial Configuration Page

The application starts up with some default values which illustrate how configuration works.

The "Graphs Title" Field

Notice at the top of the configuration page, there's a box labeled "Graphs Title". This box lets you type in the label you want see at the top of your graphs. The value shown here says:

Miscellaneous Sensor Values over the Last #{time}

Everything in the title box will printed as a title at the top of your graphs. Notice the special string, #{time}. This is a value which means "insert the time over which these graphs are taken". As we've described, when you click on one of the duration buttons near the bottom of the graphs page, it will show you a graph over that time interval. So if you were showing values over the last three hours, the top of the graphs page would say:

Miscellaneous Sensor Values over the Last 3 Hours

So using #{time} is a neat way to make your title self update to whatever graph interval you are looking at! If you don't want a time interval in your title, leave the #{time} string out.

The "Graph Line Definition" Fields

These fields let you define what gets graphed. The "Line Name" field gives your graph a name. The "Host" field says what host and port your graph data will come from (yes, you can get data from any Virtual Wiring host accessible from your network). The "Terminal" field says what terminal the data will be coming from.

So if you wanted a graph called "My Light" of terminal "1S" of device "light", and the Virtual Wiring software was running on port 4567 on the same host as the graphing software, your fields would be as follows:

Line Name               Host                Terminal
My Light                localhost:4567      light:1S

You can display up to five graphs at one time. If you don't have 5 graphs, delete all the fields in your unused definitions. In the configuration screen shown above, there are 4 graphs (line 5 is blanked out).

A Test System

To better illustrate how the graphing software works, we'll create a real Virtual Wiring system and some graphs. Because we don't want to use any hardware, we'll build a system out of Virtual Devices, so you can run it on any system.

To get started, we'll assume you have a host running both the Virtual Wiring software and the graphing software. Within the Virtual Wiring system, we'll create 3 pseudo random data sources, representing 3 temperature sensors. We'll build the "sensors" out of Mappers using a function that generates pseudo random numbers. A sensor gets built like this:

run_script("Scripts/Device/Virtual/Mapper", function:"73 + rand(40)/10.0", id:"temp1")

This "sensor" will output random values from 73 to 76.9 (inclusive).

To tell the "sensors" when to generate a new value, we'll need to create events. We'll use a Triangle Waveform Device generating values once per minute. We don't care about the actual triangle values - we are just using them to generate our pseudo random temperatures. We'll wire the Triangle Device to each of our 3 "sensors", so all 3 generate events once per second.

Our complete test system Script looks like this:

# make 3 pseudo random temperature generators
run_script("Scripts/Device/Virtual/Mapper", function:"73 + rand(40)/10.0", id:"temp1")
run_script("Scripts/Device/Virtual/Mapper", function:"73 + rand(40)/10.0", id:"temp2")
run_script("Scripts/Device/Virtual/Mapper", function:"73 + rand(40)/10.0", id:"temp3")

# make a Triangle Device
run_script("Scripts/Device/Virtual/WaveformTriangle", delay:60, id:"tri", max:60, min:40, step:5)

# wire the Triangle Device to our temperature generators
wire("tri:out", "temp1:in")
wire("tri:out", "temp2:in")
wire("tri:out", "temp3:in")

To create graphs of our system, we'll configure the graphing software as follows:

Configuration for Graphing 3 Temperatures and a Triangle
Configuration for 3 Temperatures

After about 20 minutes, our graphs looked like this:

Graph of 3 Temperatures and a Triangle
Graph of 3 Temperatures

Wrap Up

Looking Around the System

If you are curious about how things work, there are lots of things to study and learn. The software is all quite readable (it's Ruby), so you can see exactly what it does. If you are looking for more of a "shallow dive", take a look at the config/apps.rb file. It's got some interesting configuration values which control how graphing gets done.

Restarting from Scratch

Want to toss out all your graphing data and start again? You'll need to get a fresh database and configuration. Both your configuration and your data live in the "database" directory at the top of your graphing directory. The database is in a file called database.rrd. The configuration is in a file called configuration.json.

If you want to get rid of your graph data, stop the graphing software (a control-c at the command line usually does the trick) and delete the database.rrd file. Then restart the graphing software, and it will create a clean new database.

If you want to get rid of your configuration, stop the graphing software and delete the configuration.json file. When you restart the graphing software, it will create a new default configuration file.

Changing the Default Port

By default, the graphing program web server uses port 4568. If you want your graphs to appear at a different port, use the -p option. So if you wanted your graphs to appear at port 5678, run the program like this:

./run_grapher.rb -p 5678

Upgrading Your Graphing Software

From time to time, we will improve the graphing program and put the latest version into our downloads area. If you want to upgrade to the latest version and don't wish to keep your graphing and configuration data, stop the older graphing program (if you haven't already) and install and start up the newest one.

If you wish to upgrade and keep your graphing and configuration data:

  • Stop your older program
  • Install the latest version of the software
  • Copy the "database.rrd" and "configuration.json" files from you older program's "database" directory to your newer programs's "database" directory
  • Start up the new graphing software

Once the new software starts up, it checks for pre-existing database and configuration files. If it finds them, it uses them.

Catalina Computing, LLC.

Copyright © Catalina Computing, LLC. (2013-2018)




Page last updated: Tue Mar 22 19:41:32 2016 (UTC)