Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit d287c50

Browse files
authored
Add pandas-gbq to clientlibs download metrics (#141)
* Add pandas-gbq to clientlibs download metrics * Create table for third party client libs
1 parent 0ed01f2 commit d287c50

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

perf-dashboard/clientlibs-download/python_clientlibs_download.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,14 @@
2828
VENEER_TABLE_NAME = 'veneer_client_libs'
2929
STACKDRIVER_TABLE_NAME = 'stackdriver_client_libs'
3030
GRPC_TABLE_NAME = 'grpc_lib'
31-
TABLES = [VENEER_TABLE_NAME, GRPC_TABLE_NAME, STACKDRIVER_TABLE_NAME]
31+
THIRD_PARTY_TABLE_NAME = 'third_party_client_libs'
32+
33+
TABLES = [
34+
VENEER_TABLE_NAME,
35+
GRPC_TABLE_NAME,
36+
STACKDRIVER_TABLE_NAME,
37+
THIRD_PARTY_TABLE_NAME,
38+
]
3239

3340
CLIENTLIBS = {
3441
VENEER_TABLE_NAME: [
@@ -54,6 +61,9 @@
5461
GRPC_TABLE_NAME: [
5562
'grpcio',
5663
],
64+
THIRD_PARTY_TABLE_NAME: [
65+
'pandas-gbq',
66+
]
5767
}
5868

5969

0 commit comments

Comments
 (0)