Forum Discussion

dorian_fuchs's avatar
dorian_fuchs
Icon for Neophyte rankNeophyte
5 months ago
Solved

Bug early release Collector Update V34.500

I have updated some of our collectors to the early release V34.500. After the update, there were various alerts from the DataSource Citrix_XenApp_DatastoreStatus, which could no longer read any data.
After a short error analysis and further tests with other collectors, I replaced the here-string in the PowerShell script with a normal string input:

OOTB:
# Get XenApp specific creds
$XenAppUser = @'
##XENAPP.USER##
'@
$XenAppPass = @'
##XENAPP.PASS##
'@

After customization:
# Get XenApp specific creds
$XenAppUser = '##XENAPP.USER##'
$XenAppPass = '##XENAPP.PASS##'

The query then worked perfectly again. Has anyone else experienced this phenomenon in their environment?

5 Replies

  • Wonder if anyone is experiencing the issue with 35.000, the GA version of the collector.

    Problem also seems to be solved in GA 35.000, just for your information ;)

  • Wonder if anyone is experiencing the issue with 35.000, the GA version of the collector.

  • Oh that’s good. Lamentably, we need something from 34.400+ and 35.000 is the only option that’s not experimental (EA). I normally don’t want to go with .000 releases, glad to know this issue isn’t there.