Skip to content

Commit 947a790

Browse files
authored
Adds a more generic 'url' field to a MetricsDataSource (#6955)
Googlers, see cl/700843983.
1 parent dd0245d commit 947a790

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tensorboard/webapp/experiments/types.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,14 @@ export declare interface MetricsDataSource {
4242
name: string;
4343
repo_id: string;
4444
table_id: string;
45+
// TODO: remove this field once it's not used. Use the more generic `url`
46+
// field below.
47+
//
4548
// The Datatable UI url for for Datatable data source. Format:
4649
// https://datatable/xid/{xid}/{table_path}
4750
datatable_uri?: string;
51+
// An (often external) url associated with this data source.
52+
url?: string;
4853
}
4954

5055
export interface ExperimentAlias {

0 commit comments

Comments
 (0)