Counting document reads per user in Firestore
Firestore is a serverless NoSQL database. For most projects, the largest part of their Firestore cost comes from document reads. You pay this cost each time the Firestore database server reads a document from disk for your app.
A common request from developers using Firestore is to see how many document reads each of their users are causing. Initially this was not possible in Firestore, since no metrics were exposed for this. But since late 2021 Firestore supports writing audit logs, and with that it is possible to see the document read operations per user - and many more metrics across many more axes.
In this article we’ll see how to make a chart like this that shows the document read count per use per day over a period of time:
In case you’re curious: the purple line in this chart is a web client where caching wasn’t correctly enabled, so it caused many more reads than the other clients.
Use-case
Let’s briefly look at the use-case first. I built a tiny chat app in FlutterFlow. This app has a single collection (called chat
) and each document in that collection represents a single chat message. My app allows the user to send a message (adding a new document to the collection), and it shows the (up to) 10 most recent messages from the collection.
In Flutter code, adding a message looks like this:
FirebaseFirestore.instance.collection("chat").add({
"message": text,
"timestamp": DateTime.now().millisecondsSinceEpoch,
"uid": FirebaseAuth.instance.currentUser!.uid,
});
And the reading of messages is done with this code:
FirebaseFirestore.instance
.collection("chat")
.orderBy("timestamp", descending: true)
.limit(10)
.snapshots()
The snapshots
method here creates a realtime listener on Firestore, so it gets the (up to) 10 most recent messages right away, and then listens for updates.
This code uses only a tiny sliver of the possible Firestore operations; it doesn’t use get-style reads, no transactions, no batches. That’s both because I usually live-code this app, but it also helps to keep our logs focused.
Audit logs
Firestore audit logs expose a treasure trove of information. At the top level, the audit logs are split into these two most common types:
-
Admin Activity audit logs contain log entries for API calls or other actions that modify the configuration or metadata of resources. For example, these logs record when users create VM instances or change Identity and Access Management permissions. Admin Activity audit logs are always written; you can’t configure, exclude, or disable them.
-
Data Access audit logs contain API calls that read the configuration or metadata of resources, as well as user-driven API calls that create, modify, or read user-provided resource data. Data Access audit logs are disabled by default, because audit logs can be quite large. To get Data Access audit logs for Firestore, you must explicitly enable them.
Since our use-case is focused on the actual data access, I went into the Google Cloud console and enabled data logging.
After this I loaded up my Flutter app in both an iOS emulator and a web page, and went looking for the data access audit logs.
Cloud Logging: Logs Explorer
One of the first tools you’ll want to look at is the Log Explorer. If you like reading first, check the documentation on viewing logs by using the Logs Explorer.
The log explorer lets you view recent log entries in this format:
Yup indeed, that is rather dense and you rapidly get a lot of log entries. And this is just the summary, you’re not even seeing 10% of the actual details in there. The amount of information that gets logged is huge!
Most important to note is that the logs are chronological, so the newest entry is at the bottom, and that you can see the (truncated) method name in there right after firestore.googleapis.com
. So the methods we see in the screenshot above are google.firestore.v1.Firestore.Listen
, ...v1.FirestoreAdmin.GetDatabase
, ...v1.FirestoreAdmin.ListLocations
, and more. You’ll immediately note that most of these are admin-level logs, which we’re not interested in right now.
After testing for a few days, here’s the count of the number of log entries by method:
As predicted earlier, the count of DATA_ operations if far great than the count of ADMIN_ operations. I guess I just took that earlier screenshot when I had triggered a bunch of admin operations.
For our use-case, of counting the number of document reads and writes per user, we only care about the regular data access logs, and the only two methods we find for that are:
google.firestore.v1.Firestore.Listen
, which corresponds to our listener for the 10 most recent messages.google.firestore.v1.Firestore.Write
, which is not showing in the above screenshot, but it will be logged when a user sends a message.
As expected, it’s mostly listen operations for us here, as I really haven’t been sending a lot of messages during testing. So below, I’ll mostly focus on the read/Listen
operations.
What’s in a log message
As said, there is a lot of information on each of these messages and the summary only shows a fraction of that. If you click on the >
to the left of a log entry, you can see its details. This is the full JSON for one (seriously: just one!) of the Listen
entries:
{
"protoPayload": {
"@type": "type.googleapis.com/google.cloud.audit.AuditLog",
"status": {},
"authenticationInfo": {
"principalEmail": "service-942941060459@firebase-rules.iam.gserviceaccount.com",
"thirdPartyPrincipal": {
"@type": "type.googleapis.com/google.cloud.audit.ThirdPartyJwt",
"payload": {
"payload": {
"sign_in_provider": "anonymous",
"identities": {}
},
"iss": "https://securetoken.google.com/nanochat-20241022-mw8qu9",
"iat": 1731091820,
"aud": "nanochat-20241022-mw8qu9",
"provider_id": "anonymous",
"sub": "mzi2JtP9p1fxavXdVvuk2qMyIWB3",
"auth_time": 1731007799,
"user_id": "mzi2JtP9p1fxavXdVvuk2qMyIWB3",
"exp": 1731095420
},
"header": {
"typ": "JWT",
"alg": "RS256",
"kid": "b8cac95b4a5acde0b96572dee8c8c95eee48cccd"
}
}
},
"requestMetadata": {
"callerIp": "157.131.245.100",
"callerSuppliedUserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36,gzip(gfe),gzip(gfe)",
"requestAttributes": {
"time": "2024-11-08T19:14:57.226501Z",
"auth": {}
},
"destinationAttributes": {}
},
"serviceName": "firestore.googleapis.com",
"methodName": "google.firestore.v1.Firestore.Listen",
"authorizationInfo": [
{
"resource": "projects/nanochat-20241022-mw8qu9/databases/(default)",
"permission": "datastore.entities.get",
"granted": true,
"resourceAttributes": {
"service": "firestore.googleapis.com",
"name": "projects/nanochat-20241022-mw8qu9/databases/(default)",
"type": "firestore.googleapis.com/Database"
},
"permissionType": "DATA_READ"
},
{
"resource": "projects/nanochat-20241022-mw8qu9/databases/(default)",
"permission": "datastore.entities.list",
"granted": true,
"resourceAttributes": {
"service": "firestore.googleapis.com",
"name": "projects/nanochat-20241022-mw8qu9/databases/(default)",
"type": "firestore.googleapis.com/Database"
},
"permissionType": "DATA_READ"
}
],
"resourceName": "projects/nanochat-20241022-mw8qu9/databases/(default)",
"numResponseItems": "10",
"request": {
"@type": "type.googleapis.com/google.firestore.v1.ListenRequest",
"addTarget": {
"targetId": 102,
"query": {
"parent": "projects/nanochat-20241022-mw8qu9/databases/(default)/documents",
"structuredQuery": {
"limit": 10,
"from": [
{
"collectionId": "chat"
}
],
"orderBy": [
{
"direction": "DESCENDING",
"field": {
"fieldPath": "timestamp"
}
},
{
"direction": "DESCENDING",
"field": {
"fieldPath": "__name__"
}
}
]
}
}
}
},
"metadata": {
"@type": "type.googleapis.com/google.cloud.audit.DatastoreServiceData"
}
},
"insertId": "-itd58hf2gzijg",
"resource": {
"type": "audited_resource",
"labels": {
"project_id": "nanochat-20241022-mw8qu9",
"service": "firestore.googleapis.com",
"method": "google.firestore.v1.Firestore.Listen"
}
},
"timestamp": "2024-11-08T19:14:57.217715Z",
"severity": "INFO",
"logName": "projects/nanochat-20241022-mw8qu9/logs/cloudaudit.googleapis.com%2Fdata_access",
"operation": {
"id": "3c9374e7-6d46-4619-ad12-a0bfbfac16b1",
"producer": "firestore.googleapis.com",
"last": true
},
"receiveTimestamp": "2024-11-08T19:14:57.639965123Z"
}
Here are some of the most interesting paths in the JSON for our use-case from this boatload of information:
protoPayload/authenticationInfo
is the (Firebase) Authentication of the user who made the request.protoPayload/authenticationInfo/thirdPartyPrincipal/payload/sign_in_provider
shows that the client is signed in anonymously ("sign_in_provider": "anonymous"
).protoPayload/authenticationInfo/thirdPartyPrincipal/payload/user_id
is the UID of the (anonymous) user ("user_id": "mzi2JtP9p1fxavXdVvuk2qMyIWB3"
)protoPayload/request/addTarget/query/structuredQuery
shows us that our query is something likecollection('chat').orderBy('timestamp', 'DESC').limit(10)
protoPayload/requestMetadata/callerSuppliedUserAgent
shows the user agent that made the request (so we could derive the client platform from that) ("callerSuppliedUserAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36,gzip(gfe),gzip(gfe)"
)protoPayload/numResponseItems
shows the number of items that were returned for this request ("numResponseItems": "10"
)
The user_id
and numResponseItems
are the key for our use-case, as we can group over the former and sum the latter to get the document read count per user. To allow this, we’re going to switch over to a different part of the Cloud Logging console, where we can run SQL queries against the audit log data.
Cloud Logging: Log Analytics
Cloud Logging’s Log Analytics is powered by BigQuery, so if you’ve ever used that tool you’ll have a head start. You can connect the audit log data directly to the BigQuery console too, but I’ve stayed within the Log Analytics console.
Whether you’re new to BigQuery or not, I recommend checking out the logging query samples in the documentation.
Now we finally get to the two queries I ended up with after a lot of experimentation.
Get the total document read count per day
First off, here’s how you can get the sum of all document read counts across all users
SELECT
TIMESTAMP_TRUNC(timestamp, DAY) as day,
SUM(proto_payload.audit_log.num_response_items) as read_count
FROM `nanochat-20241022-mw8qu9.global._Default._AllLogs`
WHERE proto_payload.audit_log.authorization_info[0].permission_type IN ('DATA_READ', 'DATA_WRITE')
AND proto_payload.audit_log.method_name LIKE 'google.firestore.v1.Firestore%'
GROUP BY
TIMESTAMP_TRUNC(timestamp, DAY)
I had a hard time figuring the the table name, so be aware of that. Aside from that, you can see the query filters on data reads and writes from Firestore, and group the number of document reads per day.
Here’s what I see in the Firebase console for the same period:
While the shape looks a bit different (probably due a difference in timezone offset), the total count adds up to something in the same ballpark.
Get the total document read count per user per day
And finally, here’s the query that I used to create that chart at the top of the article:
SELECT
JSON_VALUE(proto_payload.audit_log.authentication_info.third_party_principal.payload.user_id) as uid,
TIMESTAMP_TRUNC(timestamp, DAY) as day,
SUM(proto_payload.audit_log.num_response_items) as read_count
FROM `nanochat-20241022-mw8qu9.global._Default._AllLogs`
WHERE proto_payload.audit_log.authorization_info[0].permission_type IN ('DATA_READ', 'DATA_WRITE')
AND proto_payload.audit_log.method_name LIKE 'google.firestore.v1.Firestore%'
GROUP BY
JSON_VALUE(proto_payload.audit_log.authentication_info.third_party_principal.payload.user_id),
TIMESTAMP_TRUNC(timestamp, DAY)
As you can see, it’s mostly the same as the previous queries, but now also groups by the user_id
field from the log entries. If your users are guaranteed to have an email address in their profile, you could of course also group on that, or on any other property that gets logged.
Conclusion
Thanks to Firestore’s Audit Logging, you can now get a (pretty accurate) estimate of the document read count from within the Google Cloud console. In this article we’ve seen how to get the total document read count or how to split it out per user, but given the amount of information in the audit logs, you can slice and dice the data in many more ways.
Got feedback or questions? Sound off on socials with the links at the top of the article!
Also see:
- How Firestore was used in the Arc code injection vulnerability (September 27, 2024)
- Waiting for Firestore to create a document (August 3, 2024)
- How to perform geoqueries on Firestore (somewhat) efficiently (May 30, 2024)