123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- namespace ZteBundle\Command;
- use BaseStatsBundle\Command\BaseCommand;
- use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
- use Symfony\Component\Console\Input\InputOption;
- use Symfony\Component\Console\Input\InputInterface;
- use Symfony\Component\Console\Output\OutputInterface;
- use ZteBundle\SNMP\SNMP as SNMP;
- //use RedisBundle\Services\RedisService;
- class ZtePonStatsCommand extends BaseCommand
- {
- protected function configure()
- {
- $this
- ->setName('zte:pon:stats')
- ->setDescription('Stats de PON PORTs de OLT')
- ->setHelp('Se requieren parámetros para poder realizar la correcta consulta. El comando requiere Redis.')
- ->setDefinition(array(
- new InputOption('olt-device-id', null, InputOption::VALUE_OPTIONAL, "DeviceId de la OLT",1),
- new InputOption('olt-server-id', null, InputOption::VALUE_OPTIONAL, "ServerDevice de la OLT",1),
- new InputOption('olt-ip', false, InputOption::VALUE_OPTIONAL, "IP de la OLT"),
- new InputOption('olt-community', false, InputOption::VALUE_OPTIONAL, "COMMUNITY de la OLT"),
- new InputOption('olt-snmp-library', false, InputOption::VALUE_OPTIONAL, "Versión de librería SNMP"),
- new InputOption('save-historic', null, InputOption::VALUE_OPTIONAL, "Send data to StatsD",1)
- ))
- ;
- }
- /**
- * @param InputInterface $input
- * @param OutputInterface $output
- */
- protected function execute(InputInterface $input, OutputInterface $output)
- {
- parent::execute($input, $output);
-
- $key_olt_scan = "olt_scan_pons_{$this->d_s}";
- $saveHistoric = (int) $input->getOption('save-historic');
- $inicio = microtime(true);
-
- $SNMP = new SNMP($this->oltIp, $this->oltCommunity);
- $library = "use".$this->oltSnmpLibrary;
- $this->apiSNMP = $SNMP->$library();
- $dataCached = $this->getData($key_olt_scan, true);
- if(empty($dataCached)) {
- $this->output->writeln("Se requiere {$key_olt_scan}.");
- $this->removeLock($this->flag);
- return true;
- }
- //return [PONINDEX.ONUID] => value
- $rxPower = $this->getSNMP("oltPonRxOpticalPower","ponRxPower");
-
- //return [PONINDEX] => value
- $txPower = $this->getSNMP("oltPonTxOpticalPower","ponTxPower");
- $temperature = $this->getSNMP("oltPonOpticalTemperature","ponTemperature");
- $voltage = $this->getSNMP("oltPonOpticalVltage","ponVoltage");
- $biasCurrent = $this->getSNMP("oltPonOpticalCurrent","ponBiasCurrent");
- $ponStatsCached = $sendData = array();
- $subId = $this->d_s;
- $metrics = array("txPower" => "{$subId}_pon_tx_", "temperature" => "{$subId}_pon_temperature_", "voltage" => "{$subId}_pon_voltage_", "biasCurrent" => "{$subId}_pon_biascurrent_");
- foreach($dataCached as $index => $pon) {
- $realIndex = $index;
- if(isset($pon['nexo'])) {
- $realIndex = $pon['nexo'];
- }
- $ponPort = str_replace ('/','.',$pon['ponPort']);
-
- $stats = array();
- $stats['ponPort'] = $pon['ponPort'];
- $stats['rxPower'] = array();
-
- foreach($metrics as $data => $metric) {
-
- if(isset($$data[$realIndex]) && !empty($$data[$realIndex])) {
-
- $m = "{$metric}{$ponPort}";
-
- $v = $$data[$realIndex] * 0.001;
-
- $stats[$data] = $v;
-
- $sendData[$m] = "{$v}|g";
- }
- }
-
- $ponStatsCached[$index] = $stats;
- }
- foreach($rxPower as $index => $rx) {
-
- $ponPortOnuId = explode(".",$index);
-
- if(count($ponPortOnuId) != 2) continue;
- $indexPon = $ponPortOnuId[0];
- if(isset($dataCached[$indexPon])) {
- $onuId = $ponPortOnuId[1];
- $ponPort = str_replace ('/','.',$dataCached[$indexPon]['ponPort']);
-
- $m = "{$subId}_pon_rx_{$ponPort}.{$onuId}";
-
- $v = $rx * 0.001;
-
- if(isset($ponStatsCached[$indexPon]['rxPower'])) {
- $ponStatsCached[$indexPon]['rxPower'][$onuId] = $v;
- }
-
- if(isset($dataCached[$indexPon]['nexo'])) {
- $index = $dataCached[$indexPon]['nexo'];
- if(isset($ponStatsCached[$index]['rxPower'])) {
- $ponStatsCached[$index]['rxPower'][$onuId] = $v;
- }
- }
- $sendData[$m] = "{$v}|g";
- }
- }
- if($ponStatsCached) {
- $key_pon_stats = "olt_stats_pons_{$this->d_s}";
- $this->setData($key_pon_stats, $ponStatsCached, true);
- }
- 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;
- print_r("Tiempo de envío al StatsD: {$time} ms / Cantidad: ".count($sendData).PHP_EOL);
- }
- /* Fin de bloqueo */
- $this->removeLock($this->flag);
- $fin = microtime(true);
- $time = $fin - $inicio;
- $this->output->writeln("Tiempo: $time segundos");
-
- }
- }
|