-
Module_plugin no le termina de gustar a Pandora FMS
He implementado un module-plugin en uno de nuestros servidores.
En el fichero de configuraciĆ³n la llamada es la siguiente:
module_plugin powershell -file “nombre_del_fichero.ps1”
Dentro del fichero de powershell tengo lo siguiente:
Write-Output “<module>”
Write-Output ” <name><![CDATA[Monitor_FTP]]></name>”
Write-Output ” <type><![CDATA[generic_data]]></type>”
Write-Output ” <description><![CDATA[Minutes without receiving CDR logs]]></description>”
Write-Output ” <module_interval><![CDATA[1]]></module_interval>”
Write-Output (” <data><![CDATA[” + (New-TimeSpan -Start (Get-ChildItem -Path “Ruta_A_los_logs” -Attributes !Directory | Sort-Object -Descending -Property LastWriteTime | Select -First 1).LastWriteTime -End (Get-Date)).Minutes + “]]></data>”)
Write-Output “</module>”
He configurado el agente en modo debug para obtener el XML y al editarlo veo lo siguiente:
<module>
<name><![CDATA[Monitor_FTP]]></name>
<type><![CDATA[generic_data]]></type>
<description><![CDATA[Minutes without receiving CDR logs]]></description>
<module_interval><![CDATA[1]]></module_interval>
<data><![CDATA[0]]></data>
</module>
Sin embargo, en la consola de Pandora FMS me aparece el agente en azul con un sĆmbolo de alerta en moco visualizaciĆ³n.
Un saludo.