├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── Vagrantfile ├── aloja-bench ├── import_folder.sh └── run_benchs.sh ├── aloja-deploy ├── README.md ├── cache │ └── .git_ignored_folder ├── cluster_queue_jobs.sh ├── connect_cluster.sh ├── connect_node.sh ├── delete_cluster.sh ├── delete_node.sh ├── deploy_cluster.sh ├── deploy_node.sh ├── files │ ├── ganglia_conf.php.t │ ├── ganglia_minerva.conf.t │ ├── gmetad.conf.t │ ├── gmond.conf.t │ ├── ssh-tunnel │ │ └── etc │ │ │ ├── init.d │ │ │ └── ssh-tunnel │ │ │ └── ssh-tunnel │ │ │ └── config │ └── sshpass.sh ├── include │ └── include_deploy.sh ├── providers │ ├── amazon.sh │ ├── amazonemr.sh │ ├── azure.sh │ ├── bscaloja.sh │ ├── carma.sh │ ├── fsoc.sh │ ├── google.sh │ ├── hdinsight.sh │ ├── minerva100.sh │ ├── on-premise.sh │ ├── openstack.sh │ ├── rackspace.sh │ ├── rackspacecbd.sh │ ├── rackspacephys.sh │ └── vagrant.sh ├── start_cluster.sh ├── start_node.sh ├── stop_cluster.sh ├── stop_node.sh └── sync_node.sh ├── aloja-tools ├── jq ├── lib │ └── aloja-tools.jar └── src │ ├── alojatools │ ├── JhistToJSON.java │ └── next_cluster_id.sh │ ├── cachestat.sh │ ├── drop_cache.sh │ └── parsers │ └── yarn-parser.py ├── aloja-web ├── .gitignore ├── Container │ └── Container.php ├── Controller │ ├── AbstractController.php │ ├── ConfigEvaluationsController.php │ ├── CostPerfEvaluationController.php │ ├── DefaultController.php │ ├── MLCacheController.php │ ├── MLCrossvarController.php │ ├── MLDataCollapseController.php │ ├── MLFindAttributesController.php │ ├── MLMinconfigsController.php │ ├── MLNewconfigsController.php │ ├── MLOutliersController.php │ ├── MLParamevalController.php │ ├── MLPrecisionController.php │ ├── MLPredictionController.php │ ├── MLSummariesController.php │ ├── MLWeightController.php │ ├── PerfDetailsController.php │ ├── RepositoryController.php │ └── RestController.php ├── Filters │ └── Filters.php ├── Router │ └── Router.php ├── bower.json ├── cache │ ├── ml │ │ └── .git_ignored_folder │ ├── prv │ │ └── .git_ignored_folder │ ├── query │ │ └── .git_ignored_folder │ └── twig │ │ └── .git_ignored_folder ├── clearcache.php ├── composer.json ├── composer.phar ├── config │ ├── config.sample.yml │ ├── configevalrouter.yml │ ├── costperfevalrouter.yml │ ├── mlrouter.yml │ ├── perfdetailsrouter.yml │ ├── repositoryrouter.yml │ ├── restrouter.yml │ └── router.yml ├── css │ ├── bootstrap-datepicker3.min.css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── main.css │ └── styles.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── humans.txt ├── img │ ├── En-us-wind-air.ogg │ ├── FP7genRGB.gif │ ├── banner_BSC.jpeg │ ├── banner_BSC2.jpeg │ ├── banner_BSC23.jpeg │ ├── bsc-logo.jpg │ ├── bsc-logo_big.jpeg │ ├── bsc-logo_trans.png │ ├── bsc-msrc_logo.png │ ├── external.png │ ├── favicon.ico │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── header.png │ ├── icon.load.gif │ ├── imatge_web.png │ ├── imatge_web_forkme.jpeg │ ├── img_background.png │ ├── info_blue.png │ ├── info_small.png │ ├── loading.gif │ ├── logo │ │ └── aloja.png │ ├── msr-logo.jpg │ ├── pdf.gif │ ├── ppt.png │ ├── screenshots │ │ ├── Team.png │ │ ├── bestconfig.jpeg │ │ ├── charts1.jpeg │ │ ├── configimprovement.png │ │ ├── costs.jpeg │ │ ├── counters.jpeg │ │ ├── datatable.jpeg │ │ ├── parameval.jpg │ │ └── perfmetrics.jpg │ └── videocaption.jpeg ├── inc │ ├── AlojaTwigExtension.php │ ├── DBUtils.php │ ├── HighCharts.php │ ├── MLUtils.php │ ├── Utils.php │ └── dbscan │ │ ├── Cluster.php │ │ ├── DBSCAN.php │ │ ├── DistanceEuclidean.php │ │ ├── DistanceInterface.php │ │ ├── Point.php │ │ ├── SearchInterface.php │ │ ├── SearchLinear.php │ │ └── SearchLinearCached.php ├── index.php ├── js │ ├── URI.min.js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap.min.js │ ├── datatables.new │ │ ├── Contributing.md │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dataTables.jquery.json │ │ ├── extensions │ │ │ ├── AutoFill │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ ├── images │ │ │ │ │ └── filler.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ ├── ColReorder │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ ├── images │ │ │ │ │ └── insert.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ ├── ColVis │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ ├── FixedColumns │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ ├── FixedHeader │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ ├── KeyTable │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ └── js │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ ├── Responsive │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ └── js │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ ├── Scroller │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ ├── images │ │ │ │ │ └── loading-background.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ └── TableTools │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ ├── images │ │ │ │ ├── background.png │ │ │ │ ├── collection.png │ │ │ │ ├── collection_hover.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── csv.png │ │ │ │ ├── csv_hover.png │ │ │ │ ├── pdf.png │ │ │ │ ├── pdf_hover.png │ │ │ │ ├── print.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── psd │ │ │ │ │ ├── collection.psd │ │ │ │ │ ├── copy document.psd │ │ │ │ │ ├── file_types.psd │ │ │ │ │ └── printer.psd │ │ │ │ ├── xls.png │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── license.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ └── package.json │ ├── datatables │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ ├── ColReorder.min.js.gz │ │ │ │ │ │ └── ColReorder.nightly.min.js │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ ├── ColVis.min.js.gz │ │ │ │ │ │ └── ColVis.nightly.min.js │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ ├── FixedHeader.min.js.gz │ │ │ │ │ └── FixedHeader.nightly.min.js │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ ├── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── as3 │ │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ │ ├── css │ │ │ │ │ │ ├── TableTools.css │ │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ ├── js │ │ │ │ │ │ ├── TableTools.js │ │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ │ ├── TableTools.nightly.min.js │ │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ │ └── swf │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ │ ├── draggable-legend │ │ │ │ └── draggable-legend.js │ │ │ └── export-csv │ │ │ │ └── export-csv.js │ │ └── media │ │ │ ├── as3 │ │ │ ├── ZeroClipboard.as │ │ │ ├── ZeroClipboardPdf.as │ │ │ └── lib │ │ │ │ └── AlivePDF.swc │ │ │ ├── css │ │ │ ├── TableTools.css │ │ │ ├── TableTools_JUI.css │ │ │ ├── demo_page.css │ │ │ ├── demo_table.css │ │ │ ├── demo_table_jui.css │ │ │ ├── jquery.dataTables.css │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── background.png │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── favicon.ico │ │ │ ├── forward_disabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── forward_enabled_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ ├── sort_desc_disabled.png │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ ├── js │ │ │ ├── TableTools.js │ │ │ ├── TableTools.min.js │ │ │ ├── TableTools.min.js.gz │ │ │ ├── TableTools.nightly.min.js │ │ │ ├── ZeroClipboard.js │ │ │ ├── jquery.csv2table.js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.js │ │ │ ├── jquery.highchartTable.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── export-csv.js │ ├── exporting.js │ ├── highcharts.js │ ├── highcharts │ │ ├── exporting-server │ │ │ ├── java │ │ │ │ ├── highcharts-export │ │ │ │ │ ├── highcharts-export-convert │ │ │ │ │ │ ├── pom.xml │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ │ └── highcharts │ │ │ │ │ │ │ │ │ └── export │ │ │ │ │ │ │ │ │ ├── converter │ │ │ │ │ │ │ │ │ ├── SVGConverter.java │ │ │ │ │ │ │ │ │ └── SVGConverterException.java │ │ │ │ │ │ │ │ │ ├── pool │ │ │ │ │ │ │ │ │ ├── AbstractPool.java │ │ │ │ │ │ │ │ │ ├── BlockingQueuePool.java │ │ │ │ │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ │ │ │ │ ├── ObjectPool.java │ │ │ │ │ │ │ │ │ ├── PoolException.java │ │ │ │ │ │ │ │ │ └── ServerObjectFactory.java │ │ │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ │ │ ├── Server.java │ │ │ │ │ │ │ │ │ ├── ServerState.java │ │ │ │ │ │ │ │ │ └── TimeOut.java │ │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── MimeType.java │ │ │ │ │ │ │ │ │ └── TempDir.java │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ ├── app-convert.properties │ │ │ │ │ │ │ │ ├── log4j.properties │ │ │ │ │ │ │ │ ├── phantomjs │ │ │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ │ │ ├── highcharts-3d.js │ │ │ │ │ │ │ │ ├── highcharts-convert.js │ │ │ │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ │ │ ├── jquery.1.9.1.min.js │ │ │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ │ │ └── solid-gauge.js │ │ │ │ │ │ │ │ └── spring-convert.xml │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ ├── app-convert.properties │ │ │ │ │ │ │ ├── com │ │ │ │ │ │ │ │ └── highcharts │ │ │ │ │ │ │ │ │ └── export │ │ │ │ │ │ │ │ │ ├── converter │ │ │ │ │ │ │ │ │ ├── SVGConverter.class │ │ │ │ │ │ │ │ │ └── SVGConverterException.class │ │ │ │ │ │ │ │ │ ├── pool │ │ │ │ │ │ │ │ │ ├── AbstractPool$1.class │ │ │ │ │ │ │ │ │ ├── AbstractPool.class │ │ │ │ │ │ │ │ │ ├── BlockingQueuePool.class │ │ │ │ │ │ │ │ │ ├── ObjectFactory.class │ │ │ │ │ │ │ │ │ ├── ObjectPool.class │ │ │ │ │ │ │ │ │ ├── PoolException.class │ │ │ │ │ │ │ │ │ ├── ServerObjectFactory$PortStatus.class │ │ │ │ │ │ │ │ │ └── ServerObjectFactory.class │ │ │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ │ │ ├── Server$1.class │ │ │ │ │ │ │ │ │ ├── Server.class │ │ │ │ │ │ │ │ │ ├── ServerState.class │ │ │ │ │ │ │ │ │ └── TimeOut.class │ │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── MimeType.class │ │ │ │ │ │ │ │ │ └── TempDir.class │ │ │ │ │ │ │ ├── log4j.properties │ │ │ │ │ │ │ ├── phantomjs │ │ │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ │ │ ├── highcharts-3d.js │ │ │ │ │ │ │ │ ├── highcharts-convert.js │ │ │ │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ │ │ │ ├── highcharts.js │ │ │ │ │ │ │ │ ├── highstock.js │ │ │ │ │ │ │ │ ├── jquery.1.9.1.min.js │ │ │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ │ │ └── solid-gauge.js │ │ │ │ │ │ │ └── spring-convert.xml │ │ │ │ │ │ │ ├── highcharts-export-convert.jar │ │ │ │ │ │ │ └── maven-archiver │ │ │ │ │ │ │ └── pom.properties │ │ │ │ │ ├── highcharts-export-web │ │ │ │ │ │ ├── pom.xml │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ │ └── highcharts │ │ │ │ │ │ │ │ │ └── export │ │ │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ │ ├── ExportController.java │ │ │ │ │ │ │ │ │ └── ZeroRequestParameterException.java │ │ │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ │ │ └── CorsFilter.java │ │ │ │ │ │ │ │ │ ├── interceptor │ │ │ │ │ │ │ │ │ └── RequestInterceptor.java │ │ │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ │ └── MonitorService.java │ │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ │ └── log4j.properties │ │ │ │ │ │ │ │ └── webapp │ │ │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ │ └── context.xml │ │ │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ │ │ ├── jspf │ │ │ │ │ │ │ │ │ ├── callback.js │ │ │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ │ │ └── lexl.svg │ │ │ │ │ │ │ │ ├── pages │ │ │ │ │ │ │ │ │ ├── demo.jsp │ │ │ │ │ │ │ │ │ └── error.jsp │ │ │ │ │ │ │ │ ├── spring │ │ │ │ │ │ │ │ │ ├── app-convert.properties │ │ │ │ │ │ │ │ │ ├── export-servlet.xml │ │ │ │ │ │ │ │ │ └── spring-context.xml │ │ │ │ │ │ │ │ └── web.xml │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ ├── Highcharts-icon-160px.png │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── demo.css │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── codemirror │ │ │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ │ │ ├── mode │ │ │ │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ │ │ │ └── typescript.html │ │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ └── xml.js │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ │ │ │ ├── formatting.js │ │ │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ │ │ │ ├── pig-hint.js │ │ │ │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ │ │ ├── searchcursor.js │ │ │ │ │ │ │ │ │ ├── simple-hint.css │ │ │ │ │ │ │ │ │ ├── simple-hint.js │ │ │ │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ │ │ └── target │ │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ ├── com │ │ │ │ │ │ │ │ └── highcharts │ │ │ │ │ │ │ │ │ └── export │ │ │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ │ ├── ExportController.class │ │ │ │ │ │ │ │ │ └── ZeroRequestParameterException.class │ │ │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ │ │ └── CorsFilter.class │ │ │ │ │ │ │ │ │ ├── interceptor │ │ │ │ │ │ │ │ │ └── RequestInterceptor.class │ │ │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ │ └── MonitorService.class │ │ │ │ │ │ │ └── log4j.properties │ │ │ │ │ │ │ ├── highcharts-export-web.war │ │ │ │ │ │ │ ├── highcharts-export-web │ │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ │ └── context.xml │ │ │ │ │ │ │ ├── WEB-INF │ │ │ │ │ │ │ │ ├── classes │ │ │ │ │ │ │ │ │ ├── com │ │ │ │ │ │ │ │ │ │ └── highcharts │ │ │ │ │ │ │ │ │ │ │ └── export │ │ │ │ │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ │ │ │ ├── ExportController.class │ │ │ │ │ │ │ │ │ │ │ └── ZeroRequestParameterException.class │ │ │ │ │ │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ │ │ │ │ └── CorsFilter.class │ │ │ │ │ │ │ │ │ │ │ ├── interceptor │ │ │ │ │ │ │ │ │ │ │ └── RequestInterceptor.class │ │ │ │ │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ │ │ │ └── MonitorService.class │ │ │ │ │ │ │ │ │ └── log4j.properties │ │ │ │ │ │ │ │ ├── jspf │ │ │ │ │ │ │ │ │ ├── callback.js │ │ │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ │ │ └── lexl.svg │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ ├── aopalliance-1.0.jar │ │ │ │ │ │ │ │ │ ├── asm-3.3.1.jar │ │ │ │ │ │ │ │ │ ├── cglib-2.2.2.jar │ │ │ │ │ │ │ │ │ ├── commons-codec-1.7.jar │ │ │ │ │ │ │ │ │ ├── commons-fileupload-1.2.2.jar │ │ │ │ │ │ │ │ │ ├── commons-io-1.3.2.jar │ │ │ │ │ │ │ │ │ ├── commons-lang-2.5.jar │ │ │ │ │ │ │ │ │ ├── commons-logging-1.1.1.jar │ │ │ │ │ │ │ │ │ ├── gson-2.2.2.jar │ │ │ │ │ │ │ │ │ ├── highcharts-export-convert-2.1.0.jar │ │ │ │ │ │ │ │ │ ├── log4j-1.2.14.jar │ │ │ │ │ │ │ │ │ ├── spring-aop-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ ├── spring-beans-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ ├── spring-context-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ ├── spring-core-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ ├── spring-expression-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ ├── spring-web-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ ├── spring-webmvc-3.2.0.RELEASE.jar │ │ │ │ │ │ │ │ │ └── standard-1.1.2.jar │ │ │ │ │ │ │ │ ├── pages │ │ │ │ │ │ │ │ │ ├── demo.jsp │ │ │ │ │ │ │ │ │ └── error.jsp │ │ │ │ │ │ │ │ ├── spring │ │ │ │ │ │ │ │ │ ├── app-convert.properties │ │ │ │ │ │ │ │ │ ├── export-servlet.xml │ │ │ │ │ │ │ │ │ └── spring-context.xml │ │ │ │ │ │ │ │ └── web.xml │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ ├── Highcharts-icon-160px.png │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── demo.css │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── codemirror │ │ │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ │ │ ├── mode │ │ │ │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ │ │ │ └── typescript.html │ │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ └── xml.js │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ │ │ ├── dialog.js │ │ │ │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ │ │ │ ├── formatting.js │ │ │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ │ │ │ ├── pig-hint.js │ │ │ │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ │ │ ├── searchcursor.js │ │ │ │ │ │ │ │ │ ├── simple-hint.css │ │ │ │ │ │ │ │ │ ├── simple-hint.js │ │ │ │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ │ │ │ └── jquery-1.11.0.min.js │ │ │ │ │ │ │ └── maven-archiver │ │ │ │ │ │ │ └── pom.properties │ │ │ │ │ └── pom.xml │ │ │ │ └── readme.md │ │ │ ├── phantomjs │ │ │ │ ├── data.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── funnel.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── highcharts-3d.js │ │ │ │ ├── highcharts-convert.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── jquery.1.9.1.min.js │ │ │ │ ├── map.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ ├── readme.md │ │ │ │ └── solid-gauge.js │ │ │ └── php │ │ │ │ └── php-batik │ │ │ │ └── index.php │ │ ├── gfx │ │ │ └── vml-radial-gradient.png │ │ ├── graphics │ │ │ ├── meteogram-symbols-30px.png │ │ │ ├── skies.jpg │ │ │ ├── snow.png │ │ │ └── sun.png │ │ ├── index.htm │ │ └── js │ │ │ ├── adapters │ │ │ ├── standalone-framework.js │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-3d.js │ │ │ ├── highcharts-3d.src.js │ │ │ ├── highcharts-all.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ ├── canvas-tools.js │ │ │ ├── canvas-tools.src.js │ │ │ ├── data.js │ │ │ ├── data.src.js │ │ │ ├── drilldown.js │ │ │ ├── drilldown.src.js │ │ │ ├── exporting.js │ │ │ ├── exporting.src.js │ │ │ ├── funnel.js │ │ │ ├── funnel.src.js │ │ │ ├── heatmap.js │ │ │ ├── heatmap.src.js │ │ │ ├── no-data-to-display.js │ │ │ ├── no-data-to-display.src.js │ │ │ ├── solid-gauge.js │ │ │ └── solid-gauge.src.js │ │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── dark-unica.js │ │ │ ├── gray.js │ │ │ ├── grid-light.js │ │ │ ├── grid.js │ │ │ ├── sand-signika.js │ │ │ └── skies.js │ ├── jquery.deserialize.js │ ├── jquery.min.js │ ├── no-data-to-display.js │ ├── slider │ │ ├── css │ │ │ └── slider.css │ │ ├── js │ │ │ └── bootstrap-slider.js │ │ └── less │ │ │ └── slider.less │ ├── treant-js-master │ │ ├── README.md │ │ ├── Treant.css │ │ ├── Treant.js │ │ ├── Treant.min.js │ │ ├── build │ │ └── vendor │ │ │ ├── jquery.easing.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.mousewheel.js │ │ │ ├── perfect-scrollbar │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ │ └── raphael.js │ └── utils.js ├── logs │ └── .git_ignored_folder ├── phpunit.xml ├── phpunit_bootstrap.php ├── presentations │ └── aloja-web │ │ ├── .sass-cache │ │ ├── 13b3bedb20fffdbc4c4c9881d3604f1258f7064a │ │ │ ├── _reset.scssc │ │ │ └── _support.scssc │ │ ├── 17f944903a477bc9da483e8668a24ea1e1707770 │ │ │ └── _hacks.scssc │ │ ├── 45f32dffe29a8dda10f4d72eb395240167bed0e2 │ │ │ ├── _base.scssc │ │ │ ├── _variables.scssc │ │ │ ├── default.scssc │ │ │ ├── io2013.scssc │ │ │ └── phone.scssc │ │ ├── 9f1478a52e8047ae96bbae6e5f83d9935b5f6f66 │ │ │ └── _utilities.scssc │ │ └── d011a45e2763f90a37120075f0a730deca0a7cc5 │ │ │ ├── _background-size.scssc │ │ │ ├── _border-radius.scssc │ │ │ ├── _box-shadow.scssc │ │ │ ├── _box-sizing.scssc │ │ │ ├── _box.scssc │ │ │ ├── _columns.scssc │ │ │ ├── _deprecated-support.scssc │ │ │ ├── _images.scssc │ │ │ ├── _text-shadow.scssc │ │ │ ├── _transform.scssc │ │ │ ├── _transition.scssc │ │ │ └── _user-interface.scssc │ │ ├── LICENSE │ │ ├── README.html │ │ ├── README.md │ │ ├── app.yaml │ │ ├── config.rb │ │ ├── images │ │ ├── bsc-logo_big.jpeg │ │ ├── bsc-logo_big.png │ │ ├── bsc_logo_medium.jpg │ │ ├── bsc_logo_medium.png │ │ ├── chrome-logo-tiny.png │ │ ├── favicon.ico │ │ ├── infrastructure.jpg │ │ ├── logo_bsc.jpg │ │ ├── logo_bsc.png │ │ ├── screenshots │ │ │ ├── bestconfig.jpeg │ │ │ ├── charts1.jpeg │ │ │ ├── configimprovement.png │ │ │ ├── costs.jpeg │ │ │ ├── counters.jpeg │ │ │ ├── datatable.jpeg │ │ │ ├── histogram.jpeg │ │ │ ├── parameval.jpg │ │ │ ├── perfmetrics.jpg │ │ │ └── perfmetrics.png │ │ └── sky.jpg │ │ ├── js │ │ ├── hammer.js │ │ ├── modernizr.custom.45394.js │ │ ├── order.js │ │ ├── polyfills │ │ │ ├── classList.min.js │ │ │ ├── dataset.min.js │ │ │ └── history.min.js │ │ ├── prettify │ │ │ ├── lang-apollo.js │ │ │ ├── lang-clj.js │ │ │ ├── lang-css.js │ │ │ ├── lang-go.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-n.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-tex.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-xq.js │ │ │ ├── lang-yaml.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── require-1.0.8.min.js │ │ ├── slide-controller.js │ │ ├── slide-deck.js │ │ └── slides.js │ │ ├── scripts │ │ └── md │ │ │ ├── README.md │ │ │ ├── base.html │ │ │ ├── render.py │ │ │ └── slides.md │ │ ├── serve.sh │ │ ├── slide_config.js │ │ ├── template.html │ │ └── theme │ │ ├── css │ │ ├── default.css │ │ ├── io2013.css │ │ └── phone.css │ │ └── scss │ │ ├── _base.scss │ │ ├── _variables.scss │ │ ├── default.scss │ │ ├── io2013.scss │ │ └── phone.scss ├── resources │ ├── aloja_cli.r │ ├── functions.r │ ├── models.r │ ├── precision.r │ ├── queue │ ├── relations.r │ └── searchtrees.r ├── robots.txt ├── serverWorksTest.php ├── tests │ ├── benchexecutions.js │ ├── configimprovement.js │ ├── counters.js │ ├── inc │ │ └── dbscan │ │ │ ├── ClusterTest.php │ │ │ ├── DBSCANHeuristicTest.php │ │ │ ├── DBSCANTest.php │ │ │ ├── DistanceEuclideanTest.php │ │ │ ├── PointTest.php │ │ │ └── SearchLinearTest.php │ ├── mainpage.js │ ├── perfbycost.js │ ├── perfcounters.js │ ├── tests.sh │ ├── tests_db.sql │ └── tests_phpunit.sh ├── travis_index.php └── views │ ├── common │ ├── config_filters.html.twig │ ├── datatables.html.twig │ ├── group_filters.html.twig │ ├── prices_form.html.twig │ └── render_filter.html.twig │ ├── configEvaluationViews │ ├── bestconfig.html.twig │ ├── config_improvement.html.twig │ ├── exec_times.html.twig │ └── parameval.html.twig │ ├── costPerfEvaluationViews │ ├── RAM_evaluation.html.twig │ ├── best_perf_by_cost_cluster.html.twig │ ├── clustercosteffectiveness.html.twig │ ├── cores_evaluation.html.twig │ ├── nodes_evaluation.html.twig │ ├── perf_by_cost.html.twig │ └── perf_by_cost_cluster.html.twig │ ├── defaultViews │ ├── clustercosts.html.twig │ ├── clusters.html.twig │ ├── publications.html.twig │ ├── team.html.twig │ └── welcome.html.twig │ ├── layout.html.twig │ ├── metricvsmetric │ └── metricvsmetric.html.twig │ ├── mltemplate │ ├── custom_filters.html.twig │ ├── mlclearcache.html.twig │ ├── mlcrossvar.html.twig │ ├── mlcrossvar3d.html.twig │ ├── mlcrossvar3dfa.html.twig │ ├── mldatacollapse.html.twig │ ├── mlfindattributes.html.twig │ ├── mlminconfigs.html.twig │ ├── mlnewconfigs.html.twig │ ├── mlobstrees.html.twig │ ├── mloutliers.html.twig │ ├── mlparameval.html.twig │ ├── mlprecision.html.twig │ ├── mlprediction.html.twig │ ├── mlsummaries.html.twig │ └── mlvariableweight.html.twig │ ├── perfDetailsViews │ ├── dbscan.html.twig │ ├── dbscanexecs.html.twig │ ├── histogram.html.twig │ ├── histogramhdi.html.twig │ ├── metrics.html.twig │ └── perfcharts.html.twig │ ├── repositoryViews │ ├── benchexecutions.html.twig │ ├── counters.html.twig │ └── hdp2counters.html.twig │ └── server_error.html.twig ├── blobs └── .git_ignored_folder ├── config ├── bench │ └── config_files │ │ ├── BigBench_conf_template │ │ ├── bigBench.properties │ │ ├── conf │ │ │ └── userSettings.conf │ │ └── engines │ │ │ ├── hive │ │ │ └── conf │ │ │ │ ├── engineSettings.conf │ │ │ │ └── queryParameters.sql │ │ │ ├── hive_old │ │ │ └── conf │ │ │ │ └── engineSettings.conf │ │ │ ├── spark │ │ │ └── conf │ │ │ │ └── engineSettings.conf │ │ │ └── spark_sql │ │ │ └── conf │ │ │ └── engineSettings.conf │ │ ├── HDI-hdp2.6 │ │ ├── capacity-scheduler.xml │ │ ├── commons-logging.properties │ │ ├── configuration.xsl │ │ ├── container-executor.cfg │ │ ├── core-site.xml │ │ ├── dfs.exclude │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics.properties │ │ ├── hadoop-metrics2-azure-file-system.properties │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── health_check │ │ ├── log4j.properties │ │ ├── mapred-env.sh │ │ ├── mapred-queues.xml.template │ │ ├── mapred-site.xml │ │ ├── mapred-site.xml.template │ │ ├── slaves │ │ ├── ssl-client.xml.example │ │ ├── ssl-server.xml.example │ │ ├── task-log4j.properties │ │ ├── taskcontroller.cfg │ │ ├── yarn-env.sh │ │ ├── yarn-site.xml │ │ └── yarn.exclude │ │ ├── apache-tez-0.x-bin_conf_template │ │ ├── tez-default-template.xml │ │ ├── tez-runtime-default-template.xml │ │ └── tez-site.xml │ │ ├── hadoop1.2.1_orig │ │ ├── capacity-scheduler.xml │ │ ├── configuration.xsl │ │ ├── core-site.xml │ │ ├── fair-scheduler.xml │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── log4j.properties │ │ ├── mapred-queue-acls.xml │ │ ├── mapred-site.xml │ │ ├── masters │ │ ├── slaves │ │ ├── ssl-client.xml.example │ │ ├── ssl-server.xml.example │ │ ├── task-log4j.properties │ │ └── taskcontroller.cfg │ │ ├── hadoop1_AOP_conf_template │ │ ├── capacity-scheduler.xml │ │ ├── configuration.xsl │ │ ├── core-site.xml │ │ ├── fair-scheduler.xml │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── log4j.properties │ │ ├── mapred-queue-acls.xml │ │ ├── mapred-site.xml │ │ ├── ssl-client.xml.example │ │ ├── ssl-server.xml.example │ │ ├── task-log4j.properties │ │ └── taskcontroller.cfg │ │ ├── hadoop1_conf_template │ │ ├── capacity-scheduler.xml │ │ ├── configuration.xsl │ │ ├── core-site.xml │ │ ├── fair-scheduler.xml │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics.properties │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── log4j.properties │ │ ├── mapred-queue-acls.xml │ │ ├── mapred-site.xml │ │ ├── task-log4j.properties │ │ └── taskcontroller.cfg │ │ ├── hadoop2.7.1_orig │ │ ├── capacity-scheduler.xml │ │ ├── configuration.xsl │ │ ├── container-executor.cfg │ │ ├── core-site.xml │ │ ├── hadoop-env.cmd │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics.properties │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── httpfs-env.sh │ │ ├── httpfs-log4j.properties │ │ ├── httpfs-signature.secret │ │ ├── httpfs-site.xml │ │ ├── kms-acls.xml │ │ ├── kms-env.sh │ │ ├── kms-log4j.properties │ │ ├── kms-site.xml │ │ ├── log4j.properties │ │ ├── mapred-env.cmd │ │ ├── mapred-env.sh │ │ ├── mapred-queues.xml.template │ │ ├── mapred-site.xml.template │ │ ├── slaves │ │ ├── ssl-client.xml.example │ │ ├── ssl-server.xml.example │ │ ├── yarn-env.cmd │ │ ├── yarn-env.sh │ │ └── yarn-site.xml │ │ ├── hadoop2_conf_template │ │ ├── capacity-scheduler.xml │ │ ├── configuration.xsl │ │ ├── container-executor.cfg │ │ ├── core-site.xml │ │ ├── hadoop-env.cmd │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics.properties │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── httpfs-env.sh │ │ ├── httpfs-log4j.properties │ │ ├── httpfs-signature.secret │ │ ├── httpfs-site.xml │ │ ├── kms-acls.xml │ │ ├── kms-env.sh │ │ ├── kms-log4j.properties │ │ ├── kms-site.xml │ │ ├── log4j.properties │ │ ├── mapred-env.cmd │ │ ├── mapred-env.sh │ │ ├── mapred-queues.xml.template │ │ ├── mapred-site.xml │ │ ├── mapred-site.xml.template │ │ ├── yarn-env.cmd │ │ ├── yarn-env.sh │ │ └── yarn-site.xml │ │ ├── hbase-0.98.22-hadoop2_conf_template │ │ ├── backup-masters │ │ ├── hadoop-metrics2-hbase.properties │ │ ├── hbase-env.cmd │ │ ├── hbase-env.sh │ │ ├── hbase-policy.xml │ │ ├── hbase-site.xml │ │ ├── log4j.properties │ │ └── regionservers │ │ ├── hbase-1.2.4_conf_template │ │ ├── hadoop-metrics2-hbase.properties │ │ ├── hbase-env.cmd │ │ ├── hbase-env.sh │ │ ├── hbase-policy.xml │ │ ├── hbase-site.xml │ │ ├── log4j.properties │ │ └── regionservers │ │ ├── hdp1.3 │ │ ├── capacity-scheduler.xml │ │ ├── commons-logging.properties │ │ ├── core-site.xml │ │ ├── hadoop-env.sh │ │ ├── hadoop-metrics2.properties │ │ ├── hadoop-policy.xml │ │ ├── hdfs-site.xml │ │ ├── health_check │ │ ├── mapred-queue-acls.xml │ │ ├── mapred-site.xml │ │ └── taskcontroller.cfg │ │ ├── hive1_conf_template │ │ ├── beeline-log4j.properties │ │ ├── hive-default.xml │ │ ├── hive-env.sh │ │ ├── hive-exec-log4j.properties │ │ ├── hive-log4j.properties │ │ ├── hive-site.xml │ │ ├── hive.settings │ │ ├── hive.settings_PaaS │ │ └── ivysettings.xml │ │ ├── hive2_conf_template │ │ ├── beeline-log4j.properties │ │ ├── hive-default.xml │ │ ├── hive-env.sh │ │ ├── hive-exec-log4j.properties │ │ ├── hive-log4j.properties │ │ ├── hive-site.xml │ │ ├── hive.settings │ │ ├── hive.settings_PaaS │ │ └── ivysettings.xml │ │ ├── spark-1.x_conf_template │ │ ├── docker.properties.template │ │ ├── fairscheduler.xml.template │ │ ├── log4j.properties.template │ │ ├── metrics.properties.template │ │ ├── slaves.template │ │ ├── spark-defaults.conf │ │ ├── spark-defaults.conf.template │ │ ├── spark-env.sh │ │ └── spark-env.sh.template │ │ ├── spark-2.x_conf_template │ │ ├── docker.properties.template │ │ ├── fairscheduler.xml.template │ │ ├── log4j.properties.template │ │ ├── metrics.properties.template │ │ ├── slaves.template │ │ ├── spark-defaults.conf │ │ ├── spark-defaults.conf.template │ │ ├── spark-env.sh │ │ └── spark-env.sh.template │ │ └── ycsb-0.11.0_conf_template │ │ ├── workloada │ │ ├── workloadb │ │ ├── workloadc │ │ ├── workloadd │ │ ├── workloade │ │ └── workloadf └── schedule │ ├── rscriptWorkload.txt │ └── rscriptWorkloadSmall.txt ├── ganglia ├── package.json ├── publications ├── 2015-08-10-Aloja-ML-KDD15-Slides.pdf ├── 2015-08-10-Aloja-ML-KDD15.pdf ├── ALOJA Cost-effective Big Data deployments.pdf └── BSC-MSR_ALOJA.pdf ├── secure ├── README.md ├── account_defaults.sample.conf ├── azure_settings.sample.conf ├── keys_vagrant │ ├── id_rsa │ ├── id_rsa.pub │ └── vagrant_insecure_key_new ├── provider_defaults.conf └── vagrant_settings.conf └── shell ├── OLD ├── check_execs.sh ├── extract.sh ├── extract_db.sh ├── file2db.sh ├── forer.sh ├── full.sh ├── kill_and_delete.sh ├── load_csv.sh ├── run.sh ├── run_al-03.sh ├── run_al-04.sh ├── run_az.sh └── sar2csv.sh ├── aloja-import2db.sh ├── autoImport.sh ├── common ├── DB │ ├── create_SaaS.sh │ └── update_precal_metrics.sh ├── benchmark_BigBench.sh ├── benchmark_BigBenchSchedule.sh ├── benchmark_BigBench_workload_generator_static.sh ├── benchmark_D2F-Bench-hive.sh ├── benchmark_D2F-Bench-pig.sh ├── benchmark_D2F-Bench-spark.sh ├── benchmark_D2F-native-spark.sh ├── benchmark_Hadoop-Examples.sh ├── benchmark_Hecuba-WordCount.sh ├── benchmark_HiBench2-1TB.sh ├── benchmark_HiBench2-min.sh ├── benchmark_HiBench2.sh ├── benchmark_HiBench3-min.sh ├── benchmark_HiBench3.sh ├── benchmark_HiBench3HDI.sh ├── benchmark_TPC-H-hive.sh ├── benchmark_cluster-bench.sh ├── benchmark_derby-test.sh ├── benchmark_fio.sh ├── benchmark_hadoop-test.sh ├── benchmark_hbase-test.sh ├── benchmark_hbase-ycsb.sh ├── benchmark_hive-test.sh ├── benchmark_hivebench.sh ├── benchmark_iperf.sh ├── benchmark_pig-test.sh ├── benchmark_sample.sh ├── benchmark_sleep-full.sh ├── benchmark_spark-test.sh ├── benchmark_sysbench.sh ├── benchmark_testParallelism.sh ├── cluster_functions.sh ├── common.sh ├── common_BigBench.sh ├── common_BigBenchSchedule.sh ├── common_HiBench.sh ├── common_TPC-H.sh ├── common_benchmarks.sh ├── common_derby.sh ├── common_hadoop.sh ├── common_hbase.sh ├── common_hive.sh ├── common_instrumentation.sh ├── common_java.sh ├── common_pig.sh ├── common_spark.sh ├── common_tez.sh ├── common_ycsb.sh ├── config_functions.sh ├── create_db.sh ├── create_mlschema.sh ├── create_presets_schema.sh ├── globals.sh ├── import_functions.sh ├── include_benchmarks.sh ├── include_import.sh ├── include_process_jobs.sh ├── install_functions.sh ├── provider_functions.sh └── update_mlschema.sh ├── conf ├── amazon_defaults.conf ├── azure_defaults.conf ├── benchmarks_defaults.conf ├── cluster_BQ-164.conf ├── cluster_BQ-date-185.conf ├── cluster_FSOC-245.conf ├── cluster_FSOC-78.conf ├── cluster_RS-1-dc1-large-111.conf ├── cluster_RS-1-ds2-xlarge-125.conf ├── cluster_RS-16-dc1-8xlarge-163.conf ├── cluster_RS-16-ds2-xlarge-162.conf ├── cluster_RS-2-dc1-8xlarge-158.conf ├── cluster_RS-2-ds2-xlarge-130.conf ├── cluster_RS-4-dc1-8xlarge-159.conf ├── cluster_RS-4-ds2-xlarge-131.conf ├── cluster_RS-8-dc1-8xlarge-160.conf ├── cluster_RS-8-ds2-xlarge-136.conf ├── cluster_al-02.conf ├── cluster_al-03.conf ├── cluster_al-04.conf ├── cluster_al-05.conf ├── cluster_al-08.conf ├── cluster_al-14.conf ├── cluster_al-15.conf ├── cluster_al-26.conf ├── cluster_al-267.conf ├── cluster_al-27.conf ├── cluster_al-28.conf ├── cluster_al-29.conf ├── cluster_al-35.conf ├── cluster_al-36.conf ├── cluster_al-39.conf ├── cluster_al-40.conf ├── cluster_al-41.conf ├── cluster_al-46.conf ├── cluster_al-47.conf ├── cluster_al-73.conf ├── cluster_al-74.conf ├── cluster_al-75.conf ├── cluster_al-76.conf ├── cluster_al-77.conf ├── cluster_al-92.conf ├── cluster_aw-07.conf ├── cluster_aws-80.conf ├── cluster_azure-drill-290.conf ├── cluster_bigbench-296.conf ├── cluster_bigbench-297.conf ├── cluster_bigbench-298.conf ├── cluster_bigbench-305.conf ├── cluster_bigbench-306.conf ├── cluster_carma-09.conf ├── cluster_cbd-hadoop1-7-4-201.conf ├── cluster_cbd-hadoop1-7-8-202.conf ├── cluster_cbd-metal40-4-211.conf ├── cluster_cbd-metal40-4-233.conf ├── cluster_cbd-metal40-5-240.conf ├── cluster_dataproc-195.conf ├── cluster_dataproc-288.conf ├── cluster_dataproc-289.conf ├── cluster_dataproc-304.conf ├── cluster_dataproc-8standard4-196.conf ├── cluster_dataproc-8standard4-ssd-197.conf ├── cluster_dataproc-8standard8-208.conf ├── cluster_defaults.conf ├── cluster_emr-116.conf ├── cluster_emr-117.conf ├── cluster_emr-118.conf ├── cluster_emr-16m4xlarge-181.conf ├── cluster_emr-207.conf ├── cluster_emr-287.conf ├── cluster_emr-292.conf ├── cluster_emr-303.conf ├── cluster_emr-8m3xlarge-180.conf ├── cluster_hdi16-24.conf ├── cluster_hdi16-50.conf ├── cluster_hdi16-55.conf ├── cluster_hdi16-64.conf ├── cluster_hdi2-60.conf ├── cluster_hdi2-61.conf ├── cluster_hdi2-62.conf ├── cluster_hdi2-63.conf ├── cluster_hdi24-47.conf ├── cluster_hdi24-56.conf ├── cluster_hdi32-25.conf ├── cluster_hdi32-57.conf ├── cluster_hdi4-20.conf ├── cluster_hdi4-48.conf ├── cluster_hdi4-51.conf ├── cluster_hdi4-58.conf ├── cluster_hdi8-23.conf ├── cluster_hdi8-49.conf ├── cluster_hdi8-54.conf ├── cluster_hdi8-59.conf ├── cluster_hdil14-D14v2-spark163-ADLS-284.conf ├── cluster_hdil16-105.conf ├── cluster_hdil16-109.conf ├── cluster_hdil16-112.conf ├── cluster_hdil16-45.conf ├── cluster_hdil16-74-conflict.conf ├── cluster_hdil16-93.conf ├── cluster_hdil16-A3-115.conf ├── cluster_hdil16-D14v2-spark163-ADLS-301.conf ├── cluster_hdil16-D14v2-spark21-293.conf ├── cluster_hdil16-D14v2-spark21-294.conf ├── cluster_hdil16-D14v2-spark21-295.conf ├── cluster_hdil16-D3-132.conf ├── cluster_hdil16-D3v2-HDP24-209.conf ├── cluster_hdil16-D4-165.conf ├── cluster_hdil16-D4v2-spark21-280.conf ├── cluster_hdil2-67.conf ├── cluster_hdil2-D13v2-spark21-282.conf ├── cluster_hdil2-D3v2-255.conf ├── cluster_hdil24-67.conf ├── cluster_hdil24-68.conf ├── cluster_hdil32-66.conf ├── cluster_hdil32-D14v2-spark163-ADLS-302.conf ├── cluster_hdil32-D14v2-spark21-299.conf ├── cluster_hdil32-D3-168.conf ├── cluster_hdil32-D3v2-HDP24-218.conf ├── cluster_hdil4-106.conf ├── cluster_hdil4-108.conf ├── cluster_hdil4-42.conf ├── cluster_hdil4-94.conf ├── cluster_hdil4-A3-113.conf ├── cluster_hdil4-A3-HDP24-215.conf ├── cluster_hdil4-A3-HDP25-237.conf ├── cluster_hdil4-A3-HDP25-241.conf ├── cluster_hdil4-D3-122.conf ├── cluster_hdil4-D3HDP24-200.conf ├── cluster_hdil4-D3HDP25-238.conf ├── cluster_hdil4-D3HDP25-242.conf ├── cluster_hdil4-D3v2-193.conf ├── cluster_hdil4-D3v2-ADLS-204.conf ├── cluster_hdil4-D3v2-BB-212.conf ├── cluster_hdil4-D3v2HDP24-199.conf ├── cluster_hdil4-D3v2HDP25-239.conf ├── cluster_hdil4-D3v2HDP25-243.conf ├── cluster_hdil4-D4-121.conf ├── cluster_hdil4-D4v2-hive21-262.conf ├── cluster_hdil4-D4v2-spark162-256.conf ├── cluster_hdil4-D4v2-spark201-257.conf ├── cluster_hdil4-D4v2.4-198.conf ├── cluster_hdil4-D4v2HDP24-203.conf ├── cluster_hdil7-D14v2-spark163-281.conf ├── cluster_hdil7-D14v2-spark163-ADLS-283.conf ├── cluster_hdil7-D4v2-spark163-266.conf ├── cluster_hdil7-D4v2-spark163-267.conf ├── cluster_hdil7-D4v2-spark163-268.conf ├── cluster_hdil7-D4v2-spark163-269.conf ├── cluster_hdil7-D4v2-spark163-270.conf ├── cluster_hdil7-D4v2-spark163-271.conf ├── cluster_hdil8-104.conf ├── cluster_hdil8-107.conf ├── cluster_hdil8-43.conf ├── cluster_hdil8-65.conf ├── cluster_hdil8-98.conf ├── cluster_hdil8-A3-114.conf ├── cluster_hdil8-A3-HDP24-216.conf ├── cluster_hdil8-D3-128.conf ├── cluster_hdil8-D3-HDP24-213.conf ├── cluster_hdil8-D3v2-194.conf ├── cluster_hdil8-D3v2-ADLS-234.conf ├── cluster_hdil8-D3v2-ADLS-235.conf ├── cluster_hdil8-D3v2-ADLS-254.conf ├── cluster_hdil8-D3v2-ADLS-258.conf ├── cluster_hdil8-D3v2HDP24-205.conf ├── cluster_hdil8-D4-129.conf ├── cluster_hdil8-D4v2HDP24-206.conf ├── cluster_hdil9.conf.delete ├── cluster_hdit32-110.conf ├── cluster_jetson-44.conf ├── cluster_localhost-02.conf ├── cluster_m1000-01.conf ├── cluster_mb-79.conf ├── cluster_minerva-10.conf ├── cluster_minerva-data-11.conf ├── cluster_minerva1-4-12.conf ├── cluster_minerva100-02-04-127.conf ├── cluster_minerva100-02-10-18.conf ├── cluster_minerva100-02-18-22.conf ├── cluster_minerva100-05-09-123.conf ├── cluster_minerva100-09-18-244.conf ├── cluster_minerva100-10-18-21.conf ├── cluster_minerva100-11-18-161.conf ├── cluster_minerva100-11-18-253.conf ├── cluster_minerva100-17.conf ├── cluster_minerva5-22-76.conf ├── cluster_minerva5-8-13.conf ├── cluster_rb-120.conf ├── cluster_rb-124.conf ├── cluster_rb-126.conf ├── cluster_rb-166.conf ├── cluster_rb-167.conf ├── cluster_rb-38.conf ├── cluster_rb-69.conf ├── cluster_rb-70.conf ├── cluster_rb-71.conf ├── cluster_rb-72.conf ├── cluster_rb-95.conf ├── cluster_rb-96.conf ├── cluster_rb-97.conf ├── cluster_rl-06.conf ├── cluster_rl-16.conf ├── cluster_rl-19.conf ├── cluster_rl-214.conf ├── cluster_rl-30.conf ├── cluster_rl-31.conf ├── cluster_rl-33.conf ├── cluster_rl-37.conf ├── cluster_rl-52.conf ├── cluster_rl-53.conf ├── cluster_rl-NVE-IaaS-291.conf ├── cluster_rl-NVE-OnPrem-236.conf ├── cluster_rl-NVE-OnPrem-261.conf ├── cluster_rl-NVE-OnPrem-264.conf ├── cluster_rl-NVE-PaaS-286.conf ├── cluster_s2rdf-182.conf ├── cluster_vagrant-99.conf ├── cluster_vagrant-aloja-web-210.conf ├── emr_defaults.conf ├── google_defaults.conf ├── hdinsight_defaults.conf ├── node_FSOC-01.conf ├── node_aloja-fs-US.conf ├── node_aloja-fs-old.conf ├── node_aloja-fs-rackspace.conf ├── node_aloja-fs.conf ├── node_aloja-hdiweb.conf ├── node_aloja-test.conf ├── node_aloja-web-azure-old.conf ├── node_aloja-web-azure-paas-us.conf ├── node_aloja-web-azure-us.conf ├── node_aloja-web-rackspace.conf ├── node_aloja-web-vagrant.conf ├── node_alojatesting.conf ├── node_alojaweb-old.conf ├── node_azure-R-A11.conf ├── node_azure-R.conf ├── node_bscaloja.conf ├── node_defaults.conf ├── node_eight-nodes-data.conf ├── node_hca-server.conf ├── node_hdiweb.conf ├── node_importer.conf ├── node_mb-16.conf ├── node_minerva-101.conf ├── node_minerva-users.conf ├── node_openstack-test.conf ├── node_playground-fsoc.conf ├── node_s2rdf-182-00.conf ├── node_sharelatex.conf ├── node_windows-server.conf ├── rackspace_defaults.conf ├── rackspacecbd_defaults.conf ├── rackspacephys_defaults.conf └── s2rdf_defaults.conf ├── create-update_DB.sh ├── exec_cleaner.sh ├── exeq.sh ├── findFailedImports.sh ├── forer.sh ├── generate_exec_names.sh ├── getconf_param.sh ├── hadoop_status.sh ├── hdinsight ├── CopyFilesToAzureStorageContainer.ps1 ├── common.ps1 ├── configadmin.ps1 ├── counters.txt ├── destroycluster.ps1 ├── hdi-import2db.sh ├── listjobs.js ├── retrievejobstimes.js ├── runhdibench.ps1 ├── runsort.ps1 ├── runterasort.ps1 └── runwordcount.ps1 ├── job_history.py ├── monitor ├── monitor.sh ├── monitor_adla.sh ├── monitor_adla_sample.json └── monitor_yarn.sh ├── moveJobs2Import.sh ├── postInstall_rscbd.sh ├── queue ├── conf │ └── counter └── queue.log ├── queueBenchmarks.sh ├── sar ├── archlinux │ ├── .gitignore │ ├── CHANGES │ ├── COPYING │ ├── CREDITS │ ├── FAQ │ ├── INSTALL │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── activity.c │ ├── build │ │ ├── Ask.sh │ │ ├── clean-sa-dir │ │ ├── compress-manpg │ │ ├── compressafter │ │ ├── conf_dir │ │ ├── cron_interval │ │ ├── cron_owner │ │ ├── debuginfo │ │ ├── history │ │ ├── ignore-man-group │ │ ├── install-cron │ │ ├── install-doc │ │ ├── install-isag │ │ ├── man_group │ │ ├── nls │ │ ├── prefix │ │ ├── rcdir │ │ ├── sa_dir │ │ ├── sa_lib_dir │ │ ├── sensors │ │ └── yesterday │ ├── cifsiostat │ ├── cifsiostat.c │ ├── cifsiostat.h │ ├── common.c │ ├── common.h │ ├── configure │ ├── configure.in │ ├── contrib │ │ ├── README-contrib │ │ ├── isag │ │ │ ├── README-isag │ │ │ ├── isag.1 │ │ │ └── isag.in │ │ └── sargraph │ │ │ └── sargraph │ ├── cron │ │ ├── crontab.sample │ │ ├── sysstat.cron.daily.in │ │ ├── sysstat.cron.hourly.in │ │ └── sysstat.crond.in │ ├── format.c │ ├── iconfig │ ├── ioconf.c │ ├── ioconf.h │ ├── iostat │ ├── iostat.c │ ├── iostat.h │ ├── json_stats.c │ ├── json_stats.h │ ├── man │ │ ├── cifsiostat.in │ │ ├── iostat.in │ │ ├── mpstat.1 │ │ ├── nfsiostat.in │ │ ├── pidstat.1 │ │ ├── sa1.in │ │ ├── sa2.in │ │ ├── sadc.in │ │ ├── sadf.in │ │ ├── sar.in │ │ └── sysstat.in │ ├── mpstat │ ├── mpstat.c │ ├── mpstat.h │ ├── nfsiostat │ ├── nfsiostat.c │ ├── nfsiostat.h │ ├── nls │ │ ├── README-nls │ │ ├── af.po │ │ ├── cs.po │ │ ├── da.po │ │ ├── de.po │ │ ├── eo.po │ │ ├── es.po │ │ ├── eu.po │ │ ├── fi.po │ │ ├── fr.po │ │ ├── id.po │ │ ├── it.po │ │ ├── ja.po │ │ ├── ky.po │ │ ├── lv.po │ │ ├── mt.po │ │ ├── nb.po │ │ ├── nl.po │ │ ├── nn.po │ │ ├── pl.po │ │ ├── pt.po │ │ ├── pt_BR.po │ │ ├── ro.po │ │ ├── ru.po │ │ ├── sk.po │ │ ├── sv.po │ │ ├── sysstat.pot │ │ ├── uk.po │ │ ├── vi.po │ │ ├── zh_CN.po │ │ └── zh_TW.po │ ├── pidstat │ ├── pidstat.c │ ├── pidstat.h │ ├── pr_stats.c │ ├── pr_stats.h │ ├── rd_sensors.c │ ├── rd_sensors.h │ ├── rd_stats.c │ ├── rd_stats.h │ ├── rndr_stats.c │ ├── rndr_stats.h │ ├── sa.h │ ├── sa1.in │ ├── sa2.in │ ├── sa_common.c │ ├── sa_wrap.c │ ├── sadc │ ├── sadc.c │ ├── sadf │ ├── sadf.c │ ├── sadf.h │ ├── sadf_misc.c │ ├── sar │ ├── sar.c │ ├── sysconfig.in │ ├── sysstat-10.0.3.lsm │ ├── sysstat-10.0.3.spec │ ├── sysstat.in │ ├── sysstat.ioconf │ ├── sysstat.sysconfig.in │ ├── version.in │ ├── xml │ │ ├── sysstat.dtd │ │ └── sysstat.xsd │ ├── xml_stats.c │ └── xml_stats.h ├── sysstat-10.0.3.tar.bz2 └── ubuntu │ ├── .gitignore │ ├── CHANGES │ ├── COPYING │ ├── CREDITS │ ├── FAQ │ ├── INSTALL │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── activity.c │ ├── build │ ├── Ask.sh │ ├── clean-sa-dir │ ├── compress-manpg │ ├── compressafter │ ├── conf_dir │ ├── cron_interval │ ├── cron_owner │ ├── debuginfo │ ├── history │ ├── ignore-man-group │ ├── install-cron │ ├── install-doc │ ├── install-isag │ ├── man_group │ ├── nls │ ├── prefix │ ├── rcdir │ ├── sa_dir │ ├── sa_lib_dir │ ├── sensors │ └── yesterday │ ├── cifsiostat.c │ ├── cifsiostat.h │ ├── common.c │ ├── common.h │ ├── configure │ ├── configure.in │ ├── contrib │ ├── README-contrib │ ├── isag │ │ ├── README-isag │ │ ├── isag.1 │ │ └── isag.in │ └── sargraph │ │ └── sargraph │ ├── cron │ ├── crontab.sample │ ├── sysstat.cron.daily.in │ ├── sysstat.cron.hourly.in │ └── sysstat.crond.in │ ├── format.c │ ├── iconfig │ ├── ioconf.c │ ├── ioconf.h │ ├── iostat.c │ ├── iostat.h │ ├── json_stats.c │ ├── json_stats.h │ ├── man │ ├── cifsiostat.in │ ├── iostat.in │ ├── mpstat.1 │ ├── nfsiostat.in │ ├── pidstat.1 │ ├── sa1.in │ ├── sa2.in │ ├── sadc.in │ ├── sadf.in │ ├── sar.in │ └── sysstat.in │ ├── mpstat.c │ ├── mpstat.h │ ├── nfsiostat.c │ ├── nfsiostat.h │ ├── nls │ ├── README-nls │ ├── af.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── eo.po │ ├── es.po │ ├── eu.po │ ├── fi.po │ ├── fr.po │ ├── id.po │ ├── it.po │ ├── ja.po │ ├── ky.po │ ├── lv.po │ ├── mt.po │ ├── nb.po │ ├── nl.po │ ├── nn.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sk.po │ ├── sv.po │ ├── sysstat.pot │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po │ ├── pidstat.c │ ├── pidstat.h │ ├── pr_stats.c │ ├── pr_stats.h │ ├── rd_sensors.c │ ├── rd_sensors.h │ ├── rd_stats.c │ ├── rd_stats.h │ ├── rndr_stats.c │ ├── rndr_stats.h │ ├── sa.h │ ├── sa1.in │ ├── sa2.in │ ├── sa_common.c │ ├── sa_wrap.c │ ├── sadc.c │ ├── sadf.c │ ├── sadf.h │ ├── sadf_misc.c │ ├── sar.c │ ├── sysconfig.in │ ├── sysstat-10.0.3.lsm │ ├── sysstat-10.0.3.spec │ ├── sysstat.in │ ├── sysstat.ioconf │ ├── sysstat.sysconfig.in │ ├── version.in │ ├── xml │ ├── sysstat.dtd │ └── sysstat.xsd │ ├── xml_stats.c │ └── xml_stats.h └── test ├── README.md ├── bats-core ├── bin │ └── bats ├── libexec │ ├── bats │ ├── bats-exec-suite │ ├── bats-exec-test │ ├── bats-format-tap-stream │ └── bats-preprocess └── test │ ├── bats.bats │ ├── fixtures │ ├── bats │ │ ├── dos_line.bats │ │ ├── empty.bats │ │ ├── environment.bats │ │ ├── expand_var_in_test_name.bats │ │ ├── failing.bats │ │ ├── failing_and_passing.bats │ │ ├── failing_helper.bats │ │ ├── failing_setup.bats │ │ ├── failing_teardown.bats │ │ ├── intact.bats │ │ ├── invalid_tap.bats │ │ ├── load.bats │ │ ├── loop_keep_IFS.bats │ │ ├── output.bats │ │ ├── passing.bats │ │ ├── passing_and_failing.bats │ │ ├── passing_and_skipping.bats │ │ ├── passing_failing_and_skipping.bats │ │ ├── quoted_and_unquoted_test_names.bats │ │ ├── setup.bats │ │ ├── single_line.bats │ │ ├── skipped.bats │ │ ├── teardown.bats │ │ ├── test_helper.bash │ │ ├── unofficial_bash_strict_mode.bash │ │ ├── unofficial_bash_strict_mode.bats │ │ ├── whitespace.bats │ │ └── without_trailing_newline.bats │ └── suite │ │ ├── empty │ │ └── .gitkeep │ │ ├── multiple │ │ ├── a.bats │ │ └── b.bats │ │ └── single │ │ └── test.bats │ ├── suite.bats │ └── test_helper.bash ├── create_perl_template_subs.bats └── get_max_or_min_int.bats /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/Vagrantfile -------------------------------------------------------------------------------- /aloja-bench/import_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-bench/import_folder.sh -------------------------------------------------------------------------------- /aloja-bench/run_benchs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-bench/run_benchs.sh -------------------------------------------------------------------------------- /aloja-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/README.md -------------------------------------------------------------------------------- /aloja-deploy/cache/.git_ignored_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-deploy/cluster_queue_jobs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/cluster_queue_jobs.sh -------------------------------------------------------------------------------- /aloja-deploy/connect_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/connect_cluster.sh -------------------------------------------------------------------------------- /aloja-deploy/connect_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/connect_node.sh -------------------------------------------------------------------------------- /aloja-deploy/delete_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/delete_cluster.sh -------------------------------------------------------------------------------- /aloja-deploy/delete_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/delete_node.sh -------------------------------------------------------------------------------- /aloja-deploy/deploy_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/deploy_cluster.sh -------------------------------------------------------------------------------- /aloja-deploy/deploy_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/deploy_node.sh -------------------------------------------------------------------------------- /aloja-deploy/files/ganglia_conf.php.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/files/ganglia_conf.php.t -------------------------------------------------------------------------------- /aloja-deploy/files/ganglia_minerva.conf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/files/ganglia_minerva.conf.t -------------------------------------------------------------------------------- /aloja-deploy/files/gmetad.conf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/files/gmetad.conf.t -------------------------------------------------------------------------------- /aloja-deploy/files/gmond.conf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/files/gmond.conf.t -------------------------------------------------------------------------------- /aloja-deploy/files/sshpass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/files/sshpass.sh -------------------------------------------------------------------------------- /aloja-deploy/include/include_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/include/include_deploy.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/amazon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/amazon.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/amazonemr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/amazonemr.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/azure.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/bscaloja.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/bscaloja.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/carma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/carma.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/fsoc.sh: -------------------------------------------------------------------------------- 1 | # FSOC specific functions 2 | 3 | -------------------------------------------------------------------------------- /aloja-deploy/providers/google.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/google.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/hdinsight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/hdinsight.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/minerva100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/minerva100.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/on-premise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/on-premise.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/openstack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/openstack.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/rackspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/rackspace.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/rackspacecbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/rackspacecbd.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/rackspacephys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/rackspacephys.sh -------------------------------------------------------------------------------- /aloja-deploy/providers/vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/providers/vagrant.sh -------------------------------------------------------------------------------- /aloja-deploy/start_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/start_cluster.sh -------------------------------------------------------------------------------- /aloja-deploy/start_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/start_node.sh -------------------------------------------------------------------------------- /aloja-deploy/stop_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/stop_cluster.sh -------------------------------------------------------------------------------- /aloja-deploy/stop_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/stop_node.sh -------------------------------------------------------------------------------- /aloja-deploy/sync_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-deploy/sync_node.sh -------------------------------------------------------------------------------- /aloja-tools/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/jq -------------------------------------------------------------------------------- /aloja-tools/lib/aloja-tools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/lib/aloja-tools.jar -------------------------------------------------------------------------------- /aloja-tools/src/alojatools/JhistToJSON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/src/alojatools/JhistToJSON.java -------------------------------------------------------------------------------- /aloja-tools/src/alojatools/next_cluster_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/src/alojatools/next_cluster_id.sh -------------------------------------------------------------------------------- /aloja-tools/src/cachestat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/src/cachestat.sh -------------------------------------------------------------------------------- /aloja-tools/src/drop_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/src/drop_cache.sh -------------------------------------------------------------------------------- /aloja-tools/src/parsers/yarn-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-tools/src/parsers/yarn-parser.py -------------------------------------------------------------------------------- /aloja-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/.gitignore -------------------------------------------------------------------------------- /aloja-web/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Container/Container.php -------------------------------------------------------------------------------- /aloja-web/Controller/AbstractController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/AbstractController.php -------------------------------------------------------------------------------- /aloja-web/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/DefaultController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLCacheController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLCacheController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLCrossvarController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLCrossvarController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLMinconfigsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLMinconfigsController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLNewconfigsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLNewconfigsController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLOutliersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLOutliersController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLParamevalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLParamevalController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLPrecisionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLPrecisionController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLPredictionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLPredictionController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLSummariesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLSummariesController.php -------------------------------------------------------------------------------- /aloja-web/Controller/MLWeightController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/MLWeightController.php -------------------------------------------------------------------------------- /aloja-web/Controller/PerfDetailsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/PerfDetailsController.php -------------------------------------------------------------------------------- /aloja-web/Controller/RepositoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/RepositoryController.php -------------------------------------------------------------------------------- /aloja-web/Controller/RestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Controller/RestController.php -------------------------------------------------------------------------------- /aloja-web/Filters/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Filters/Filters.php -------------------------------------------------------------------------------- /aloja-web/Router/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/Router/Router.php -------------------------------------------------------------------------------- /aloja-web/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/bower.json -------------------------------------------------------------------------------- /aloja-web/cache/ml/.git_ignored_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-web/cache/prv/.git_ignored_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-web/cache/query/.git_ignored_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-web/cache/twig/.git_ignored_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-web/clearcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/clearcache.php -------------------------------------------------------------------------------- /aloja-web/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/composer.json -------------------------------------------------------------------------------- /aloja-web/composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/composer.phar -------------------------------------------------------------------------------- /aloja-web/config/config.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/config.sample.yml -------------------------------------------------------------------------------- /aloja-web/config/configevalrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/configevalrouter.yml -------------------------------------------------------------------------------- /aloja-web/config/costperfevalrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/costperfevalrouter.yml -------------------------------------------------------------------------------- /aloja-web/config/mlrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/mlrouter.yml -------------------------------------------------------------------------------- /aloja-web/config/perfdetailsrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/perfdetailsrouter.yml -------------------------------------------------------------------------------- /aloja-web/config/repositoryrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/repositoryrouter.yml -------------------------------------------------------------------------------- /aloja-web/config/restrouter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/restrouter.yml -------------------------------------------------------------------------------- /aloja-web/config/router.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/config/router.yml -------------------------------------------------------------------------------- /aloja-web/css/bootstrap-datepicker3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/css/bootstrap-datepicker3.min.css -------------------------------------------------------------------------------- /aloja-web/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /aloja-web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/css/bootstrap.min.css -------------------------------------------------------------------------------- /aloja-web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/css/main.css -------------------------------------------------------------------------------- /aloja-web/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/css/styles.css -------------------------------------------------------------------------------- /aloja-web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /aloja-web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /aloja-web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /aloja-web/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/humans.txt -------------------------------------------------------------------------------- /aloja-web/img/En-us-wind-air.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/En-us-wind-air.ogg -------------------------------------------------------------------------------- /aloja-web/img/FP7genRGB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/FP7genRGB.gif -------------------------------------------------------------------------------- /aloja-web/img/banner_BSC.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/banner_BSC.jpeg -------------------------------------------------------------------------------- /aloja-web/img/banner_BSC2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/banner_BSC2.jpeg -------------------------------------------------------------------------------- /aloja-web/img/banner_BSC23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/banner_BSC23.jpeg -------------------------------------------------------------------------------- /aloja-web/img/bsc-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/bsc-logo.jpg -------------------------------------------------------------------------------- /aloja-web/img/bsc-logo_big.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/bsc-logo_big.jpeg -------------------------------------------------------------------------------- /aloja-web/img/bsc-logo_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/bsc-logo_trans.png -------------------------------------------------------------------------------- /aloja-web/img/bsc-msrc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/bsc-msrc_logo.png -------------------------------------------------------------------------------- /aloja-web/img/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/external.png -------------------------------------------------------------------------------- /aloja-web/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/favicon.ico -------------------------------------------------------------------------------- /aloja-web/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /aloja-web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /aloja-web/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/header.png -------------------------------------------------------------------------------- /aloja-web/img/icon.load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/icon.load.gif -------------------------------------------------------------------------------- /aloja-web/img/imatge_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/imatge_web.png -------------------------------------------------------------------------------- /aloja-web/img/imatge_web_forkme.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/imatge_web_forkme.jpeg -------------------------------------------------------------------------------- /aloja-web/img/img_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/img_background.png -------------------------------------------------------------------------------- /aloja-web/img/info_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/info_blue.png -------------------------------------------------------------------------------- /aloja-web/img/info_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/info_small.png -------------------------------------------------------------------------------- /aloja-web/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/loading.gif -------------------------------------------------------------------------------- /aloja-web/img/logo/aloja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/logo/aloja.png -------------------------------------------------------------------------------- /aloja-web/img/msr-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/msr-logo.jpg -------------------------------------------------------------------------------- /aloja-web/img/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/pdf.gif -------------------------------------------------------------------------------- /aloja-web/img/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/ppt.png -------------------------------------------------------------------------------- /aloja-web/img/screenshots/Team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/Team.png -------------------------------------------------------------------------------- /aloja-web/img/screenshots/bestconfig.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/bestconfig.jpeg -------------------------------------------------------------------------------- /aloja-web/img/screenshots/charts1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/charts1.jpeg -------------------------------------------------------------------------------- /aloja-web/img/screenshots/configimprovement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/configimprovement.png -------------------------------------------------------------------------------- /aloja-web/img/screenshots/costs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/costs.jpeg -------------------------------------------------------------------------------- /aloja-web/img/screenshots/counters.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/counters.jpeg -------------------------------------------------------------------------------- /aloja-web/img/screenshots/datatable.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/datatable.jpeg -------------------------------------------------------------------------------- /aloja-web/img/screenshots/parameval.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/parameval.jpg -------------------------------------------------------------------------------- /aloja-web/img/screenshots/perfmetrics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/screenshots/perfmetrics.jpg -------------------------------------------------------------------------------- /aloja-web/img/videocaption.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/img/videocaption.jpeg -------------------------------------------------------------------------------- /aloja-web/inc/AlojaTwigExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/AlojaTwigExtension.php -------------------------------------------------------------------------------- /aloja-web/inc/DBUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/DBUtils.php -------------------------------------------------------------------------------- /aloja-web/inc/HighCharts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/HighCharts.php -------------------------------------------------------------------------------- /aloja-web/inc/MLUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/MLUtils.php -------------------------------------------------------------------------------- /aloja-web/inc/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/Utils.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/Cluster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/Cluster.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/DBSCAN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/DBSCAN.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/DistanceEuclidean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/DistanceEuclidean.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/DistanceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/DistanceInterface.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/Point.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/SearchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/SearchInterface.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/SearchLinear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/SearchLinear.php -------------------------------------------------------------------------------- /aloja-web/inc/dbscan/SearchLinearCached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/inc/dbscan/SearchLinearCached.php -------------------------------------------------------------------------------- /aloja-web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/index.php -------------------------------------------------------------------------------- /aloja-web/js/URI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/URI.min.js -------------------------------------------------------------------------------- /aloja-web/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /aloja-web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/bootstrap.min.js -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables.new/Contributing.md -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables.new/Readme.md -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables.new/bower.json -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables.new/composer.json -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables.new/license.txt -------------------------------------------------------------------------------- /aloja-web/js/datatables.new/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables.new/package.json -------------------------------------------------------------------------------- /aloja-web/js/datatables/media/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables/media/images/copy.png -------------------------------------------------------------------------------- /aloja-web/js/datatables/media/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables/media/images/csv.png -------------------------------------------------------------------------------- /aloja-web/js/datatables/media/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables/media/images/pdf.png -------------------------------------------------------------------------------- /aloja-web/js/datatables/media/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables/media/images/xls.png -------------------------------------------------------------------------------- /aloja-web/js/datatables/media/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/datatables/media/js/jquery.js -------------------------------------------------------------------------------- /aloja-web/js/export-csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/export-csv.js -------------------------------------------------------------------------------- /aloja-web/js/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/exporting.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/graphics/skies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/graphics/skies.jpg -------------------------------------------------------------------------------- /aloja-web/js/highcharts/graphics/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/graphics/snow.png -------------------------------------------------------------------------------- /aloja-web/js/highcharts/graphics/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/graphics/sun.png -------------------------------------------------------------------------------- /aloja-web/js/highcharts/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/index.htm -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/highcharts-3d.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/highcharts-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/highcharts-all.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/highcharts-more.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/highcharts.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/highcharts.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/highcharts.src.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/modules/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/modules/data.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/modules/funnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/modules/funnel.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/modules/heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/modules/heatmap.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/themes/gray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/themes/gray.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/themes/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/themes/grid.js -------------------------------------------------------------------------------- /aloja-web/js/highcharts/js/themes/skies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/highcharts/js/themes/skies.js -------------------------------------------------------------------------------- /aloja-web/js/jquery.deserialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/jquery.deserialize.js -------------------------------------------------------------------------------- /aloja-web/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/jquery.min.js -------------------------------------------------------------------------------- /aloja-web/js/no-data-to-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/no-data-to-display.js -------------------------------------------------------------------------------- /aloja-web/js/slider/css/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/slider/css/slider.css -------------------------------------------------------------------------------- /aloja-web/js/slider/js/bootstrap-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/slider/js/bootstrap-slider.js -------------------------------------------------------------------------------- /aloja-web/js/slider/less/slider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/slider/less/slider.less -------------------------------------------------------------------------------- /aloja-web/js/treant-js-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/treant-js-master/README.md -------------------------------------------------------------------------------- /aloja-web/js/treant-js-master/Treant.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/treant-js-master/Treant.css -------------------------------------------------------------------------------- /aloja-web/js/treant-js-master/Treant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/treant-js-master/Treant.js -------------------------------------------------------------------------------- /aloja-web/js/treant-js-master/Treant.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/treant-js-master/Treant.min.js -------------------------------------------------------------------------------- /aloja-web/js/treant-js-master/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/treant-js-master/build -------------------------------------------------------------------------------- /aloja-web/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/js/utils.js -------------------------------------------------------------------------------- /aloja-web/logs/.git_ignored_folder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aloja-web/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/phpunit.xml -------------------------------------------------------------------------------- /aloja-web/phpunit_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/phpunit_bootstrap.php -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/LICENSE -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/README.html -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/README.md -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/app.yaml -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/config.rb -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/js/order.js -------------------------------------------------------------------------------- /aloja-web/presentations/aloja-web/serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/presentations/aloja-web/serve.sh -------------------------------------------------------------------------------- /aloja-web/resources/aloja_cli.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/aloja_cli.r -------------------------------------------------------------------------------- /aloja-web/resources/functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/functions.r -------------------------------------------------------------------------------- /aloja-web/resources/models.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/models.r -------------------------------------------------------------------------------- /aloja-web/resources/precision.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/precision.r -------------------------------------------------------------------------------- /aloja-web/resources/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/queue -------------------------------------------------------------------------------- /aloja-web/resources/relations.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/relations.r -------------------------------------------------------------------------------- /aloja-web/resources/searchtrees.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/resources/searchtrees.r -------------------------------------------------------------------------------- /aloja-web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aloja/aloja/HEAD/aloja-web/robots.txt -------------------------------------------------------------------------------- /aloja-web/serverWorksTest.php: -------------------------------------------------------------------------------- 1 |