Commit a7231d6710b8a0bd8f875edeac62fff72f522d70

Authored by Starlone Passos
1 parent e5718027

Indicador 15 - Tamanho das tabelas

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
rn/MdEstatisticasColetarRN.php
@@ -30,7 +30,7 @@ class MdEstatisticasColetarRN extends InfraRN { @@ -30,7 +30,7 @@ class MdEstatisticasColetarRN extends InfraRN {
30 'quantidadeDocumentosExternos' => $this->obterQuantidadeDocumentosExternos(), 30 'quantidadeDocumentosExternos' => $this->obterQuantidadeDocumentosExternos(),
31 'estrategiaCessao' => $this->obterEstrategiaCessao(), 31 'estrategiaCessao' => $this->obterEstrategiaCessao(),
32 'tamanhoDatabase' => $this->obterTamanhoDataBase(), 32 'tamanhoDatabase' => $this->obterTamanhoDataBase(),
33 - 'tamanhoTabelas' => $this->obterTamanhoTabelas(), 33 + 'tabelasTamanhos' => $this->obterTamanhoTabelas(),
34 'bancoSei' => $this->obterTipoSGBD(), 34 'bancoSei' => $this->obterTipoSGBD(),
35 'servidorAplicacao' => $this->obterServidorAplicacao(), 35 'servidorAplicacao' => $this->obterServidorAplicacao(),
36 'sistemaOperacional' => $this->obterSistemaOperacional(), 36 'sistemaOperacional' => $this->obterSistemaOperacional(),
@@ -260,7 +260,7 @@ class MdEstatisticasColetarRN extends InfraRN { @@ -260,7 +260,7 @@ class MdEstatisticasColetarRN extends InfraRN {
260 $tabelas = BancoSEI::getInstance()->consultarSql($query); 260 $tabelas = BancoSEI::getInstance()->consultarSql($query);
261 261
262 InfraDebug::getInstance()->gravar('SEI15 - Tamanho das tabelas: ' . json_encode($tabelas), InfraLog::$INFORMACAO); 262 InfraDebug::getInstance()->gravar('SEI15 - Tamanho das tabelas: ' . json_encode($tabelas), InfraLog::$INFORMACAO);
263 - return $tamanho; 263 + return $tabelas;
264 } 264 }
265 265
266 266