How to stop sending sdk_name label? #271
-
The sdk_name label is larger than my whole log lines :). I don't need any of the text in the sdk_name. How to stop sending that log information? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @mk48 This is a known "problem" (unnecessary data which adds to each beacon payload). Currently there's no setting to disable this, so you need a little workaround, see example below. Remove the SDK meta data You can remove the respective meta by using the
PS: |
Beta Was this translation helpful? Give feedback.
Hi @mk48
This is a known "problem" (unnecessary data which adds to each beacon payload).
Midterm we plan to trim down Faro page loads even more.
Currently there's no setting to disable this, so you need a little workaround, see example below.
Remove the SDK meta data
Faro packages different meta data in so called Meta object, like MetaBrowser, MetaApp and so on.
The object containing SDK meta data is the MetaSDK object.
You can remove the respective meta by using the
beforeSend()
hook.PS:
Nevertheless I think making the sdk meta data optional (and maybe …