Reputation: 1
I sent some events via the Measurement Protocol using the same code. For the same app_instance_id, and the same event such as value_limit_1_10, there's the situation where I sent 10 events but only 6 are recorded in BigQuery; what may lead to this situation and how could I solve this problem? The request is like:
curl --location --request POST 'https://www.google-analytics.com/mp/collect?firebase_app_id=xxxx&api_secret=xxxx' \
--header 'Authorization: Bearer r1tovR-j1V2xxxxx' \
--header 'Content-Type: application/json' \
--data-raw '{
"app_instance_id": "5AAD1DED1xxxxxx",
"timestamp_micros": 1735277798000000,
"events": [
{
"name": "value_limit_1_10",
"currency": "USD",
"value": 1.99,
"batch_id": "1735277940000"
}
]
}'
I've tried to find commonalities among the missing records,expecting there're specific users or event names or parameter values related to this situation, but find nothing special. For the same user, same event, same parameters and values some hits are recorded and some are not.
Upvotes: 0
Views: 46