function retrieveFromServerAndDraw()

in dashboard/src/main/resources/static/metrics_ui.js [131:135]


function retrieveFromServerAndDraw(chartConfig) {
  fetch(chartConfig.endpoint)
  .then(results => results.json())
  .then(results => drawChart(results, chartConfig));
}