mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
17f784270a
* remove trailing whitespace * remove empty lines at the end of files
71 lines
1.8 KiB
PHP
Executable File
71 lines
1.8 KiB
PHP
Executable File
#!/usr/bin/php
|
|
# Author Andrey Kozhokaru <andrey@kozhokaru.com>
|
|
# Plugin to monitor Rackspace File count
|
|
#
|
|
# Parameters:
|
|
#
|
|
# config (required)
|
|
#
|
|
#
|
|
#%# family=manual
|
|
|
|
|
|
<?php
|
|
$x_auth_user='###NAME';
|
|
$x_auth_key='###KEY';
|
|
$api_url='https://auth.api.rackspacecloud.com/v1.0/';
|
|
|
|
function SplitTwice($content,$first,$second) {
|
|
$s1=split($first,$content);
|
|
$splitted=split($second,$s1[1]);
|
|
return trim($splitted[0]);
|
|
}
|
|
|
|
|
|
if ($argv[1]=='config'){
|
|
print "graph_title Rackspace CDN files count\n";
|
|
print "graph_vlabel Files Count\n";
|
|
print "graph_category cloud\n";
|
|
print "count.label files count\n";
|
|
print "graph_args --base 1000\n";
|
|
|
|
exit;
|
|
}
|
|
|
|
$header_auth = array("X-Auth-User:$x_auth_user","X-Auth-Key:$x_auth_key");
|
|
|
|
//Authentication
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $api_url);
|
|
curl_setopt($ch, CURLOPT_HEADER, true);
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $header_auth);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
|
|
$data = curl_exec($ch);
|
|
curl_close($ch);
|
|
|
|
|
|
$cdn_url= SplitTwice($data,'X-Storage-Url: ','Cache');
|
|
$token= SplitTwice ($data,'X-Auth-Token:','X-Storage-Token:');
|
|
|
|
|
|
$header_cdn = array ("X-Auth-Token:$token");
|
|
|
|
|
|
//Get data
|
|
$ch1 = curl_init();
|
|
curl_setopt($ch1, CURLOPT_URL, $cdn_url);
|
|
curl_setopt($ch1, CURLOPT_HEADER, true);
|
|
curl_setopt($ch1, CURLOPT_HTTPHEADER, $header_cdn);
|
|
curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch1, CURLOPT_CONNECTTIMEOUT, 30);
|
|
$data1 = curl_exec($ch1);
|
|
curl_close($ch1);
|
|
|
|
$objects_count = SplitTwice($data1,'X-Account-Object-Count:','X-Account-Bytes-Used:');
|
|
$objects_bytes_used = SplitTwice ($data1,'X-Account-Bytes-Used:','X-Account-Container-Count:');
|
|
|
|
echo 'count.value '.$objects_count;
|
|
|
|
?>
|