"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.registerRoutes = registerRoutes; var _flamechart = require("./flamechart"); var _functions = require("./functions"); var _setup = require("./setup"); var _route = require("./storage_explorer/route"); var _topn = require("./topn"); /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ function registerRoutes(params) { (0, _flamechart.registerFlameChartSearchRoute)(params); (0, _functions.registerTopNFunctionsSearchRoute)(params); (0, _topn.registerTraceEventsTopNContainersSearchRoute)(params); (0, _topn.registerTraceEventsTopNDeploymentsSearchRoute)(params); (0, _topn.registerTraceEventsTopNHostsSearchRoute)(params); (0, _topn.registerTraceEventsTopNStackTracesSearchRoute)(params); (0, _topn.registerTraceEventsTopNThreadsSearchRoute)(params); // Setup of Profiling resources, automates the configuration of Universal Profiling // and will show instructions on how to add data (0, _setup.registerSetupRoute)(params); (0, _route.registerStorageExplorerRoute)(params); }