-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StringValueTooLong message:"string value is too long. It has been truncated to 1024 characters." props:"{value:/callback#access_token=<token>...} #66
Comments
It seems like it's related to the applicationinsights-js underlying package itself, can we see if there's an issue over there - maybe they're working on it - if not we should definitely raise it up to them, maybe it's an easy fix we can get a PR in to fix it over there 👍 |
I also have this warning. Using :
|
It seems this may be an existing issue within ApplicationInsights-JS itself, microsoft/ApplicationInsights-JS#286 Are there many tracking events firing off too quickly that's maybe causing this to happen? |
This issue is now fixed? microsoft/ApplicationInsights-JS#751 However it's only in the |
Ahh I didn't see they moved to 2.0! |
Just giving some context here from the JS SDK. App Insights limits the length of strings for telemetry. The warning only reflects the app insights world and the actual string is not truncated at all, only in the telemetry will it be truncated. The referenced fix will not get rid of the warning. It only changed the fact that now the console warning shows the full, untruncated string. Disabling For the 2.0.0 SDK, you can use the new |
Related to #49 - I am still getting warnings about a string being too long and thus truncated in versions 6+ of angular-application-insights.
I seems this issue was fixed in 5.0.4 but somehow it's made its way back in.
The text was updated successfully, but these errors were encountered: