Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

XMLLINT parses xml files and can give you a detailed error. 

Step-by-step guide

  1. Install xmllint

    Code Block
    languagebash
    themeRDark
    apt -y install libxml2-util


  2. run that for loop with xmllint and some debug as site user and write the result to a file

    Code Block
    languagebash
    themeRDark
    OMD[mysite]:~$ for i in $(find ~/var/pnp4nagios/perfdata/ -name "*xml"); do echo "#####$i####"; xmllint  --debug  --format $i; echo "#####" ;done &> xmllint.log


  3. Check if we already provide a solution here:Error during the RRD conversion
  4. If there is no solution, you can open a support case and provide us with the log. Then we can analyze that

...