private TvpDataCollection getTimeseriesData(UndesignedParameterSet parameters) {
   Stopwatch stopwatch = startStopwatch();
   TvpDataCollection timeseriesData =
       parameters.isGeneralize()
           ? composeDataService(timeseriesDataService).getTimeseriesData(parameters)
           : timeseriesDataService.getTimeseriesData(parameters);
   LOGGER.debug("Processing request took {} seconds.", stopwatch.stopInSeconds());
   return timeseriesData;
 }