|
@@ -31,6 +31,7 @@ class CmtsCmStatsCommand extends BaseCmCommand
|
|
new InputOption('cmts-server-id', null, InputOption::VALUE_OPTIONAL, "ServerDevice del CMTS",1),
|
|
new InputOption('cmts-server-id', null, InputOption::VALUE_OPTIONAL, "ServerDevice del CMTS",1),
|
|
new InputOption('cm-ip', false, InputOption::VALUE_OPTIONAL, "IP del CM"),
|
|
new InputOption('cm-ip', false, InputOption::VALUE_OPTIONAL, "IP del CM"),
|
|
new InputOption('cm-mac', false, InputOption::VALUE_OPTIONAL, "MAC del CM"),
|
|
new InputOption('cm-mac', false, InputOption::VALUE_OPTIONAL, "MAC del CM"),
|
|
|
|
+ new InputOption('cm', null, InputOption::VALUE_OPTIONAL|InputOption::VALUE_IS_ARRAY, "List of CM: --cm=ip1,mac1 --cm=ip2,mac2"),
|
|
new InputOption('cm-community', false, InputOption::VALUE_OPTIONAL, "Community del CMTS",'public'),
|
|
new InputOption('cm-community', false, InputOption::VALUE_OPTIONAL, "Community del CMTS",'public'),
|
|
new InputOption('cm-snmp-library', false, InputOption::VALUE_OPTIONAL, "Versión de librería SNMP",'OIDSBase'),
|
|
new InputOption('cm-snmp-library', false, InputOption::VALUE_OPTIONAL, "Versión de librería SNMP",'OIDSBase'),
|
|
new InputOption('save-historic', null, InputOption::VALUE_OPTIONAL, "Send data to StatsD",1)
|
|
new InputOption('save-historic', null, InputOption::VALUE_OPTIONAL, "Send data to StatsD",1)
|
|
@@ -45,13 +46,78 @@ class CmtsCmStatsCommand extends BaseCmCommand
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
{
|
|
parent::execute($input, $output);
|
|
parent::execute($input, $output);
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ $statsdService = $this->getContainer()->get('statsd');
|
|
|
|
|
|
$key_cm_stats = "cm_stats_{$this->d_s}"; // group by cmts
|
|
$key_cm_stats = "cm_stats_{$this->d_s}"; // group by cmts
|
|
$saveHistoric = (int) $input->getOption('save-historic');
|
|
$saveHistoric = (int) $input->getOption('save-historic');
|
|
$inicio = microtime(true);
|
|
$inicio = microtime(true);
|
|
|
|
|
|
- $SNMP = new SNMP($this->cmIp, $this->cmCommunity);
|
|
|
|
|
|
+ $count = 0;
|
|
|
|
+
|
|
|
|
+ if(is_null($this->cmIp)) {
|
|
|
|
+ $cablemodems = $input->getOption('cm');
|
|
|
|
+
|
|
|
|
+ if(is_null($cablemodems) || empty($cablemodems)) {
|
|
|
|
+ $this->removeLock($this->flag);
|
|
|
|
+ exit();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ foreach($cablemodems as $dupla) {
|
|
|
|
+ list($ip, $mac) = explode(",",$dupla);
|
|
|
|
+ $metrics = $this->metrics($key_cm_stats, $ip, $mac);
|
|
|
|
+ $count++;
|
|
|
|
+ if($metrics && $saveHistoric) $this->sendData($metrics, $statsdService);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+ $metrics = $this->metrics($key_cm_stats, $this->cmIp, $this->cmMac);
|
|
|
|
+ $count++;
|
|
|
|
+ if($metrics && $saveHistoric) $this->sendData($metrics, $statsdService);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* End Of Blockout */
|
|
|
|
+ $this->removeLock($this->flag);
|
|
|
|
+
|
|
|
|
+ $fin = microtime(true);
|
|
|
|
+ $time = $fin - $inicio;
|
|
|
|
+ $this->output->writeln("Cantidad CM: {$count} / Tiempo: {$time} segundos / Date: ".date("Y-m-d H:i:s"));
|
|
|
|
+
|
|
|
|
+ exit();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private function sendData($data, $service)
|
|
|
|
+ {
|
|
|
|
+ $t_start_script = microtime(true);
|
|
|
|
+ $service->send($data);
|
|
|
|
+ $t_end_script = microtime(true);
|
|
|
|
+ $time = $t_end_script - $t_start_script;
|
|
|
|
+ $this->output->writeln("Tiempo de envío al StatsD: {$time} ms / Cantidad: ".count($data));
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private function sla($ip)
|
|
|
|
+ {
|
|
|
|
+ $kernel = $this->getContainer()->get('kernel');
|
|
|
|
+
|
|
|
|
+ $application = new Application($kernel);
|
|
|
|
+ $application->setAutoExit(false);
|
|
|
|
+
|
|
|
|
+ $args = ['','ping',$ip];
|
|
|
|
+
|
|
|
|
+ $input = new ArgvInput($args);
|
|
|
|
+
|
|
|
|
+ $output = new BufferedOutput();
|
|
|
|
+
|
|
|
|
+ $application->run($input, $output);
|
|
|
|
+
|
|
|
|
+ return $output->fetch();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private function metrics($key, $ip, $mac)
|
|
|
|
+ {
|
|
|
|
+ $inicio = microtime(true);
|
|
|
|
+ $SNMP = new SNMP($ip, $this->cmCommunity);
|
|
$SNMP->setTimeout(2500000); // 2.5 seconds of timeout
|
|
$SNMP->setTimeout(2500000); // 2.5 seconds of timeout
|
|
$SNMP->setRetry(1); // 1 query per metric
|
|
$SNMP->setRetry(1); // 1 query per metric
|
|
$library = "use".$this->cmSnmpLibrary;
|
|
$library = "use".$this->cmSnmpLibrary;
|
|
@@ -70,7 +136,7 @@ class CmtsCmStatsCommand extends BaseCmCommand
|
|
$fin = microtime(true);
|
|
$fin = microtime(true);
|
|
$time = $fin - $inicio;
|
|
$time = $fin - $inicio;
|
|
$this->output->writeln("CM no responde uptime, tx y rx => cortamos! Tiempo: $time segundos");
|
|
$this->output->writeln("CM no responde uptime, tx y rx => cortamos! Tiempo: $time segundos");
|
|
- return true;
|
|
|
|
|
|
+ return false;
|
|
}
|
|
}
|
|
|
|
|
|
$signal = $this->getSNMP("docsIfSigQSignalNoise","cmSignal");
|
|
$signal = $this->getSNMP("docsIfSigQSignalNoise","cmSignal");
|
|
@@ -79,7 +145,7 @@ class CmtsCmStatsCommand extends BaseCmCommand
|
|
$correcteds = $this->getSNMP("docsIfSigQCorrecteds","cmCorrecteds");
|
|
$correcteds = $this->getSNMP("docsIfSigQCorrecteds","cmCorrecteds");
|
|
$uncorrectables = $this->getSNMP("docsIfSigQUncorrectables","cmUncorrectables");
|
|
$uncorrectables = $this->getSNMP("docsIfSigQUncorrectables","cmUncorrectables");
|
|
|
|
|
|
- $slaJson = $this->sla($this->cmIp);
|
|
|
|
|
|
+ $slaJson = $this->sla($ip);
|
|
try{
|
|
try{
|
|
$sla = json_decode($slaJson,true);
|
|
$sla = json_decode($slaJson,true);
|
|
} catch(\Exception $e) {
|
|
} catch(\Exception $e) {
|
|
@@ -102,7 +168,7 @@ class CmtsCmStatsCommand extends BaseCmCommand
|
|
|
|
|
|
foreach($$var as $channel => $value) {
|
|
foreach($$var as $channel => $value) {
|
|
$v = $value * $multiplicator;
|
|
$v = $value * $multiplicator;
|
|
- $_m = "{$m}{$this->cmMac}.{$channel}";
|
|
|
|
|
|
+ $_m = "{$m}{$mac}.{$channel}";
|
|
$data[$var][$channel] = $v;
|
|
$data[$var][$channel] = $v;
|
|
$sendData[$_m] = "{$v}|g";
|
|
$sendData[$_m] = "{$v}|g";
|
|
}
|
|
}
|
|
@@ -116,56 +182,23 @@ class CmtsCmStatsCommand extends BaseCmCommand
|
|
|
|
|
|
if(isset($sla['latency'])) {
|
|
if(isset($sla['latency'])) {
|
|
$data['latency'] = $sla['latency'];
|
|
$data['latency'] = $sla['latency'];
|
|
- $sendData["cm_latency_{$this->cmMac}"] = "{$sla['latency']}|g";
|
|
|
|
|
|
+ $sendData["cm_latency_{$mac}"] = "{$sla['latency']}|g";
|
|
}
|
|
}
|
|
|
|
|
|
if(isset($sla['jitter'])) {
|
|
if(isset($sla['jitter'])) {
|
|
$data['jitter'] = $sla['jitter'];
|
|
$data['jitter'] = $sla['jitter'];
|
|
- $sendData["cm_jitter_{$this->cmMac}"] = "{$sla['jitter']}|g";
|
|
|
|
|
|
+ $sendData["cm_jitter_{$mac}"] = "{$sla['jitter']}|g";
|
|
}
|
|
}
|
|
|
|
|
|
if(isset($sla['loss'])) {
|
|
if(isset($sla['loss'])) {
|
|
$data['loss'] = $sla['loss'];
|
|
$data['loss'] = $sla['loss'];
|
|
- $sendData["cm_loss_{$this->cmMac}"] = "{$sla['loss']}|g";
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- $this->hset($key_cm_stats, $this->cmMac, $data, true);
|
|
|
|
-
|
|
|
|
- //$data = $this->collector->hgetall($key_cm_stats);
|
|
|
|
-
|
|
|
|
- if($sendData && $saveHistoric) {
|
|
|
|
- $t_start_script = microtime(true);
|
|
|
|
- $statsdService = $this->getContainer()->get('statsd');
|
|
|
|
- $statsdService->send($sendData);
|
|
|
|
- $t_end_script = microtime(true);
|
|
|
|
- $time = $t_end_script - $t_start_script;
|
|
|
|
- $this->output->writeln("Tiempo de envío al StatsD: {$time} ms / Cantidad: ".count($sendData));
|
|
|
|
|
|
+ $sendData["cm_loss_{$mac}"] = "{$sla['loss']}|g";
|
|
}
|
|
}
|
|
|
|
|
|
- /* End Of Blockout */
|
|
|
|
- $this->removeLock($this->flag);
|
|
|
|
-
|
|
|
|
- $fin = microtime(true);
|
|
|
|
- $time = $fin - $inicio;
|
|
|
|
- $this->output->writeln("Tiempo: $time segundos");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- private function sla($ip)
|
|
|
|
- {
|
|
|
|
- $kernel = $this->getContainer()->get('kernel');
|
|
|
|
-
|
|
|
|
- $application = new Application($kernel);
|
|
|
|
- $application->setAutoExit(false);
|
|
|
|
-
|
|
|
|
- $args = ['','ping',$ip];
|
|
|
|
-
|
|
|
|
- $input = new ArgvInput($args);
|
|
|
|
-
|
|
|
|
- $output = new BufferedOutput();
|
|
|
|
|
|
+ $this->hset($key, $mac, $data, true);
|
|
|
|
|
|
- $application->run($input, $output);
|
|
|
|
|
|
+ return $sendData;
|
|
|
|
|
|
- return $output->fetch();
|
|
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|