protected function execute(InputInterface $input, OutputInterface $output)
 {
     $rage4 = $this->getRage4DNS($input->getOption('credentials'));
     $domainUsage = $rage4->usage->getCurrentUsage($input->getArgument('id'));
     $content = array();
     foreach ($domainUsage as $record) {
         $content[] = $record->getTableRow();
     }
     $limit = $input->getOption('limit');
     if ($limit > 0) {
         $content = array_slice($content, 0, $limit);
     }
     $this->renderTable(GlobalUsageHistory::getTableHeaders(), $content, $output);
 }