This document explains how evaluation partners can securely access, download, and analyze their reports stored in Google Cloud Storage (GCS) and BigQuery.
Every day, data about your eval users’ trades are automatically aggregated into reports. Once the Evaluation Support team provides you with your service account key, you can either download your reports as CSV files from Google Cloud Storage or analyze the datasets directly in BigQuery.
The following table lists the reports you can access.
While all of the reports are available for you to review in BigQuery, only some of the reports are delivered as a CSV file to your Google Cloud Storage (GCS) bucket. If you want other reports delivered as a CSV file to your GCS bucket, contact Evaluation Support.
Before you can access your BigQuery reports, you’ll need these items.
Contact Evaluation Support and provide the following information:
A Service Account Key is a JSON file that grants your organization access to the GCS bucket and read-only access to the BigQuery dataset. It acts as authentication credentials for your organization.
Contact Evaluation Support for your Service Account Key.
Warning: Treat your JSON key as a password. Do not commit it to source control, share it via email, or share it via a messaging app. Instead, use a secure file transfer or shared secret tooling.
Tip: Store the JSON key in a secrets manager or a secure keystore.
Contact Evaluation Support to confirm the Google Cloud Storage bucket name where daily reports are stored. The format is:
eval-partner-<evalPartnerName>-devel-<uniqueId>eval-partner-<evalPartnerName>-prod-<uniqueId>Contact Evaluation Support to confirm your BigQuery dataset name where the data is hosted. The format is:
Use the following Project IDs:
plenary-cascade-781airy-passkey-867Using the Command Line Interface (CLI) method does not require programming knowledge and is ideal for analysts or operators who want to manually list, download, or analyze data.
To access your reports using the CLI method, follow these steps:
Install the Google Cloud SDK from https://cloud.google.com/sdk/docs/install.
Open Terminal (Mac) or Command Prompt (Windows).
Authenticate with your Service Account Key:
Confirm the active account:
Set your active project.
Note: Replace ep_<evalPartnerName> with your actual dataset name, <table_name> with your actual table name, and use the appropriate project ID for your environment.
Tip: Wrap paths in quotes if they include spaces or special characters.
Programmatic access is ideal for developers who want to integrate BigQuery reports into their applications or automate downloads.
These libraries allow you to connect directly to GCS or BigQuery from supported languages such as Node.js or Python.
To access your reports using the programmatic access method, follow these steps:
new_file.js).npm install @google-cloud/storagenpm install @google-cloud/bigquerypip install google-cloud-storagepip install google-cloud-bigquerynode new_file.js.Download a CSV from GCS (Production)
List all tables in your BigQuery dataset (Production)
Run BigQuery queries and export to CSV (Staging)
Query Tables in BigQuery (Staging)
This table shows common issues and their solutions.