├── .gitignore ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── __init__.py ├── data_example.csv ├── logs ├── dir_for_logs └── folder_for_logs ├── ltc ├── __init__.py ├── __main__.py ├── admin │ ├── __init__.py │ ├── apps.py │ ├── decorators.py │ └── sites.py ├── analyzer │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_reporttemplate_reportvariable.py │ │ ├── 0003_reporttemplate_body.py │ │ ├── 0004_auto_20210526_1744.py │ │ ├── 0005_auto_20210526_1755.py │ │ ├── 0006_graphitevariable_function.py │ │ ├── 0007_graphitevariable_rampup_include.py │ │ ├── 0008_reportcache.py │ │ ├── 0009_graphitevariable_period.py │ │ ├── 0010_auto_20210603_1622.py │ │ ├── 0011_auto_20210608_1015.py │ │ ├── 0012_auto_20210608_1042.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── analyzer │ │ │ ├── index.html │ │ │ └── report │ │ │ │ └── test_report │ │ │ │ ├── action_details.html │ │ │ │ ├── aggregate_table.html │ │ │ │ ├── compare.html │ │ │ │ ├── highlights.html │ │ │ │ ├── monitoring.html │ │ │ │ ├── overview.html │ │ │ │ ├── report.html │ │ │ │ └── rtot.html │ │ ├── confluence │ │ │ ├── aggregate_table.html │ │ │ └── last_tests_table.html │ │ └── upload │ │ │ ├── success.html │ │ │ └── test_result_file.html │ ├── templatetags │ │ ├── __init__.py │ │ └── analyzer_extras.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ └── analyzer_views.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── base │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210517_1754.py │ │ ├── 0003_test_temp_path.py │ │ ├── 0004_test_vars.py │ │ ├── 0005_test_last_active.py │ │ ├── 0006_auto_20210526_1446.py │ │ ├── 0007_project_project_template.py │ │ ├── 0008_configuration.py │ │ ├── 0009_test_is_locked.py │ │ ├── 0010_test_online_lines_analyzed.py │ │ ├── 0011_auto_20220316_1624.py │ │ ├── 0012_test_remote_temp_path.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── billboard │ │ │ │ ├── billboard.min.css │ │ │ │ └── themes │ │ │ │ │ ├── datalab.min.css │ │ │ │ │ ├── graph.min.css │ │ │ │ │ └── insight.min.css │ │ │ └── ltc.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ └── innogames_logo.png │ │ └── js │ │ │ ├── analyzer │ │ │ ├── analyzer.js │ │ │ ├── report.js │ │ │ └── testreport.js │ │ │ ├── billboard │ │ │ ├── billboard.min.js │ │ │ ├── billboardjs-plugin-bubblecompare.min.js │ │ │ ├── billboardjs-plugin-stanford.min.js │ │ │ └── billboardjs-plugin-textoverlap.min.js │ │ │ ├── dashboard │ │ │ └── dashboard.js │ │ │ ├── ltc.js │ │ │ ├── online │ │ │ └── online.js │ │ │ └── tablesorter │ │ │ ├── jquery.tablesorter.min.js │ │ │ ├── jquery.tablesorter.widgets.min.js │ │ │ └── widgets │ │ │ ├── widget-filter.js │ │ │ └── widget-stickyHeaders.js │ ├── templates │ │ └── ltc │ │ │ ├── base.html │ │ │ ├── dashboard.html │ │ │ └── dashboard │ │ │ ├── last_tests.html │ │ │ └── last_tests_in_projects.html │ ├── tests.py │ ├── urls.py │ ├── utils │ │ └── confluence │ │ │ ├── __init__.py │ │ │ ├── confluenceposter.py │ │ │ └── helpers.py │ └── views.py ├── controller │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── graphite │ │ ├── __init__.py │ │ └── graphiteclient.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── check_tests.py │ │ │ ├── daemon.py │ │ │ ├── gather_jmeter_instances_info.py │ │ │ ├── loadgenerators_monitor.py │ │ │ ├── post_to_confluence.py │ │ │ └── start_test.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210517_1754.py │ │ ├── 0003_auto_20210603_1631.py │ │ ├── 0004_auto_20210608_1506.py │ │ ├── 0005_auto_20220316_1624.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views │ │ ├── __init__.py │ │ ├── controller_views.py │ │ └── data_generator.py ├── local_settings.example.py ├── online │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── online │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── settings.py ├── templatetags │ ├── __init__.py │ └── tags.py ├── urls.py └── wsgi.py ├── manage.py ├── pics ├── aggregate.png ├── analyzer.png └── dashboard.png ├── requirements.txt ├── run └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/data_example.csv -------------------------------------------------------------------------------- /logs/dir_for_logs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/folder_for_logs: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /ltc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/__main__.py -------------------------------------------------------------------------------- /ltc/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/admin/__init__.py -------------------------------------------------------------------------------- /ltc/admin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/admin/apps.py -------------------------------------------------------------------------------- /ltc/admin/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/admin/decorators.py -------------------------------------------------------------------------------- /ltc/admin/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/admin/sites.py -------------------------------------------------------------------------------- /ltc/analyzer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/analyzer/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/admin.py -------------------------------------------------------------------------------- /ltc/analyzer/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/apps.py -------------------------------------------------------------------------------- /ltc/analyzer/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/forms.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0001_initial.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0002_reporttemplate_reportvariable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0002_reporttemplate_reportvariable.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0003_reporttemplate_body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0003_reporttemplate_body.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0004_auto_20210526_1744.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0004_auto_20210526_1744.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0005_auto_20210526_1755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0005_auto_20210526_1755.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0006_graphitevariable_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0006_graphitevariable_function.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0007_graphitevariable_rampup_include.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0007_graphitevariable_rampup_include.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0008_reportcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0008_reportcache.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0009_graphitevariable_period.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0009_graphitevariable_period.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0010_auto_20210603_1622.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0010_auto_20210603_1622.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0011_auto_20210608_1015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0011_auto_20210608_1015.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/0012_auto_20210608_1042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/migrations/0012_auto_20210608_1042.py -------------------------------------------------------------------------------- /ltc/analyzer/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/analyzer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/models.py -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/index.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/action_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/action_details.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/aggregate_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/aggregate_table.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/compare.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/highlights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/highlights.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/monitoring.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/overview.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/report.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/analyzer/report/test_report/rtot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/analyzer/report/test_report/rtot.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/confluence/aggregate_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/confluence/aggregate_table.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/confluence/last_tests_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/confluence/last_tests_table.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/upload/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/upload/success.html -------------------------------------------------------------------------------- /ltc/analyzer/templates/upload/test_result_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templates/upload/test_result_file.html -------------------------------------------------------------------------------- /ltc/analyzer/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/analyzer/templatetags/analyzer_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/templatetags/analyzer_extras.py -------------------------------------------------------------------------------- /ltc/analyzer/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/tests.py -------------------------------------------------------------------------------- /ltc/analyzer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/urls.py -------------------------------------------------------------------------------- /ltc/analyzer/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/analyzer/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/views/__init__.py -------------------------------------------------------------------------------- /ltc/analyzer/views/analyzer_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/analyzer/views/analyzer_views.py -------------------------------------------------------------------------------- /ltc/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/admin.py -------------------------------------------------------------------------------- /ltc/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/apps.py -------------------------------------------------------------------------------- /ltc/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/models.py -------------------------------------------------------------------------------- /ltc/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/serializers.py -------------------------------------------------------------------------------- /ltc/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/tests.py -------------------------------------------------------------------------------- /ltc/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/urls.py -------------------------------------------------------------------------------- /ltc/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/api/views.py -------------------------------------------------------------------------------- /ltc/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/admin.py -------------------------------------------------------------------------------- /ltc/base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/apps.py -------------------------------------------------------------------------------- /ltc/base/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0001_initial.py -------------------------------------------------------------------------------- /ltc/base/migrations/0002_auto_20210517_1754.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0002_auto_20210517_1754.py -------------------------------------------------------------------------------- /ltc/base/migrations/0003_test_temp_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0003_test_temp_path.py -------------------------------------------------------------------------------- /ltc/base/migrations/0004_test_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0004_test_vars.py -------------------------------------------------------------------------------- /ltc/base/migrations/0005_test_last_active.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0005_test_last_active.py -------------------------------------------------------------------------------- /ltc/base/migrations/0006_auto_20210526_1446.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0006_auto_20210526_1446.py -------------------------------------------------------------------------------- /ltc/base/migrations/0007_project_project_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0007_project_project_template.py -------------------------------------------------------------------------------- /ltc/base/migrations/0008_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0008_configuration.py -------------------------------------------------------------------------------- /ltc/base/migrations/0009_test_is_locked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0009_test_is_locked.py -------------------------------------------------------------------------------- /ltc/base/migrations/0010_test_online_lines_analyzed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0010_test_online_lines_analyzed.py -------------------------------------------------------------------------------- /ltc/base/migrations/0011_auto_20220316_1624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0011_auto_20220316_1624.py -------------------------------------------------------------------------------- /ltc/base/migrations/0012_test_remote_temp_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/migrations/0012_test_remote_temp_path.py -------------------------------------------------------------------------------- /ltc/base/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/models.py -------------------------------------------------------------------------------- /ltc/base/static/css/billboard/billboard.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/css/billboard/billboard.min.css -------------------------------------------------------------------------------- /ltc/base/static/css/billboard/themes/datalab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/css/billboard/themes/datalab.min.css -------------------------------------------------------------------------------- /ltc/base/static/css/billboard/themes/graph.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/css/billboard/themes/graph.min.css -------------------------------------------------------------------------------- /ltc/base/static/css/billboard/themes/insight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/css/billboard/themes/insight.min.css -------------------------------------------------------------------------------- /ltc/base/static/css/ltc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/css/ltc.css -------------------------------------------------------------------------------- /ltc/base/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ltc/base/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ltc/base/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ltc/base/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ltc/base/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ltc/base/static/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/images/ajax-loader.gif -------------------------------------------------------------------------------- /ltc/base/static/images/innogames_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/images/innogames_logo.png -------------------------------------------------------------------------------- /ltc/base/static/js/analyzer/analyzer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/analyzer/analyzer.js -------------------------------------------------------------------------------- /ltc/base/static/js/analyzer/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/analyzer/report.js -------------------------------------------------------------------------------- /ltc/base/static/js/analyzer/testreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/analyzer/testreport.js -------------------------------------------------------------------------------- /ltc/base/static/js/billboard/billboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/billboard/billboard.min.js -------------------------------------------------------------------------------- /ltc/base/static/js/billboard/billboardjs-plugin-bubblecompare.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/billboard/billboardjs-plugin-bubblecompare.min.js -------------------------------------------------------------------------------- /ltc/base/static/js/billboard/billboardjs-plugin-stanford.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/billboard/billboardjs-plugin-stanford.min.js -------------------------------------------------------------------------------- /ltc/base/static/js/billboard/billboardjs-plugin-textoverlap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/billboard/billboardjs-plugin-textoverlap.min.js -------------------------------------------------------------------------------- /ltc/base/static/js/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/dashboard/dashboard.js -------------------------------------------------------------------------------- /ltc/base/static/js/ltc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/ltc.js -------------------------------------------------------------------------------- /ltc/base/static/js/online/online.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/online/online.js -------------------------------------------------------------------------------- /ltc/base/static/js/tablesorter/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/tablesorter/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /ltc/base/static/js/tablesorter/jquery.tablesorter.widgets.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/tablesorter/jquery.tablesorter.widgets.min.js -------------------------------------------------------------------------------- /ltc/base/static/js/tablesorter/widgets/widget-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/tablesorter/widgets/widget-filter.js -------------------------------------------------------------------------------- /ltc/base/static/js/tablesorter/widgets/widget-stickyHeaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/static/js/tablesorter/widgets/widget-stickyHeaders.js -------------------------------------------------------------------------------- /ltc/base/templates/ltc/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/templates/ltc/base.html -------------------------------------------------------------------------------- /ltc/base/templates/ltc/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/templates/ltc/dashboard.html -------------------------------------------------------------------------------- /ltc/base/templates/ltc/dashboard/last_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/templates/ltc/dashboard/last_tests.html -------------------------------------------------------------------------------- /ltc/base/templates/ltc/dashboard/last_tests_in_projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/templates/ltc/dashboard/last_tests_in_projects.html -------------------------------------------------------------------------------- /ltc/base/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/tests.py -------------------------------------------------------------------------------- /ltc/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/urls.py -------------------------------------------------------------------------------- /ltc/base/utils/confluence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/base/utils/confluence/confluenceposter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/utils/confluence/confluenceposter.py -------------------------------------------------------------------------------- /ltc/base/utils/confluence/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/utils/confluence/helpers.py -------------------------------------------------------------------------------- /ltc/base/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/base/views.py -------------------------------------------------------------------------------- /ltc/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/controller/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/admin.py -------------------------------------------------------------------------------- /ltc/controller/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/apps.py -------------------------------------------------------------------------------- /ltc/controller/graphite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/controller/graphite/graphiteclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/graphite/graphiteclient.py -------------------------------------------------------------------------------- /ltc/controller/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/controller/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/controller/management/commands/check_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/management/commands/check_tests.py -------------------------------------------------------------------------------- /ltc/controller/management/commands/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/management/commands/daemon.py -------------------------------------------------------------------------------- /ltc/controller/management/commands/gather_jmeter_instances_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/management/commands/gather_jmeter_instances_info.py -------------------------------------------------------------------------------- /ltc/controller/management/commands/loadgenerators_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/management/commands/loadgenerators_monitor.py -------------------------------------------------------------------------------- /ltc/controller/management/commands/post_to_confluence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/management/commands/post_to_confluence.py -------------------------------------------------------------------------------- /ltc/controller/management/commands/start_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/management/commands/start_test.py -------------------------------------------------------------------------------- /ltc/controller/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/migrations/0001_initial.py -------------------------------------------------------------------------------- /ltc/controller/migrations/0002_auto_20210517_1754.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/migrations/0002_auto_20210517_1754.py -------------------------------------------------------------------------------- /ltc/controller/migrations/0003_auto_20210603_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/migrations/0003_auto_20210603_1631.py -------------------------------------------------------------------------------- /ltc/controller/migrations/0004_auto_20210608_1506.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/migrations/0004_auto_20210608_1506.py -------------------------------------------------------------------------------- /ltc/controller/migrations/0005_auto_20220316_1624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/migrations/0005_auto_20220316_1624.py -------------------------------------------------------------------------------- /ltc/controller/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/controller/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/models.py -------------------------------------------------------------------------------- /ltc/controller/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/tests.py -------------------------------------------------------------------------------- /ltc/controller/urls.py: -------------------------------------------------------------------------------- 1 | from . import views 2 | 3 | urlpatterns = [ 4 | 5 | ] 6 | -------------------------------------------------------------------------------- /ltc/controller/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/utils.py -------------------------------------------------------------------------------- /ltc/controller/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/views/__init__.py -------------------------------------------------------------------------------- /ltc/controller/views/controller_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/views/controller_views.py -------------------------------------------------------------------------------- /ltc/controller/views/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/controller/views/data_generator.py -------------------------------------------------------------------------------- /ltc/local_settings.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/local_settings.example.py -------------------------------------------------------------------------------- /ltc/online/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/online/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/admin.py -------------------------------------------------------------------------------- /ltc/online/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/apps.py -------------------------------------------------------------------------------- /ltc/online/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/migrations/0001_initial.py -------------------------------------------------------------------------------- /ltc/online/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/online/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/models.py -------------------------------------------------------------------------------- /ltc/online/templates/online/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/templates/online/index.html -------------------------------------------------------------------------------- /ltc/online/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/tests.py -------------------------------------------------------------------------------- /ltc/online/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/urls.py -------------------------------------------------------------------------------- /ltc/online/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/online/views.py -------------------------------------------------------------------------------- /ltc/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/settings.py -------------------------------------------------------------------------------- /ltc/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltc/templatetags/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/templatetags/tags.py -------------------------------------------------------------------------------- /ltc/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/urls.py -------------------------------------------------------------------------------- /ltc/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/ltc/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/manage.py -------------------------------------------------------------------------------- /pics/aggregate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/pics/aggregate.png -------------------------------------------------------------------------------- /pics/analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/pics/analyzer.png -------------------------------------------------------------------------------- /pics/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/pics/dashboard.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/requirements.txt -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/run -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/innogames/ltc/HEAD/setup.py --------------------------------------------------------------------------------