Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • lennart.thiesen/de.ugoe.cs.rwm.mocci
  • rwm/de.ugoe.cs.rwm.mocci
2 results
Show changes
Showing
with 197 additions and 76 deletions
---
- hosts: localhost
remote_user: root
roles:
- vcsshark
---
# vars file for vcsshark
projectrepo: https://github.com/openintents/safe.git
#https://github.com/checkstyle/checkstyle.git
projectname: safe
#checkstyle
mongodb: vcsshark
mongolocation: localhost
tempdirpath: ~/temp
revision: f582d1017be3a2df16ca64fce38a97416a6cbad7
---
# defaults file for pip
---
# handlers file for pip
- block:
- name: enable ubuntu group
group: name=ubuntu state=present
- name: enable ubuntu user
user: name=ubuntu state=present shell=/bin/bash
- name: Installing required packages
apt: pkg=python3-pip state=installed force=yes
become_user: root
- name: Installing required packages
apt: pkg=python3-cffi state=installed force=yes
become_user: root
- name: Installing required packages
apt: pkg=git state=installed force=yes
become_user: root
- name: Installing required packages
apt: pkg=openjdk-8-jre-headless state=installed
become_user: root
- name: Creating memeshark folder
file: path=~/memeshark state=directory
- name: Clone memeSHARK repository
git:
repo: 'https://github.com/smartshark/memeSHARK.git'
dest: ~/memeshark
clone: yes
update: no
- name: Pip install memeSHARK
shell: pip3 install https://github.com/smartshark/memeSHARK/zipball/master --process-dependency-links
when: task == "DEPLOY"
remote_user: "ubuntu"
become_user: ubuntu
- block:
- name: Configure memeSHARK
shell: echo "Configure"
when: task == "CONFIGURE"
remote_user: ubuntu
become_user: "ubuntu"
- block:
- name: Test mecoSHARK
shell: echo "python3.6 ~/memeshark/main.py"
when: task == "START"
remote_user: ubuntu
become_user: "ubuntu"
---
# vars file for pip
---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defaults]\nroles_path=../' >ansible.cfg
script:
# Basic role syntax check
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
\ No newline at end of file
---
# defaults file for java
#! /bin/bash
avgMem=0
slept=0
sequence=3
times=3
send=$(python -c "print $sequence*$times")
url=http://$1:61208/api/2/mem/percent
if [ -f ~/memmonitor.txt ]; then
echo "Removing previous monitoring data"
rm monitor.txt
fi
echo "Starting monitoring script"
echo "Requesting $url every $sequence seconds aggregating after $times times!"
while true; do
mem=$(curl -s $url | awk '{print $2}')
cutmem=$(echo "$mem" | rev | cut -c 2- | rev)
sumMem=$(python -c "print $sumMem+$cutmem")
echo "Current Mem: $cutmem"
sleep $sequence
slept=$(($slept+$sequence))
if [ "$slept" = $send ]; then
mid=$(python -c "print $sumMem/$times")
echo "Aggregate Mem: $mid"
echo $mid >> ~/memmonitor.txt
slept=0
sumMem=0
fi
done
---
# handlers file for java
- name: Deploy CPUProcessor
block:
- name: Upload MemProcessor Script
copy:
src: memprocessor.sh
dest: /home/ubuntu/memprocessor.sh
when: task == "DEPLOY"
become_user: root
- name: Configure MemProcessor
block:
- name: Make script executable
file:
path: /home/ubuntu/memprocessor.sh
mode: 0777
when: task == "CONFIGURE"
become_user: root
- name: Start MemProcessor
block:
- name: Execute processor script
command: start-stop-daemon --start --startas /home/ubuntu/memprocessor.sh 100.254.1.35 -m --pidfile /run/memprocessor.pid -b
when: task == "START"
become_user: root
- name: Stop MemProcessor
block:
- name: Stop processor script
command: start-stop-daemon --stop -m --pidfile /run/memprocessor.pid
when: task == "STOP"
become_user: root
- name: Undeploy MemProcessor
block:
- debug: msg="Operation undeploy not implemented."
when: task == "UNDEPLOY"
become_user: root
......@@ -2,4 +2,4 @@
- hosts: localhost
remote_user: root
roles:
- pip
\ No newline at end of file
- java
\ No newline at end of file
---
# vars file for java
---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defaults]\nroles_path=../' >ansible.cfg
script:
# Basic role syntax check
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
\ No newline at end of file
---
# defaults file for java
#! /bin/bash
endpoint=$1
propresource=$2
propname=$3
sensor=$4
propid=$5
thresholdCrit=90
thresholdHigh=60
thresholdMid=40
thresholdLow=10
monfile=~/memmonitor.txt
sequence=3
echo "Endpoint: $endpoint"
echo "Resource: $propresource"
echo "Name: $propname"
if [! -f "$monfile" ]; then
echo "Did not find file for monitoring: $monfile"
sleep 10
fi
if [! -f "$monfile" ]; then
echo "Did not find file for monitoring: $monfile"
sleep 10
fi
echo "Starting publishing script"
echo "Checking $monfile every $sequence seconds with threshold of $threshold!"
while true; do
val=$(tail -1 $monfile)
echo "$val"
if [ $(echo "$val > $thresholdCrit" | bc ) = 1 ]; then
state=CriticalMem
elif [ $(echo "$val > $thresholdHigh" | bc ) = 1 ]; then
state=HighMem
elif [ $(echo "$val > $thresholdMid" | bc ) = 1 ]; then
state=MidMem
elif [ $(echo "$val > $thresholdLow" | bc ) = 1 ]; then
state=LowMem
else
state=NoneMem
fi
if [ "$oldstate" = "$state" ]; then
echo "Nothing changed! Still in state $state"
else
echo "New state reached: $state"
echo "Publishing new results"
curl -v -X PUT http://"$endpoint""$propid" -H 'Content-Type: text/occi' -H 'Category: monitorableproperty; scheme="http://schemas.ugoe.cs.rwm/monitoring#"; class="kind"' -H 'X-OCCI-Attribute:occi.core.source="'$sensor'",occi.core.target="'$propresource'", occi.core.title="monProp", monitoring.result="'$state'", monitoring.property="'$propname'"'
oldstate=$state
fi
sleep $sequence
done