v2.17.0
#3295
Replies: 2 comments 1 reply
-
Hi, Would you have docs on how to implement the new Thanks |
Beta Was this translation helpful? Give feedback.
1 reply
-
The batch updating, are there any plans to bring this functionality to the delivered js? Either by manually calling a .batch() or perhaps some settings for auto configurations e.g.: send every 5 events, once a minute (whichever sooner) etc |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Features
Batch send
You can now send data in batches, for example when trying to import a lot of data through the API. Instead of sending a single payload object, you would send an array of objects. It will be processed by the same logic from
/api/send
. To use this feature, you would make aPOST
request to/api/batch
.Payload overrides
When you send a request to
/api/send
, Umami pulls data from the request such as user-agent and IP address. Now you can provide your own values in the payload. This is useful when you're sending from a server or mobile environment where you are not using a web browser. The values you can provide are:Do Not Track
You can respect users DNT setting by adding the parameter
data-do-not-track=true
on your tracker script.Fixes
Updates
Thanks
@shrutesh1 @harryo @zeroCoder1 @Maxime-J
This discussion was created from the release v2.17.0.
Beta Was this translation helpful? Give feedback.
All reactions