├── .gitignore ├── .jshintrc ├── .tm_properties ├── README.md ├── config ├── default.yml └── test.yml ├── gruntfile.js ├── lib ├── aggregate.js ├── configinfo.js ├── hostgraph.js ├── hostinfo.js ├── loadinfo.js ├── memoryinfo.js ├── networkinfo.js ├── rrdhelpers.js └── storageinfo.js ├── package.json ├── server.js ├── test ├── aggregate-test.js ├── hostgraph-test.js ├── hostinfo-test.js ├── loadinfo-test.js ├── memoryinfo-test.js ├── networkinfo-test.js ├── rddhelpers-test.js └── storageinfo-test.js ├── testdata ├── host-1.example.com │ ├── cpu-0 │ │ ├── cpu-idle.rrd │ │ ├── cpu-interrupt.rrd │ │ ├── cpu-nice.rrd │ │ ├── cpu-softirq.rrd │ │ ├── cpu-steal.rrd │ │ ├── cpu-system.rrd │ │ ├── cpu-user.rrd │ │ └── cpu-wait.rrd │ ├── df │ │ ├── df-boot.rrd │ │ ├── df-root.rrd │ │ └── df-var-lib-nova-instances.rrd │ ├── disk-md0 │ │ ├── disk_merged.rrd │ │ ├── disk_octets.rrd │ │ └── disk_ops.rrd │ ├── disk-md2 │ │ ├── disk_merged.rrd │ │ ├── disk_octets.rrd │ │ └── disk_ops.rrd │ ├── entropy │ │ └── entropy.rrd │ ├── interface │ │ ├── if_errors-vlan11.rrd │ │ ├── if_octets-vlan11.rrd │ │ └── if_packets-vlan11.rrd │ ├── load │ │ └── load.rrd │ ├── memory │ │ ├── memory-buffered.rrd │ │ ├── memory-cached.rrd │ │ ├── memory-free.rrd │ │ └── memory-used.rrd │ ├── processes │ │ ├── fork_rate.rrd │ │ ├── ps_state-blocked.rrd │ │ ├── ps_state-paging.rrd │ │ ├── ps_state-running.rrd │ │ ├── ps_state-sleeping.rrd │ │ ├── ps_state-stopped.rrd │ │ └── ps_state-zombies.rrd │ └── swap │ │ ├── swap-cached.rrd │ │ ├── swap-free.rrd │ │ ├── swap-used.rrd │ │ ├── swap_io-in.rrd │ │ └── swap_io-out.rrd ├── host-2.example.com │ ├── cpu-0 │ │ ├── cpu-idle.rrd │ │ ├── cpu-interrupt.rrd │ │ ├── cpu-nice.rrd │ │ ├── cpu-softirq.rrd │ │ ├── cpu-steal.rrd │ │ ├── cpu-system.rrd │ │ ├── cpu-user.rrd │ │ └── cpu-wait.rrd │ ├── df │ │ ├── df-boot.rrd │ │ ├── df-root.rrd │ │ └── df-var-lib-nova-instances.rrd │ ├── disk-md0 │ │ ├── disk_merged.rrd │ │ ├── disk_octets.rrd │ │ └── disk_ops.rrd │ ├── disk-md2 │ │ ├── disk_merged.rrd │ │ ├── disk_octets.rrd │ │ └── disk_ops.rrd │ ├── entropy │ │ └── entropy.rrd │ ├── interface │ │ ├── if_errors-vlan11.rrd │ │ ├── if_octets-vlan11.rrd │ │ └── if_packets-vlan11.rrd │ ├── load │ │ └── load.rrd │ ├── memory │ │ ├── memory-buffered.rrd │ │ ├── memory-cached.rrd │ │ ├── memory-free.rrd │ │ └── memory-used.rrd │ ├── processes │ │ ├── fork_rate.rrd │ │ ├── ps_state-blocked.rrd │ │ ├── ps_state-paging.rrd │ │ ├── ps_state-running.rrd │ │ ├── ps_state-sleeping.rrd │ │ ├── ps_state-stopped.rrd │ │ └── ps_state-zombies.rrd │ └── swap │ │ ├── swap-cached.rrd │ │ ├── swap-free.rrd │ │ ├── swap-used.rrd │ │ ├── swap_io-in.rrd │ │ └── swap_io-out.rrd ├── load.rrd ├── localhost │ ├── cpu-0 │ │ ├── cpu-idle.rrd │ │ ├── cpu-interrupt.rrd │ │ ├── cpu-nice.rrd │ │ ├── cpu-softirq.rrd │ │ ├── cpu-steal.rrd │ │ ├── cpu-system.rrd │ │ ├── cpu-user.rrd │ │ └── cpu-wait.rrd │ ├── cpu-1 │ │ ├── cpu-idle.rrd │ │ ├── cpu-interrupt.rrd │ │ ├── cpu-nice.rrd │ │ ├── cpu-softirq.rrd │ │ ├── cpu-steal.rrd │ │ ├── cpu-system.rrd │ │ ├── cpu-user.rrd │ │ └── cpu-wait.rrd │ ├── df │ │ ├── df-boot.rrd │ │ ├── df-root.rrd │ │ └── df-var-lib-nova-instances.rrd │ ├── disk-md0 │ │ ├── disk_merged.rrd │ │ ├── disk_octets.rrd │ │ └── disk_ops.rrd │ ├── disk-md2 │ │ ├── disk_merged.rrd │ │ ├── disk_octets.rrd │ │ └── disk_ops.rrd │ ├── entropy │ │ └── entropy.rrd │ ├── interface │ │ ├── if_errors-vlan11.rrd │ │ ├── if_octets-vlan11.rrd │ │ └── if_packets-vlan11.rrd │ ├── load │ │ └── load.rrd │ ├── memory │ │ ├── memory-buffered.rrd │ │ ├── memory-cached.rrd │ │ ├── memory-free.rrd │ │ └── memory-used.rrd │ ├── processes │ │ ├── fork_rate.rrd │ │ ├── ps_state-blocked.rrd │ │ ├── ps_state-paging.rrd │ │ ├── ps_state-running.rrd │ │ ├── ps_state-sleeping.rrd │ │ ├── ps_state-stopped.rrd │ │ └── ps_state-zombies.rrd │ └── swap │ │ ├── swap-cached.rrd │ │ ├── swap-free.rrd │ │ ├── swap-used.rrd │ │ ├── swap_io-in.rrd │ │ └── swap_io-out.rrd ├── output.txt ├── readme.txt └── rrd │ ├── fillup.sh │ ├── speed.png │ └── test.rrd └── web ├── .jshintrc ├── .tm_properties ├── apps ├── dashboard.html ├── dashboard.js ├── details.html ├── details.js ├── helpers.js ├── legend.html ├── legend.js ├── logger.html ├── logger.js ├── tooltip.html └── tooltip.js ├── css └── .gitkeep ├── directives ├── barchart.js ├── donut.js ├── heatmap.js ├── speedometer.js └── timeseries.js ├── img ├── trend1.png ├── trend2.png ├── trend3.png └── trend4.png ├── index.html ├── less ├── dashboard.less ├── details.less ├── logger.less └── style.less ├── lib ├── angular │ ├── angular-cookies.js │ ├── angular-cookies.min.js │ ├── angular-loader.js │ ├── angular-loader.min.js │ ├── angular-resource.js │ ├── angular-resource.min.js │ ├── angular-sanitize.js │ ├── angular-sanitize.min.js │ ├── angular.js │ ├── angular.min.js │ └── version.txt ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── d3.v3 │ ├── LICENSE │ ├── d3.v3.js │ └── d3.v3.min.js ├── font-awesome │ ├── README.md │ ├── css │ │ ├── font-awesome-ie7.min.css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff └── jquery │ ├── jquery-1.8.3.min.js │ ├── jquery-1.8.3.min.js alias │ ├── jquery-1.9.1.js │ ├── jquery-1.9.1.min.js │ └── jquery.js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/.jshintrc -------------------------------------------------------------------------------- /.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/.tm_properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/README.md -------------------------------------------------------------------------------- /config/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/config/default.yml -------------------------------------------------------------------------------- /config/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/config/test.yml -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/gruntfile.js -------------------------------------------------------------------------------- /lib/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/aggregate.js -------------------------------------------------------------------------------- /lib/configinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/configinfo.js -------------------------------------------------------------------------------- /lib/hostgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/hostgraph.js -------------------------------------------------------------------------------- /lib/hostinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/hostinfo.js -------------------------------------------------------------------------------- /lib/loadinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/loadinfo.js -------------------------------------------------------------------------------- /lib/memoryinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/memoryinfo.js -------------------------------------------------------------------------------- /lib/networkinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/networkinfo.js -------------------------------------------------------------------------------- /lib/rrdhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/rrdhelpers.js -------------------------------------------------------------------------------- /lib/storageinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/lib/storageinfo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/server.js -------------------------------------------------------------------------------- /test/aggregate-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/aggregate-test.js -------------------------------------------------------------------------------- /test/hostgraph-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/hostgraph-test.js -------------------------------------------------------------------------------- /test/hostinfo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/hostinfo-test.js -------------------------------------------------------------------------------- /test/loadinfo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/loadinfo-test.js -------------------------------------------------------------------------------- /test/memoryinfo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/memoryinfo-test.js -------------------------------------------------------------------------------- /test/networkinfo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/networkinfo-test.js -------------------------------------------------------------------------------- /test/rddhelpers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/rddhelpers-test.js -------------------------------------------------------------------------------- /test/storageinfo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/test/storageinfo-test.js -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-idle.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-idle.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-interrupt.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-interrupt.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-nice.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-nice.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-softirq.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-softirq.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-steal.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-steal.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-system.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-system.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-user.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-user.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/cpu-0/cpu-wait.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/cpu-0/cpu-wait.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/df/df-boot.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/df/df-boot.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/df/df-root.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/df/df-root.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/df/df-var-lib-nova-instances.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/df/df-var-lib-nova-instances.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/disk-md0/disk_merged.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/disk-md0/disk_merged.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/disk-md0/disk_octets.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/disk-md0/disk_octets.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/disk-md0/disk_ops.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/disk-md0/disk_ops.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/disk-md2/disk_merged.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/disk-md2/disk_merged.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/disk-md2/disk_octets.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/disk-md2/disk_octets.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/disk-md2/disk_ops.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/disk-md2/disk_ops.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/entropy/entropy.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/entropy/entropy.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/interface/if_errors-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/interface/if_errors-vlan11.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/interface/if_octets-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/interface/if_octets-vlan11.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/interface/if_packets-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/interface/if_packets-vlan11.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/load/load.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/load/load.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/memory/memory-buffered.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/memory/memory-buffered.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/memory/memory-cached.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/memory/memory-cached.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/memory/memory-free.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/memory/memory-free.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/memory/memory-used.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/memory/memory-used.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/fork_rate.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/fork_rate.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/ps_state-blocked.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/ps_state-blocked.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/ps_state-paging.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/ps_state-paging.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/ps_state-running.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/ps_state-running.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/ps_state-sleeping.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/ps_state-sleeping.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/ps_state-stopped.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/ps_state-stopped.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/processes/ps_state-zombies.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/processes/ps_state-zombies.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/swap/swap-cached.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/swap/swap-cached.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/swap/swap-free.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/swap/swap-free.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/swap/swap-used.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/swap/swap-used.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/swap/swap_io-in.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/swap/swap_io-in.rrd -------------------------------------------------------------------------------- /testdata/host-1.example.com/swap/swap_io-out.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-1.example.com/swap/swap_io-out.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-idle.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-idle.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-interrupt.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-interrupt.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-nice.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-nice.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-softirq.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-softirq.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-steal.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-steal.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-system.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-system.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-user.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-user.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/cpu-0/cpu-wait.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/cpu-0/cpu-wait.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/df/df-boot.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/df/df-boot.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/df/df-root.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/df/df-root.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/df/df-var-lib-nova-instances.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/df/df-var-lib-nova-instances.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/disk-md0/disk_merged.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/disk-md0/disk_merged.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/disk-md0/disk_octets.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/disk-md0/disk_octets.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/disk-md0/disk_ops.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/disk-md0/disk_ops.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/disk-md2/disk_merged.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/disk-md2/disk_merged.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/disk-md2/disk_octets.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/disk-md2/disk_octets.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/disk-md2/disk_ops.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/disk-md2/disk_ops.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/entropy/entropy.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/entropy/entropy.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/interface/if_errors-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/interface/if_errors-vlan11.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/interface/if_octets-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/interface/if_octets-vlan11.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/interface/if_packets-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/interface/if_packets-vlan11.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/load/load.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/load/load.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/memory/memory-buffered.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/memory/memory-buffered.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/memory/memory-cached.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/memory/memory-cached.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/memory/memory-free.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/memory/memory-free.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/memory/memory-used.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/memory/memory-used.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/fork_rate.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/fork_rate.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/ps_state-blocked.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/ps_state-blocked.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/ps_state-paging.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/ps_state-paging.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/ps_state-running.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/ps_state-running.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/ps_state-sleeping.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/ps_state-sleeping.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/ps_state-stopped.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/ps_state-stopped.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/processes/ps_state-zombies.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/processes/ps_state-zombies.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/swap/swap-cached.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/swap/swap-cached.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/swap/swap-free.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/swap/swap-free.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/swap/swap-used.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/swap/swap-used.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/swap/swap_io-in.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/swap/swap_io-in.rrd -------------------------------------------------------------------------------- /testdata/host-2.example.com/swap/swap_io-out.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/host-2.example.com/swap/swap_io-out.rrd -------------------------------------------------------------------------------- /testdata/load.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/load.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-idle.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-idle.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-interrupt.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-interrupt.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-nice.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-nice.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-softirq.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-softirq.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-steal.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-steal.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-system.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-system.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-user.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-user.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-0/cpu-wait.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-0/cpu-wait.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-idle.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-idle.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-interrupt.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-interrupt.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-nice.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-nice.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-softirq.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-softirq.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-steal.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-steal.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-system.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-system.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-user.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-user.rrd -------------------------------------------------------------------------------- /testdata/localhost/cpu-1/cpu-wait.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/cpu-1/cpu-wait.rrd -------------------------------------------------------------------------------- /testdata/localhost/df/df-boot.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/df/df-boot.rrd -------------------------------------------------------------------------------- /testdata/localhost/df/df-root.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/df/df-root.rrd -------------------------------------------------------------------------------- /testdata/localhost/df/df-var-lib-nova-instances.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/df/df-var-lib-nova-instances.rrd -------------------------------------------------------------------------------- /testdata/localhost/disk-md0/disk_merged.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/disk-md0/disk_merged.rrd -------------------------------------------------------------------------------- /testdata/localhost/disk-md0/disk_octets.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/disk-md0/disk_octets.rrd -------------------------------------------------------------------------------- /testdata/localhost/disk-md0/disk_ops.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/disk-md0/disk_ops.rrd -------------------------------------------------------------------------------- /testdata/localhost/disk-md2/disk_merged.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/disk-md2/disk_merged.rrd -------------------------------------------------------------------------------- /testdata/localhost/disk-md2/disk_octets.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/disk-md2/disk_octets.rrd -------------------------------------------------------------------------------- /testdata/localhost/disk-md2/disk_ops.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/disk-md2/disk_ops.rrd -------------------------------------------------------------------------------- /testdata/localhost/entropy/entropy.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/entropy/entropy.rrd -------------------------------------------------------------------------------- /testdata/localhost/interface/if_errors-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/interface/if_errors-vlan11.rrd -------------------------------------------------------------------------------- /testdata/localhost/interface/if_octets-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/interface/if_octets-vlan11.rrd -------------------------------------------------------------------------------- /testdata/localhost/interface/if_packets-vlan11.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/interface/if_packets-vlan11.rrd -------------------------------------------------------------------------------- /testdata/localhost/load/load.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/load/load.rrd -------------------------------------------------------------------------------- /testdata/localhost/memory/memory-buffered.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/memory/memory-buffered.rrd -------------------------------------------------------------------------------- /testdata/localhost/memory/memory-cached.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/memory/memory-cached.rrd -------------------------------------------------------------------------------- /testdata/localhost/memory/memory-free.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/memory/memory-free.rrd -------------------------------------------------------------------------------- /testdata/localhost/memory/memory-used.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/memory/memory-used.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/fork_rate.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/fork_rate.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/ps_state-blocked.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/ps_state-blocked.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/ps_state-paging.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/ps_state-paging.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/ps_state-running.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/ps_state-running.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/ps_state-sleeping.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/ps_state-sleeping.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/ps_state-stopped.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/ps_state-stopped.rrd -------------------------------------------------------------------------------- /testdata/localhost/processes/ps_state-zombies.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/processes/ps_state-zombies.rrd -------------------------------------------------------------------------------- /testdata/localhost/swap/swap-cached.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/swap/swap-cached.rrd -------------------------------------------------------------------------------- /testdata/localhost/swap/swap-free.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/swap/swap-free.rrd -------------------------------------------------------------------------------- /testdata/localhost/swap/swap-used.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/swap/swap-used.rrd -------------------------------------------------------------------------------- /testdata/localhost/swap/swap_io-in.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/swap/swap_io-in.rrd -------------------------------------------------------------------------------- /testdata/localhost/swap/swap_io-out.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/localhost/swap/swap_io-out.rrd -------------------------------------------------------------------------------- /testdata/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/output.txt -------------------------------------------------------------------------------- /testdata/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/readme.txt -------------------------------------------------------------------------------- /testdata/rrd/fillup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/rrd/fillup.sh -------------------------------------------------------------------------------- /testdata/rrd/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/rrd/speed.png -------------------------------------------------------------------------------- /testdata/rrd/test.rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/testdata/rrd/test.rrd -------------------------------------------------------------------------------- /web/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/.jshintrc -------------------------------------------------------------------------------- /web/.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/.tm_properties -------------------------------------------------------------------------------- /web/apps/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/dashboard.html -------------------------------------------------------------------------------- /web/apps/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/dashboard.js -------------------------------------------------------------------------------- /web/apps/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/details.html -------------------------------------------------------------------------------- /web/apps/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/details.js -------------------------------------------------------------------------------- /web/apps/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/helpers.js -------------------------------------------------------------------------------- /web/apps/legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/legend.html -------------------------------------------------------------------------------- /web/apps/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/legend.js -------------------------------------------------------------------------------- /web/apps/logger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/logger.html -------------------------------------------------------------------------------- /web/apps/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/logger.js -------------------------------------------------------------------------------- /web/apps/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/tooltip.html -------------------------------------------------------------------------------- /web/apps/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/apps/tooltip.js -------------------------------------------------------------------------------- /web/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/directives/barchart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/directives/barchart.js -------------------------------------------------------------------------------- /web/directives/donut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/directives/donut.js -------------------------------------------------------------------------------- /web/directives/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/directives/heatmap.js -------------------------------------------------------------------------------- /web/directives/speedometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/directives/speedometer.js -------------------------------------------------------------------------------- /web/directives/timeseries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/directives/timeseries.js -------------------------------------------------------------------------------- /web/img/trend1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/img/trend1.png -------------------------------------------------------------------------------- /web/img/trend2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/img/trend2.png -------------------------------------------------------------------------------- /web/img/trend3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/img/trend3.png -------------------------------------------------------------------------------- /web/img/trend4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/img/trend4.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/index.html -------------------------------------------------------------------------------- /web/less/dashboard.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/less/dashboard.less -------------------------------------------------------------------------------- /web/less/details.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/less/details.less -------------------------------------------------------------------------------- /web/less/logger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/less/logger.less -------------------------------------------------------------------------------- /web/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/less/style.less -------------------------------------------------------------------------------- /web/lib/angular/angular-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-cookies.js -------------------------------------------------------------------------------- /web/lib/angular/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-cookies.min.js -------------------------------------------------------------------------------- /web/lib/angular/angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-loader.js -------------------------------------------------------------------------------- /web/lib/angular/angular-loader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-loader.min.js -------------------------------------------------------------------------------- /web/lib/angular/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-resource.js -------------------------------------------------------------------------------- /web/lib/angular/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-resource.min.js -------------------------------------------------------------------------------- /web/lib/angular/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-sanitize.js -------------------------------------------------------------------------------- /web/lib/angular/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular-sanitize.min.js -------------------------------------------------------------------------------- /web/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular.js -------------------------------------------------------------------------------- /web/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/angular/angular.min.js -------------------------------------------------------------------------------- /web/lib/angular/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.2 2 | -------------------------------------------------------------------------------- /web/lib/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /web/lib/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /web/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /web/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/lib/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /web/lib/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /web/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /web/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/lib/d3.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/d3.v3/LICENSE -------------------------------------------------------------------------------- /web/lib/d3.v3/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/d3.v3/d3.v3.js -------------------------------------------------------------------------------- /web/lib/d3.v3/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/d3.v3/d3.v3.min.js -------------------------------------------------------------------------------- /web/lib/font-awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/README.md -------------------------------------------------------------------------------- /web/lib/font-awesome/css/font-awesome-ie7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/css/font-awesome-ie7.min.css -------------------------------------------------------------------------------- /web/lib/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /web/lib/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /web/lib/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /web/lib/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web/lib/font-awesome/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /web/lib/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web/lib/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web/lib/jquery/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/jquery/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /web/lib/jquery/jquery-1.8.3.min.js alias: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/lib/jquery/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/jquery/jquery-1.9.1.js -------------------------------------------------------------------------------- /web/lib/jquery/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/jquery/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /web/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/lib/jquery/jquery.js -------------------------------------------------------------------------------- /web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StorminStanley/collectd3/HEAD/web/main.js --------------------------------------------------------------------------------