You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, fetching the metric history for multiple experiment runs requires making a separate API call for each run.
Describe the solution you'd like
Add a new batch endpoint that can return the metric history for a specific metric across multiple specified runs in a single API call.
The suggested endpoint is: GET /experiment_runs/metric_history?experimentRunIds=[RUN_ID_1,RUN_ID_2,...]&metricName=[METRIC_NAME]
Describe alternatives you've considered
The obvious alternative is to continue using the existing /experiment_runs/{experimentrunId}/metric_history endpoint and have the client make repeated requests.