You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function worked fine after this change and my logs are ingested properly now. Is there an expectation that rawMessages might be an Object instead of an Array?
The text was updated successfully, but these errors were encountered:
ehub-collector/common/ehub_collector.js
Line 38 in 241bdaa
I attempted to debug and run my installation of ehub-collector by running npm run local-ehub-general and received error:
TypeError: rawMessages.map is not a function
at module.exports (my-project-directory\common\ehub_collector.js:38:42)
This happens because map() method is defined on Array, and does not exist in Object. This worked:
Function worked fine after this change and my logs are ingested properly now. Is there an expectation that rawMessages might be an Object instead of an Array?
The text was updated successfully, but these errors were encountered: