Vagrant test environment for Monasca
Go to file
OpenDev Sysadmins 7758bb1968 OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:49:55 +00:00
ds-build Minor update to devstack build script 2015-07-13 09:21:35 -06:00
group_vars Fix can't log into Horizon 2016-02-24 17:49:04 +09:00
host_vars Fix can't log into Horizon 2016-02-24 17:49:04 +09:00
roles/monasca-devstack We will not be using ssl here so can remove this role 2014-12-11 11:30:23 -07:00
.ansible_hosts Setup the Ansible config so it works for multiple versions of Vagrant 2015-02-27 17:05:07 -07:00
.gitignore Adding in vertica 2015-05-18 20:03:26 -06:00
.gitreview OpenDev Migration Patch 2019-04-19 19:49:55 +00:00
README.rst Convert README.md to ReStructuredText format 2018-06-22 09:49:45 +02:00
Vagrantfile Adding in vertica 2015-05-18 20:03:26 -06:00
devstack.yml Fix CLI on devstack 2015-09-17 09:56:59 -06:00
env.sh Moved the smoke test to the ci repo and cleaned up old tests. 2015-06-26 16:21:36 -06:00
events.yml events pip install need sudo:yes 2015-07-31 10:50:37 -06:00
mini-mon.yml Locking pip to a version that works 2016-01-20 22:32:34 -07:00
mkdocs.yml Change repositories from stackforge to openstack 2015-11-09 11:11:25 +09:00
monasca-ansible-repos.sh Change repositories from stackforge to openstack 2015-11-09 11:11:25 +09:00
monasca-repos.sh Change repositories from stackforge to openstack 2015-11-09 11:11:25 +09:00
requirements.yml added full events deploy 2015-07-31 09:29:17 -06:00
smoke.yml Moved the smoke test to the ci repo and cleaned up old tests. 2015-06-26 16:21:36 -06:00

README.rst

Table of Contents

Installs a mini monitoring environment based on Vagrant. Intended for development of the monitoring infrastructure.

Installation

Get the Code

git clone https://github.com/openstack/monasca-vagrant

Install Vagrant

Install VirtualBox and Vagrant

Note: Vagrant version 1.5.0 or higher is required.

MacOS

The following steps assume you have Homebrew installed. Otherwise, install VirtualBox and Vagrant and Ansible as suggested on their websites.

brew tap phinze/cask
brew install brew-cask
brew cask install virtualbox
brew cask install vagrant
brew install ansible  # Version 1.8+ is required
ansible-galaxy install -r requirements.yml -p ./roles

Linux (Ubuntu)

sudo apt-get install virtualbox
#Download and install latest vagrant from http://www.vagrantup.com/downloads.html
sudo pip install ansible  # Version 1.8+ is required
ansible-galaxy install -r requirements.yml -p ./roles

Using Monasca Vagrant

Starting mini-mon

  • After installing to start just run vagrant up. The first run will download required vagrant boxes.
  • When done you can run vagrant halt to stop the boxes and later run vagrant up to turn them back on. To destroy and rebuild run vagrant destroy -f. It is typically fastest to use halt/up than to rebuild your vm.
  • Run vagrant help for more info on standard vagrant commands.

Basic Monasca usage

The full Monasca stack is running on the mini-mon vm and many devstack services on the devstack vm. A monasca-agent is installed on both and metrics are actively being collected. - You can access the horizon UI by navigating to http://192.168.10.5 and logging in as mini-mon/password. This is the UI used for devstack and it contains the Monasca plugin found at the Monitoring tab as well as Grafana used for graphing metrics. - Run vagrant ssh <host> to log in, where <host> is either mini-mon or devstack - The monasca cli is installed within both vms and the necessary environment variables loaded into the shell. This is a good way to explore the metrics in the system. For example to list all metrics, run monasca metric-list

Smoke test

At the end of the install a smoke test is run that exercises every major piece of Monasca. If this fails the end of the provision will report it. It is possible to rerun this at any point using Ansible ansible-playbook ./smoke.yml or from within the vm by running smoke.py and smoke2.py in /opt/monasca/hpcloud-mon-monasca-ci\*/tests/smoke.

Updating

When someone updates the config, this process should allow you update the VMs, though not every step is needed at all times.

  • git pull
  • ansible-galaxy install -r requirements.yml -p ./roles -f
  • vagrant box update Only needed rarely
  • vagrant provision, if the vms where halted run vagrant up first.
    • It is also possible to Ansible directly to update just parts of the system. See Ansible Development for more info.

