diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000000000000000000000000000000000000..0e931632d40af69a7572333055accd1a81fe61dc --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,46 @@ +#///////////////////////////////////////////////////////////////////////// +#// +#// (c) University of Southampton IT Innovation Centre, 2017 +#// +#// Copyright in this software belongs to University of Southampton +#// IT Innovation Centre of Gamma House, Enterprise Road, +#// Chilworth Science Park, Southampton, SO16 7NS, UK. +#// +#// This software may not be used, sold, licensed, transferred, copied +#// or reproduced in whole or in part in any manner or form or in or +#// on any media by any person other than in accordance with the terms +#// of the Licence Agreement supplied with the software, or otherwise +#// without the prior written consent of the copyright owners. +#// +#// This software is distributed WITHOUT ANY WARRANTY, without even the +#// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +#// PURPOSE, except where stated in the Licence Agreement supplied with +#// the software. +#// +#// Created By : Michael Boniface +#// Created Date : 13/12/2017 +#// Created for Project : FLAME +#// +#///////////////////////////////////////////////////////////////////////// + +Vagrant.configure("2") do |config| + config.vm.box = "ubuntu/xenial64" + + config.vm.define "influx" do |my| + my.vm.provider "virtualbox" do |v| + v.customize ["modifyvm", :id, "--memory", 2048] + v.customize ["modifyvm", :id, "--cpus", 1] + end + + # open Telegraf port + config.vm.network "forwarded_port", guest: 8086, host: 8086 + + # open Chronograf port + config.vm.network "forwarded_port", guest: 8888, host: 8888 + + # open TICK Kapacitor port + config.vm.network "forwarded_port", guest: 9092, host: 9092 + + config.vm.provision :shell, :path => 'scripts/influx/install-tick-stack-vm.sh' + end +end diff --git a/docs/image/agent-architecture.jpg b/docs/image/agent-architecture.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f2c58d1402f34c2758e4b9e1c5376213a50c149d Binary files /dev/null and b/docs/image/agent-architecture.jpg differ diff --git a/docs/image/measurement-modle.jpg b/docs/image/measurement-modle.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f4d0b3582b6b925dc44681406063c0a821414c26 Binary files /dev/null and b/docs/image/measurement-modle.jpg differ