-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
345 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,345 @@ | ||
#!/bin/sh | ||
|
||
# VARIABLES | ||
|
||
|
||
#HOSTNAME='' | ||
API=' ' # http://localhost/api_jsonrpc.php | ||
|
||
# CONSTANT VARIABLES | ||
ZABBIX_USER='' | ||
ZABBIX_PASS='' | ||
|
||
HOSTGROUP=$2 | ||
HOSTN=$3 | ||
NOMEITEM=$4 | ||
|
||
authenticate() | ||
{ | ||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"user.login\", | ||
\"params\": { | ||
\"user\": \"$ZABBIX_USER\", | ||
\"password\": \"$ZABBIX_PASS\"}, | ||
\"id\": 0}" | cut -d'"' -f8 | ||
} | ||
AUTH_TOKEN=$(authenticate) | ||
|
||
|
||
get_hostgroups() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"hostgroup.get\", | ||
\"params\": { | ||
\"output\": \"extend\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS=',"' -F: '/^name/ {print $2}' | sed 's/\"//g' | ||
} | ||
#echo "Todos os Grupos" | ||
#get_hostgroups; | ||
|
||
get_hostgroups_id() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"hostgroup.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"filter\": { | ||
\"name\" : [ \"$HOSTGROUP\" ] | ||
} | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS='{"' -F: '/^groupid/ {print $2}' | awk -F\" '{print $2}' | ||
} | ||
#echo "Group ID de $1" | ||
#get_hostgroups_id; | ||
|
||
GRPID=$(get_hostgroups_id) | ||
|
||
get_hosts_hostgroups() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"host.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"groupids\" : \"$GRPID\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS=',"' -F: '/^host/ {print $2}' | ||
} | ||
#echo "Hosts do Grupo $1" | ||
#get_hosts_hostgroups; | ||
|
||
get_host_id() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"host.get\", | ||
\"params\": { | ||
\"output\": [ | ||
\"hostid\" | ||
], | ||
\"filter\": { | ||
\"host\" : [ \"$HOSTN\" ] | ||
} | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS='{"' -F: '/^hostid/ {print $2}' | awk -F\" '{print $2}' | ||
} | ||
#echo "HostID de $2" | ||
#get_host_id; | ||
HOSTID=$(get_host_id); | ||
|
||
get_items_hosts() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"item.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"hostids\" : \"$HOSTID\", | ||
\"with_triggers\" : \"1\", | ||
\"selectTriggers\" : \"extend\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS=',"' -F: '/^name/ {print $2}' | ||
} | ||
#echo "Todos os Items com Trigger de $2" | ||
#get_items_hosts; | ||
|
||
|
||
get_item_triggerid() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"item.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"hostids\" : \"$HOSTID\", | ||
\"with_triggers\" : \"1\", | ||
\"selectTriggers\" : \"extend\", | ||
\"filter\" : { | ||
\"name\": [ \"$NOMEITEM\" ] } | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS='{"' -F: '/^triggerid/ {print $2}' | awk -F\" '{print $2}' | ||
} | ||
#get_item_triggerid; | ||
ITEM_TRIGID=$(get_item_triggerid) | ||
|
||
get_triggers_hosts() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"trigger.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"hostids\" : \"$HOSTID\", | ||
\"expandComment\" : \"1\", | ||
\"expandDescription\" : \"1\", | ||
\"expandExpression\" : \"1\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | awk -v RS=',"' -F: '/^description/ {print $2}' | ||
} | ||
#echo "Todos as triggers do host $2" | ||
#get_triggers_hosts; | ||
|
||
mk_father_itservices() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.create\", | ||
\"params\": { | ||
\"name\" : \"$HOSTGROUP\", | ||
\"algorithm\" : \"1\", | ||
\"showsla\" : \"1\", | ||
\"goodsla\" : \"99.99\", | ||
\"sortorder\" : \"1\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" #| awk -v RS=',"' -F: '/^name/ {print $2}' | ||
} | ||
#echo "Criando Pai: $1" | ||
#mk_father_itservices; | ||
|
||
get_itservices() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"selectParent\" : \"extend\", | ||
\"selectTrigger\": \"extend\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | ||
} | ||
#get_itservices; | ||
|
||
get_its_pid() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"selectParent\" : \"extend\", | ||
\"selectTrigger\": \"extend\", | ||
\"expandExpression\" : \"1\", | ||
\"filter\" : { | ||
\"name\" : [ \"$HOSTGROUP\" ] } | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | ||
} | ||
#get_its_pid; | ||
ITS_PID=$(get_its_pid | awk -v RS='{"' -F: '/^serviceid/ {print $2}' | awk -F\" '{print $2}' | head -n 1) | ||
|
||
mk_child_itservices() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.create\", | ||
\"params\": { | ||
\"name\" : \"$HOSTN\", | ||
\"algorithm\" : \"1\", | ||
\"showsla\" : \"1\", | ||
\"goodsla\" : \"99.99\", | ||
\"sortorder\" : \"1\", | ||
\"parentid\": \"$ITS_PID\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" #| awk -v RS=',"' -F: '/^name/ {print $2}' | ||
} | ||
#echo "Criando Filho $2 de Pai $1" | ||
#mk_child_itservices; | ||
|
||
get_its_pid_child() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.get\", | ||
\"params\": { | ||
\"output\": \"extend\", | ||
\"selectParent\" : \"extend\", | ||
\"selectTrigger\": \"extend\", | ||
\"expandExpression\" : \"1\", | ||
\"filter\" : { | ||
\"name\" : [ \"$HOSTN\" ] } | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" | ||
} | ||
#get_its_pid; | ||
ITS_PID_CHILD=$(get_its_pid_child | awk -v RS='{"' -F: '/^serviceid/ {print $2}' | awk -F\" '{print $2}' | head -n 1) | ||
|
||
|
||
mk_child_its_trigger() { | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.create\", | ||
\"params\": { | ||
\"name\" : \"$NOMEITEM\", | ||
\"algorithm\" : \"1\", | ||
\"showsla\" : \"1\", | ||
\"goodsla\" : \"99.99\", | ||
\"sortorder\" : \"1\", | ||
\"parentid\": \"$ITS_PID_CHILD\", | ||
\"triggerid\": \"$ITEM_TRIGID\" | ||
}, | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1}" #| awk -v RS=',"' -F: '/^name/ {print $2}' | ||
} | ||
#mk_child_its_trigger; | ||
|
||
mk_populate() { | ||
# Inicio do Laço Populate | ||
for HOSTGROUP in `get_hostgroups` | ||
do | ||
echo 1 | ||
mk_father_itservices; | ||
#echo `get_hosts_hostgroups "$HOSTGROUP" ` | ||
echo 2 | ||
filho=$(get_hosts_hostgroups "$HOSTGROUP") | ||
for HOSTN in `echo "$filho"` | ||
do | ||
echo 3 | ||
cria_filho=$(mk_child_itservices "$HOSTGROUP" "$HOSTN") | ||
`$cria_filho` | ||
echo 4 | ||
done | ||
done | ||
} | ||
|
||
help() { | ||
echo "****************************************************" | ||
echo "" | ||
echo " all_groups(get_hostgroups) - pega todos os grupos de hosts" | ||
echo " all_host_per_groups(get_hosts_hostgroups) - pega todos os hosts de um grupo - \$2 (nome do grupo)" | ||
echo " all_items_per_host(get_items_hosts) - pega todos os items com trigger de um host - \$2(nome do grupo) \$3(nome do host)" | ||
echo " all_triggers_per_host(get_triggers_hosts) - pega todas as triggers de um host - \$2(nome do grupo) \$3(nome do host)" | ||
echo "" | ||
echo " cria_pai(mk_father_itservices) - criar pai \$2(nome do grupo)" | ||
echo " cria_filho(mk_child_itservices) - criar filho \$2(nome do grupo) \$3(nome do filho)" | ||
echo " cria_item(mk_child_its_trigger) - criar item com trigger - \$2(nome do grupo) \$3(nome do filho) \$4(nome do item)" | ||
echo "" | ||
echo " populate(mk_populate) - criar ITservices de forma automatica" | ||
echo " limpa(limpa_tudo) - limpa todo o itservice" | ||
echo "" | ||
echo "TODO:" | ||
echo " ** Colocar mais de uma trigger por item" | ||
echo " ** Cacular sla baseado no cliente" | ||
echo "" | ||
echo "***************************************************" | ||
} | ||
|
||
limpa_tudo() { | ||
|
||
serviceid=$(get_itservices | awk -v RS='{"' -F: '/^serviceid/ {print $2}' | awk -F\" '{print $2}') | ||
for del in `echo $serviceid` | ||
do | ||
|
||
wget -O- -o /dev/null $API --header 'Content-Type: application/json-rpc' --post-data "{ | ||
\"jsonrpc\": \"2.0\", | ||
\"method\": \"service.delete\", | ||
\"params\": [ $del ], | ||
\"auth\": \"$AUTH_TOKEN\", | ||
\"id\": 1 }" | ||
done | ||
|
||
} | ||
|
||
case $1 in | ||
all_groups) get_hostgroups; | ||
;; | ||
all_host_per_groups) get_hosts_hostgroups; | ||
;; | ||
all_items_per_host) get_items_hosts; | ||
;; | ||
all_triggers_per_host) get_triggers_hosts; | ||
;; | ||
cria_pai) mk_father_itservices; | ||
;; | ||
cria_filho) mk_child_itservices; | ||
;; | ||
cria_item) mk_child_its_trigger; | ||
;; | ||
gs) get_itservices; | ||
;; | ||
populate) mk_populate; | ||
;; | ||
limpa) limpa_tudo; | ||
limpa_tudo; | ||
;; | ||
*) help; | ||
;; | ||
esac |