15 Apr 2025 06:46 PM - edited 15 Apr 2025 07:27 PM
I see today multiple of my dashboards with an error : Error. There's no function `split`.
I see it for basic DQL lines that were working before. like
| fieldsadd app_tag = coalesce(split((split(tostring(tags), "business_application_name:")[1]), "\",")[0], " ")
Did something change? Does anyone else see the same?
Thanks
Solved! Go to Solution.
15 Apr 2025 08:24 PM
I didn't catch this in the release notes anywhere, but it would appear that the split function has been replaced with or renamed to splitString(). The documentation seems to make reference to 'split' in some of the text examples even though the official name is now splitString(). My suggestion is to try replacing it with the new function name.
15 Apr 2025 08:41 PM
Wow, it is painful, but it works, Now I need to go and rename every code I have to splitString.
Thanks
16 Apr 2025 12:45 PM
I've always used splitString() but had some users reporting problems this morning on DQL in dashboards/notebooks with regards to split() failing. Suspect that splitString() was introduced to replace split() a while ago (2022???) and that split() was in deprecation ... which at some point yesterday, was removed/pulled
Can't locate any notification to confirm at the moment