Running behind a Web Proxy

If you are behind a proxy you can install the vagrant-proxyconf plugin to have Vagrant honor standard proxy-related environment variables and set the VM to use them also. It is important that 192.168.10.4, 192.168.10.5, 127.0.0.1 and localhost be in your no_proxy environment variable.

vagrant plugin install vagrant-proxyconf

Running with Vertica

You can configure Vagrant to run Vertica as the database in place of influxdb.

To accomplish this you have to download the community edition (Debian) and the jdbc driver from Vertica.

Place the jdbc driver and debian in the home directory of vagrant with the names of:

vertica_jdbc.jar vertica.deb

Set the environment variable USE_VERTICA to true and then run vagrant up.

export USE_VERTICA=true
vagrant up

Advanced Usage

Access information

  • Your host OS home dir is synced to /vagrant_home on the VM.
  • The root dir of the monasca-vagrant repo on your host OS is synced to /vagrant on the VM.
  • mini-mon is at 192.168.10.4 and devstack is at 192.168.10.5

Internal Endpoints

  • Influxdb web ui is available at http://192.168.10.4:8083 with root/root as user/password
  • The Monasca-api is available at http://192.168.10.4:8070
    • The keystone credentials used are mini-mon/password in the mini-mon project. The keystone services on 192.168.10.5 on standard ports.

Improving Provisioning Speed

The slowest part of the provisioning process is the downloading of packages. The Vagrant plugin vagrant-cachier available at https://github.com/fgrehm/vagrant-cachier should help by caching repeated dependencies. To use with Vagrant simply install the plugin.

sudo vagrant plugin install vagrant-cachier

Monasca Debugging

See this page for details on the Monasca Architecture.

The components of the system which are part of the Monasca code base have there configuration in /etc/monasca and their logs in /var/log/monasca. For nearly all of these you can set the logging to higher debug level and restart. The components of the system which are dependencies for Monasca (zookeeper, kafka, storm, influxdb, mysql) are either in the standard Ubuntu location or in /opt.

Some other helpful commands: - Zookeeper shell at -/usr/share/zookeeper/bin/zkCli.sh - Kafka debug commands are at /opt/kafka/bin in particular the kafka-console-consumer.sh is helpful. - Running monasca-collector info will give an report on the current state of agent checks. - The storm admin webui exists at http://192.168.10.4:8088 - The mysql admin is root/password so you can access the db with the command mysql -uroot -ppassword mon

Ansible Development

Running Ansible directly

At any point you can rerun vagrant provision to rerun the Ansible provisioning. Often it is easier to run ansible directly and specify tags, ie ansible-playbook mini-mon.yml --tags api,persister. Also a very simple playbook is available for running the smoke test, ansible-playbook ./smoke.yml

For these to work smoothly add these vagrant specific settings to your local ansible configuration (~/.ansible.cfg or a personal ansible.cfg in this dir):

[defaults]
hostfile = .ansible_hosts

# In some configurations this won't work, use only if your config permits.
[ssh_connection]
pipelining = True  # Speeds up connections but only if requiretty is not enabled for sudo

Next run vagrant ssh-config >> ~/.ssh/config, that will set the correct users/host_keys for the vagrant vms.

When running Ansible directly make sure that you pass in what the database_type is, ie ansible-playbook mini-mon.yml -e 'database_type=influxdb'.

Editing Ansible Configuration

Since there are only two VMs in this setup the Ansible configuration has no host or group variables, rather all variables are in the playbook. There is one playbook for each machine, mini-mon.yml and devstack.yml. The playbooks contain all variables, some tasks and the roles used in building the VMs.

To edit the Ansible roles I suggest downloading the full git source of the role and putting it in your ansible path. This allows you to run your changes directly from the git copy you are working on. See the Ansible docs for more details on the exact configuration needed.

Developing Monasca

In this repo there are a couple of helper scripts to aid in downloading all of the Monasca git repositories. -./monasca-repos.sh <parent_dir> will clone all code repos to the parent dir - ./monasca-ansible-repos.sh <parent_dir> will clone all code repos to the parent dir -./monasca-ansible-repos.sh <parent_dir> will clone all of the team Ansible repos to the parent dir.

Alternate Vagrant Configurations

To run any of these alternate configs, simply run the Vagrant commands from within the subdir.