GoogleDataTransport (FireLog BatchedLogRequest, Protobuf) (google/googledatatransport-firelog-batchlog-protobuf
)
operated by: Google LLC
(get company information on datarequests.org)The GoogleDataTransport SDK is a transport layer used internally by many other Firebase (e.g. Crashlytics, Performance, Core) Google (e.g. ML Kit) SDKs and services.
It batches application-specific data from within an app to Google, using a common endpoint regardless of the actual SDK that was integrated by the app developer.
Endpoint URLs
These are URLs or regexes of endpoints the tracker sends data to. We use these to determine which adapter to apply to a request. Some trackers use the same endpoint for several formats. In this case we use additional logic to match the adapter to the request, refer to the code for more information.https://firebaselogging-pa.googleapis.com/v1/firelog/legacy/batchlog
https://crashlyticsreports-pa.googleapis.com/v1/firelog/legacy/batchlog
https://firebaselogging.googleapis.com/v0cc/log/batch
Decoding steps
Every tracking library has its own way of transmitting tracking data, often even several. They are regularly pretty convoluted, nested encoding schemes. Because of that, the adapter needs to decode the request information into a consistent format. We try to keep keys and paths intact, but the structure results from our decoding. All steps used in the decoding for this adapter are documented here.- Decode the request body as a protocol buffer (Protobuf). Store that in the result for the request body.
- Get the property at JSONPath
$.1[?(@[2] === 462)].3.*.6
in the result for the request body. Store that in the result for the request body atlogEvents_FIREPERF
. - Get the property at JSONPath
$.1[?(@[2] === 1710)].3.6
in the result for the request body. Store that in the result for the request body atlogEvents_GDT_CLIENT_METRICS
. - Get the property at JSONPath
$.1[?(@[2] === 1974)].3.6
in the result for the request body. Store that in the result for the request body atlogEvents_FIREBASE_APPQUALITY_SESSION
. - Get the property at JSONPath
$.1[?(@[2] === 137)].3.6
in the result for the request body. Store that in the result for the request body atlogEvents_FIREBASE_COREDIAGNOSTICS
. - Get the property at JSONPath
$.1[?(@[2] === 1326)].3.*.6
in the result for the request body. Store that in the result for the request body atlogEvents_FIREBASE_ML_LOG_SDK
.
1res.body = decodeProtobuf(body)
2res.body.logEvents_FIREPERF = res.body.$.1[?(@[2] === 462)].3.*.6
3res.body.logEvents_GDT_CLIENT_METRICS = res.body.$.1[?(@[2] === 1710)].3.6
4res.body.logEvents_FIREBASE_APPQUALITY_SESSION = res.body.$.1[?(@[2] === 1974)].3.6
5res.body.logEvents_FIREBASE_COREDIAGNOSTICS = res.body.$.1[?(@[2] === 137)].3.6
6res.body.logEvents_FIREBASE_ML_LOG_SDK = res.body.$.1[?(@[2] === 1326)].3.*.6
Observed data transmissions
This is data that we observed being transmitted by this tracker. Not every request contains all of this data. The context of the data describes where we found the data in the request, the path describes the location of the data in the decoded request. The examples are a selection of observed values.References
- Documentation for
1.1.4.11
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L133-L134 - Documentation for
logEvents_FIREPERF.*.1.3.1
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/firebase-perf/src/main/proto/firebase/perf/v1/perf_metric.proto#L326-L328 - Documentation for
logEvents_GDT_CLIENT_METRICS.*.4
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/transport/transport-runtime/src/main/proto/client_analytics.proto#L38-L39 - Documentation for
logEvents_FIREBASE_COREDIAGNOSTICS.*.12
: https://github.com/firebase/firebase-ios-sdk/blob/af1201c8a3e64d7c1893cebbec6877cd8c39abf7/Firebase/CoreDiagnostics/ProtoSupport/Protos/firebasecore.proto#L77 - Documentation for
logEvents_FIREBASE_ML_LOG_SDK.*.1.1
: https://github.com/firebase/firebase-ios-sdk/blob/477bb2a6961b18dc6210a0dafc90a975e6a448c6/FirebaseMLModelDownloader/Sources/proto/firebase_ml_log_sdk.proto#L23-L24 - Documentation for
1.1.4.5
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L114-L116 - Documentation for
logEvents_FIREPERF.*.1.3.3
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/firebase-perf/src/main/proto/firebase/perf/v1/perf_metric.proto#L333-L338 - Documentation for
logEvents_FIREPERF.*.1.4.3
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebasePerformance/ProtoSupport/Protos/perf_metric.proto#L457-L461 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.6.1
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L207-L208 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.6.6
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L222-L223 - Documentation for
logEvents_FIREBASE_ML_LOG_SDK.*.1.2
: https://github.com/firebase/firebase-ios-sdk/blob/477bb2a6961b18dc6210a0dafc90a975e6a448c6/FirebaseMLModelDownloader/Sources/proto/firebase_ml_log_sdk.proto#L26-L27 - Documentation for
1.1.4.6
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L118-L121 - Documentation for
logEvents_FIREPERF.*.1.5
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/firebase-perf/src/main/proto/firebase/perf/v1/perf_metric.proto#L314-L315 - Documentation for
1.1.4.8
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L127-L131 - Documentation for
1.1.4.7
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L123-L125 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.2
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L172-L173 - Documentation for
logEvents_FIREBASE_COREDIAGNOSTICS.*.9
: https://github.com/firebase/firebase-ios-sdk/blob/af1201c8a3e64d7c1893cebbec6877cd8c39abf7/Firebase/CoreDiagnostics/ProtoSupport/Protos/firebasecore.proto#L74 - Documentation for
logEvents_FIREPERF.*.1.4.5.1
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebasePerformance/ProtoSupport/Protos/perf_metric.proto#L469-L470 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.6.3.1
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L224-L225 - Documentation for
1.1.1.1
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L139-L143 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.6.4
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L226-L227 - Documentation for
1.1.4.3
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L108-L109 - Documentation for
1.1.4.4
: https://github.com/google/GoogleDataTransport/blob/78c44ad53d41c84d7d04ceab9e8773327befbf2c/GoogleDataTransport/ProtoSupport/Protos/cct.proto#L111-L112 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.9
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L180-L181 - Documentation for
logEvents_FIREBASE_COREDIAGNOSTICS.*.22
: https://github.com/firebase/firebase-ios-sdk/blob/af1201c8a3e64d7c1893cebbec6877cd8c39abf7/Firebase/CoreDiagnostics/ProtoSupport/Protos/firebasecore.proto#L75 - Documentation for
logEvents_FIREPERF.*.4.1
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/firebase-perf/src/main/proto/firebase/perf/v1/perf_metric.proto#L213-L217 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.2.1
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L120-L121 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.2.7
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L122-L124 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.2.3
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L128-L129 - Documentation for
logEvents_FIREPERF.*.4.4.*.2
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/firebase-perf/src/main/proto/firebase/perf/v1/perf_metric.proto#L255-L256 - Documentation for
logEvents_FIREPERF.*.1.3.2
: https://github.com/firebase/firebase-android-sdk/blob/132b8ba8563aa00b06e27b56ee811e738d14c791/firebase-perf/src/main/proto/firebase/perf/v1/perf_metric.proto#L330-L331 - Documentation for
logEvents_FIREPERF.*.1.4.2
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebasePerformance/ProtoSupport/Protos/perf_metric.proto#L454-L455 - Documentation for
logEvents_FIREBASE_APPQUALITY_SESSION.*.3.7
: https://github.com/firebase/firebase-ios-sdk/blob/7a0145207ec66f24e4bd1ceccd4f861a3e22535b/FirebaseSessions/ProtoSupport/Protos/sessions.proto#L178-L179 - Documentation for
logEvents_FIREBASE_COREDIAGNOSTICS.*.18
: https://github.com/firebase/firebase-ios-sdk/blob/af1201c8a3e64d7c1893cebbec6877cd8c39abf7/Firebase/CoreDiagnostics/ProtoSupport/Protos/firebasecore.proto#L68 - Documentation for
logEvents_FIREBASE_COREDIAGNOSTICS.*.19
: https://github.com/firebase/firebase-ios-sdk/blob/af1201c8a3e64d7c1893cebbec6877cd8c39abf7/Firebase/CoreDiagnostics/ProtoSupport/Protos/firebasecore.proto#L69 - Documentation for
logEvents_FIREBASE_COREDIAGNOSTICS.*.31
: https://github.com/firebase/firebase-ios-sdk/blob/af1201c8a3e64d7c1893cebbec6877cd8c39abf7/Firebase/CoreDiagnostics/ProtoSupport/Protos/firebasecore.proto#L86 - Documentation for
logEvents_FIREBASE_ML_LOG_SDK.*.1.4
: https://github.com/firebase/firebase-ios-sdk/blob/477bb2a6961b18dc6210a0dafc90a975e6a448c6/FirebaseMLModelDownloader/Sources/proto/firebase_ml_log_sdk.proto#L34-L35