Commit 8a0b55cf7be579b4fa89eed13eef3d4739dd85ca

Authored by Starlone Passos
1 parent fb14f40f

Indicador 20 - Obtendo Servidor de Aplicacao

Showing 1 changed file with 6 additions and 0 deletions   Show diff stats
rn/MdEstatisticasColetarRN.php
... ... @@ -30,6 +30,7 @@ class MdEstatisticasColetarRN extends InfraRN {
30 30 'estrategiaCessao' => $this->obterEstrategiaCessao(),
31 31 'tamanhoDatabase' => $this->obterTamanoDataBase(),
32 32 'bancoSei' => $this->obterTipoSGBD(),
  33 + 'servidorAplicacao' => $this->obterServidorAplicacao(),
33 34 'navegadores' => $this->obterNavegadores(),
34 35 'modulos' => $this->obterPlugins(),
35 36 'tamanhoFilesystem' => $this->obterTamanhoFileSystem(),
... ... @@ -257,6 +258,11 @@ class MdEstatisticasColetarRN extends InfraRN {
257 258 InfraDebug::getInstance()->gravar('SEI22 - Versao Solr: ' . $versao, InfraLog::$INFORMACAO);
258 259 return $versao;
259 260 }
  261 + private function obterServidorAplicacao(){
  262 + $versao = $_SERVER['SERVER_SOFTWARE'];
  263 + InfraDebug::getInstance()->gravar('SEI20 - Quantidade de servidores de aplicação e suas versões: ' . $versao, InfraLog::$INFORMACAO);
  264 + return $versao;
  265 + }
260 266  
261 267 }
262 268 ?>
... ...