├── .github ├── dependabot.yml └── workflows │ ├── cd.yaml │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── Jenkinsfile ├── LICENSE ├── README.md ├── docs ├── .gitkeep ├── Changelog.md ├── README.md ├── Reporting.md ├── RunTests.md ├── _config.yml ├── report_2graphs.png ├── report_constraints.png ├── report_filter.jpg ├── report_firstlevel.png ├── report_seclevel.png ├── report_single.jpg ├── report_step_choice.png ├── report_toplevel.png ├── report_trend.jpg ├── report_trend_table.jpg ├── run_extended_config.png ├── run_jmeter.png ├── run_step_choice.png └── stats.html ├── pom.xml ├── requirements.txt └── src ├── main ├── java │ └── hudson │ │ └── plugins │ │ └── performance │ │ ├── PerformancePublisher.java │ │ ├── PerformanceReportMap.java │ │ ├── TrendReportGraphs.java │ │ ├── actions │ │ ├── ExternalBuildReportAction.java │ │ ├── PerformanceBuildAction.java │ │ └── PerformanceProjectAction.java │ │ ├── build │ │ └── PerformanceTestBuild.java │ │ ├── constraints │ │ ├── AbsoluteConstraint.java │ │ ├── AbstractConstraint.java │ │ ├── ConstraintChecker.java │ │ ├── ConstraintEvaluation.java │ │ ├── ConstraintFactory.java │ │ ├── RelativeConstraint.java │ │ └── blocks │ │ │ ├── PreviousResultsBlock.java │ │ │ └── TestCaseBlock.java │ │ ├── cookie │ │ └── CookieHandler.java │ │ ├── data │ │ ├── ConstraintSettings.java │ │ ├── HttpSample.java │ │ ├── PerformanceReportPosition.java │ │ ├── ReportValueSelector.java │ │ └── TaurusFinalStats.java │ │ ├── descriptors │ │ ├── ConstraintDescriptor.java │ │ └── PerformanceReportParserDescriptor.java │ │ ├── details │ │ ├── GraphConfigurationDetail.java │ │ ├── TestSuiteReportDetail.java │ │ └── TrendReportDetail.java │ │ ├── parsers │ │ ├── AbstractParser.java │ │ ├── IagoParser.java │ │ ├── JMeterCsvParser.java │ │ ├── JMeterParser.java │ │ ├── JUnitParser.java │ │ ├── JmeterSummarizerParser.java │ │ ├── LoadRunnerParser.java │ │ ├── LocustParser.java │ │ ├── ParserDetector.java │ │ ├── ParserFactory.java │ │ ├── PerformanceReportParser.java │ │ ├── TaurusParser.java │ │ └── WrkSummarizerParser.java │ │ ├── reports │ │ ├── AbstractReport.java │ │ ├── ConstraintReport.java │ │ ├── PerformanceReport.java │ │ ├── ThroughputReport.java │ │ └── UriReport.java │ │ ├── tools │ │ └── SafeMaths.java │ │ └── workflow │ │ └── WorkflowActionsFactory.java ├── resources │ ├── hudson │ │ └── plugins │ │ │ └── performance │ │ │ ├── Messages.properties │ │ │ ├── Messages_es.properties │ │ │ ├── PerformancePublisher │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── config_es.properties │ │ │ ├── config_zh_TW.properties │ │ │ ├── help-errorUnstableResponseTimeThreshold.html │ │ │ ├── help-filterRegex.html │ │ │ ├── help-modeEvaluation.html │ │ │ ├── help-persistPerformanceChart.html │ │ │ ├── help-persistPerformanceCharts.html │ │ │ └── help-sourceDataFiles.html │ │ │ ├── PerformanceReportMap │ │ │ ├── CVS │ │ │ │ ├── Entries │ │ │ │ ├── Repository │ │ │ │ └── Root │ │ │ ├── index.jelly │ │ │ ├── index_es.properties │ │ │ └── index_fr.properties │ │ │ ├── TrendReportGraphs │ │ │ ├── index.jelly │ │ │ └── index_es.properties │ │ │ ├── actions │ │ │ └── PerformanceProjectAction │ │ │ │ ├── floatingBox.jelly │ │ │ │ ├── floatingBox_es.properties │ │ │ │ ├── index.jelly │ │ │ │ ├── index_es.properties │ │ │ │ └── index_fr.properties │ │ │ ├── build │ │ │ ├── PerformanceTestBuild │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ └── help.html │ │ │ └── jenkins-report.yml │ │ │ ├── constraints │ │ │ ├── AbsoluteConstraint │ │ │ │ ├── config.jelly │ │ │ │ └── config.properties │ │ │ ├── AbstractConstraint │ │ │ │ ├── help-relatedPerfReport.html │ │ │ │ └── help-testCase.html │ │ │ └── RelativeConstraint │ │ │ │ ├── config.jelly │ │ │ │ ├── config.properties │ │ │ │ ├── help-previousResultsString.html │ │ │ │ ├── help-timeframeEndString.html │ │ │ │ └── help-timeframeStartString.html │ │ │ ├── details │ │ │ ├── GraphConfigurationDetail │ │ │ │ ├── CVS │ │ │ │ │ ├── Entries │ │ │ │ │ ├── Repository │ │ │ │ │ └── Root │ │ │ │ ├── index.jelly │ │ │ │ ├── index.properties │ │ │ │ └── index_es.properties │ │ │ ├── TestSuiteReportDetail │ │ │ │ └── index.jelly │ │ │ └── TrendReportDetail │ │ │ │ ├── index.jelly │ │ │ │ └── index_es.properties │ │ │ ├── reports │ │ │ └── UriReport │ │ │ │ ├── index.jelly │ │ │ │ ├── index_es.properties │ │ │ │ └── index_fr.properties │ │ │ └── tags │ │ │ ├── captionLine.jelly │ │ │ ├── captionLine_es.properties │ │ │ ├── captionLine_fr.properties │ │ │ ├── summaryTable.jelly │ │ │ ├── summaryTableSummarizer.jelly │ │ │ └── taglib │ ├── index.jelly │ └── lib │ │ └── performance │ │ ├── blockWrapper.jelly │ │ └── taglib ├── tools │ ├── checkstyle.xml │ └── format.xml └── webapp │ ├── css │ └── style.css │ ├── help.html │ └── help_es.html └── test ├── java └── hudson │ └── plugins │ └── performance │ ├── AbstractGraphGenerationTest.java │ ├── BaselineComparisonTest.java │ ├── PerformancePipelineTest.java │ ├── PerformancePublisherTest.java │ ├── PerformanceReportMapTest.java │ ├── TrendReportGraphsTest.java │ ├── actions │ ├── ExternalBuildReportActionTest.java │ ├── PerformanceProjectActionGraphTest.java │ └── PerformanceProjectActionTest.java │ ├── build │ └── PerformanceTestBuildTest.java │ ├── constraints │ ├── ConstraintCheckerTest.java │ ├── ConstraintFactoryTest.java │ └── ConstraintTest.java │ ├── cookie │ └── CookieHandlerTest.java │ ├── data │ ├── PerformanceReportPositionTest.java │ └── ReportValueSelectorTest.java │ ├── descriptors │ ├── ConstraintDescriptorTest.java │ └── PerformanceReportParserDescriptorTest.java │ ├── details │ ├── GraphConfigurationDetailTest.java │ └── TestSuiteReportDetailTest.java │ ├── parsers │ ├── AbstractParserTest.java │ ├── IagoParserTest.java │ ├── JMeterCsvParserTest.java │ ├── JMeterParserTest.java │ ├── JMeterTestHelper.java │ ├── JUnitParserTest.java │ ├── JmeterSummarizerParserTest.java │ ├── LoadRunnerParserTest.java │ ├── LocustParserTest.java │ ├── ParserDetectorTest.java │ ├── ParserFactoryTest.java │ ├── TaurusParserTest.java │ └── WrkSummarizerParserTest.java │ ├── reports │ ├── ConstraintReportTest.java │ ├── PerformanceReportTest.java │ ├── ThroughputReportTest.java │ └── UriReportTest.java │ ├── tools │ └── SafeMathsTest.java │ └── workflow │ └── WorkflowActionsFactoryTest.java └── resources ├── IagoResults.log ├── JENKINS-16627_CSV_instead_of_XML.jtl ├── JMeterCsvResults.csv ├── JMeterCsvResults2.csv ├── JMeterCsvResults3.csv ├── JMeterPublisher.csv ├── JMeterPublisher_formatted_timeStamp.csv ├── JMeterResults.jtl ├── JMeterResultsMultiLevel.jtl ├── JMeterResultsMultiThread.jtl ├── JMeterResultsOneSample.jtl ├── JMeterResultsRandomUri.jtl ├── JMeterResultsTenSamples.jtl ├── JMeterResultsThreeSamples.jtl ├── TEST-JUnitResults-noTimeAttribute.xml ├── TEST-JUnitResults-relative-thrashould-2.xml ├── TEST-JUnitResults-relative-thrashould.xml ├── TEST-JUnitResults-success-failure-error.xml ├── TEST-JUnitResults.xml ├── TEST-JUnitResults.xml.serialized ├── TEST-results.xml ├── TaurusPreviousBuildReport.xml ├── TaurusXMLReport.xml ├── TaurusXmlWithDuration.xml ├── WrkResultsLong.wrk ├── WrkResultsQuick.wrk ├── WrkResultsWithErrors.wrk ├── WrkResultsWithLatencyFlag.wrk ├── aggregate-results.xml ├── constraint-test.xml ├── emptyfile.jtl ├── filewithtransactions.csv ├── jUnitIssue5571.xml ├── jUnitIssue5571.xml.serialized ├── jmeter.log ├── lr-session.mdb ├── multiLineCSV.jtl ├── performanceTest.yml ├── performanceTestWithFailCriteria.yml ├── result.csv.serialized ├── results.v.2.0.jtl.serialized ├── single_result ├── nested │ └── res.jtl └── res.csv ├── summary.log ├── test_results_stats.csv └── whitespace-followed-by-xml.jtl /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/Changelog.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/Reporting.md -------------------------------------------------------------------------------- /docs/RunTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/RunTests.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/report_2graphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_2graphs.png -------------------------------------------------------------------------------- /docs/report_constraints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_constraints.png -------------------------------------------------------------------------------- /docs/report_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_filter.jpg -------------------------------------------------------------------------------- /docs/report_firstlevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_firstlevel.png -------------------------------------------------------------------------------- /docs/report_seclevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_seclevel.png -------------------------------------------------------------------------------- /docs/report_single.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_single.jpg -------------------------------------------------------------------------------- /docs/report_step_choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_step_choice.png -------------------------------------------------------------------------------- /docs/report_toplevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_toplevel.png -------------------------------------------------------------------------------- /docs/report_trend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_trend.jpg -------------------------------------------------------------------------------- /docs/report_trend_table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/report_trend_table.jpg -------------------------------------------------------------------------------- /docs/run_extended_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/run_extended_config.png -------------------------------------------------------------------------------- /docs/run_jmeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/run_jmeter.png -------------------------------------------------------------------------------- /docs/run_step_choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/run_step_choice.png -------------------------------------------------------------------------------- /docs/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/docs/stats.html -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | virtualenv 2 | bzt 3 | apiritif -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/PerformancePublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/PerformancePublisher.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/PerformanceReportMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/PerformanceReportMap.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/TrendReportGraphs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/TrendReportGraphs.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/actions/ExternalBuildReportAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/actions/ExternalBuildReportAction.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/actions/PerformanceBuildAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/actions/PerformanceBuildAction.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/actions/PerformanceProjectAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/actions/PerformanceProjectAction.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/build/PerformanceTestBuild.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/build/PerformanceTestBuild.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/AbsoluteConstraint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/AbsoluteConstraint.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/AbstractConstraint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/AbstractConstraint.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/ConstraintChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/ConstraintChecker.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/ConstraintEvaluation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/ConstraintEvaluation.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/ConstraintFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/ConstraintFactory.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/RelativeConstraint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/RelativeConstraint.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/blocks/PreviousResultsBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/blocks/PreviousResultsBlock.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/constraints/blocks/TestCaseBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/constraints/blocks/TestCaseBlock.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/cookie/CookieHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/cookie/CookieHandler.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/data/ConstraintSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/data/ConstraintSettings.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/data/HttpSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/data/HttpSample.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/data/PerformanceReportPosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/data/PerformanceReportPosition.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/data/ReportValueSelector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/data/ReportValueSelector.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/data/TaurusFinalStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/data/TaurusFinalStats.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/descriptors/ConstraintDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/descriptors/ConstraintDescriptor.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/descriptors/PerformanceReportParserDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/descriptors/PerformanceReportParserDescriptor.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/details/GraphConfigurationDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/details/GraphConfigurationDetail.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/details/TestSuiteReportDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/details/TestSuiteReportDetail.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/details/TrendReportDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/details/TrendReportDetail.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/AbstractParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/AbstractParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/IagoParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/IagoParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/JMeterCsvParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/JMeterCsvParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/JMeterParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/JMeterParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/JUnitParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/JUnitParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/JmeterSummarizerParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/JmeterSummarizerParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/LoadRunnerParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/LoadRunnerParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/LocustParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/LocustParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/ParserDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/ParserDetector.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/ParserFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/ParserFactory.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/PerformanceReportParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/PerformanceReportParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/TaurusParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/TaurusParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/parsers/WrkSummarizerParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/parsers/WrkSummarizerParser.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/reports/AbstractReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/reports/AbstractReport.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/reports/ConstraintReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/reports/ConstraintReport.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/reports/PerformanceReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/reports/PerformanceReport.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/reports/ThroughputReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/reports/ThroughputReport.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/reports/UriReport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/reports/UriReport.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/tools/SafeMaths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/tools/SafeMaths.java -------------------------------------------------------------------------------- /src/main/java/hudson/plugins/performance/workflow/WorkflowActionsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/java/hudson/plugins/performance/workflow/WorkflowActionsFactory.java -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/Messages_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/Messages_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/config.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/config_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/config_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/config_zh_TW.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/config_zh_TW.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/help-errorUnstableResponseTimeThreshold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/help-errorUnstableResponseTimeThreshold.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/help-filterRegex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/help-filterRegex.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/help-modeEvaluation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/help-modeEvaluation.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/help-persistPerformanceChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/help-persistPerformanceChart.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/help-persistPerformanceCharts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/help-persistPerformanceCharts.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformancePublisher/help-sourceDataFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformancePublisher/help-sourceDataFiles.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformanceReportMap/CVS/Entries: -------------------------------------------------------------------------------- 1 | /index.jelly/1.3/Wed Nov 18 16:14:45 2009// 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformanceReportMap/CVS/Repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformanceReportMap/CVS/Repository -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformanceReportMap/CVS/Root: -------------------------------------------------------------------------------- 1 | :extssh:aespy@cvs.venezia.dev.impots:/cvsroot/ice 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformanceReportMap/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformanceReportMap/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformanceReportMap/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformanceReportMap/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/PerformanceReportMap/index_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/PerformanceReportMap/index_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/TrendReportGraphs/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/TrendReportGraphs/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/TrendReportGraphs/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/TrendReportGraphs/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/floatingBox.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/floatingBox.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/floatingBox_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/floatingBox_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/index_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/actions/PerformanceProjectAction/index_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/build/PerformanceTestBuild/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/build/PerformanceTestBuild/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/build/PerformanceTestBuild/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/build/PerformanceTestBuild/config.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/build/PerformanceTestBuild/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/build/PerformanceTestBuild/help.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/build/jenkins-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/build/jenkins-report.yml -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/AbsoluteConstraint/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/AbsoluteConstraint/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/AbsoluteConstraint/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/AbstractConstraint/help-relatedPerfReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/AbstractConstraint/help-relatedPerfReport.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/AbstractConstraint/help-testCase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/AbstractConstraint/help-testCase.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/config.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/help-previousResultsString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/help-previousResultsString.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/help-timeframeEndString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/help-timeframeEndString.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/help-timeframeStartString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/constraints/RelativeConstraint/help-timeframeStartString.html -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/CVS/Entries: -------------------------------------------------------------------------------- 1 | /index.jelly/1.1/Fri Nov 13 11:18:05 2009// 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/CVS/Repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/CVS/Repository -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/CVS/Root: -------------------------------------------------------------------------------- 1 | :extssh:aespy@cvs.venezia.dev.impots:/cvsroot/ice 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/index.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/index.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/GraphConfigurationDetail/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/TestSuiteReportDetail/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/TestSuiteReportDetail/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/TrendReportDetail/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/TrendReportDetail/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/details/TrendReportDetail/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/details/TrendReportDetail/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/reports/UriReport/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/reports/UriReport/index.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/reports/UriReport/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/reports/UriReport/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/reports/UriReport/index_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/reports/UriReport/index_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/tags/captionLine.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/tags/captionLine.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/tags/captionLine_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/tags/captionLine_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/tags/captionLine_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/tags/captionLine_fr.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/tags/summaryTable.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/tags/summaryTable.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/tags/summaryTableSummarizer.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/hudson/plugins/performance/tags/summaryTableSummarizer.jelly -------------------------------------------------------------------------------- /src/main/resources/hudson/plugins/performance/tags/taglib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/performance/blockWrapper.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/resources/lib/performance/blockWrapper.jelly -------------------------------------------------------------------------------- /src/main/resources/lib/performance/taglib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/tools/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/tools/checkstyle.xml -------------------------------------------------------------------------------- /src/main/tools/format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/tools/format.xml -------------------------------------------------------------------------------- /src/main/webapp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/webapp/css/style.css -------------------------------------------------------------------------------- /src/main/webapp/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/webapp/help.html -------------------------------------------------------------------------------- /src/main/webapp/help_es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/main/webapp/help_es.html -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/AbstractGraphGenerationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/AbstractGraphGenerationTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/BaselineComparisonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/BaselineComparisonTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/PerformancePipelineTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/PerformancePipelineTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/PerformancePublisherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/PerformancePublisherTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/PerformanceReportMapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/PerformanceReportMapTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/TrendReportGraphsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/TrendReportGraphsTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/actions/ExternalBuildReportActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/actions/ExternalBuildReportActionTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/actions/PerformanceProjectActionGraphTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/actions/PerformanceProjectActionGraphTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/actions/PerformanceProjectActionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/actions/PerformanceProjectActionTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/build/PerformanceTestBuildTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/build/PerformanceTestBuildTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/constraints/ConstraintCheckerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/constraints/ConstraintCheckerTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/constraints/ConstraintFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/constraints/ConstraintFactoryTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/constraints/ConstraintTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/constraints/ConstraintTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/cookie/CookieHandlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/cookie/CookieHandlerTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/data/PerformanceReportPositionTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/data/PerformanceReportPositionTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/data/ReportValueSelectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/data/ReportValueSelectorTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/descriptors/ConstraintDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/descriptors/ConstraintDescriptorTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/descriptors/PerformanceReportParserDescriptorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/descriptors/PerformanceReportParserDescriptorTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/details/GraphConfigurationDetailTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/details/GraphConfigurationDetailTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/details/TestSuiteReportDetailTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/details/TestSuiteReportDetailTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/AbstractParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/AbstractParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/IagoParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/IagoParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/JMeterCsvParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/JMeterCsvParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/JMeterParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/JMeterParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/JMeterTestHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/JMeterTestHelper.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/JUnitParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/JUnitParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/JmeterSummarizerParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/JmeterSummarizerParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/LoadRunnerParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/LoadRunnerParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/LocustParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/LocustParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/ParserDetectorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/ParserDetectorTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/ParserFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/ParserFactoryTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/TaurusParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/TaurusParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/parsers/WrkSummarizerParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/parsers/WrkSummarizerParserTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/reports/ConstraintReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/reports/ConstraintReportTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/reports/PerformanceReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/reports/PerformanceReportTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/reports/ThroughputReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/reports/ThroughputReportTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/reports/UriReportTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/reports/UriReportTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/tools/SafeMathsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/tools/SafeMathsTest.java -------------------------------------------------------------------------------- /src/test/java/hudson/plugins/performance/workflow/WorkflowActionsFactoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/java/hudson/plugins/performance/workflow/WorkflowActionsFactoryTest.java -------------------------------------------------------------------------------- /src/test/resources/IagoResults.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/IagoResults.log -------------------------------------------------------------------------------- /src/test/resources/JENKINS-16627_CSV_instead_of_XML.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JENKINS-16627_CSV_instead_of_XML.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterCsvResults.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterCsvResults.csv -------------------------------------------------------------------------------- /src/test/resources/JMeterCsvResults2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterCsvResults2.csv -------------------------------------------------------------------------------- /src/test/resources/JMeterCsvResults3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterCsvResults3.csv -------------------------------------------------------------------------------- /src/test/resources/JMeterPublisher.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterPublisher.csv -------------------------------------------------------------------------------- /src/test/resources/JMeterPublisher_formatted_timeStamp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterPublisher_formatted_timeStamp.csv -------------------------------------------------------------------------------- /src/test/resources/JMeterResults.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResults.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterResultsMultiLevel.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResultsMultiLevel.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterResultsMultiThread.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResultsMultiThread.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterResultsOneSample.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResultsOneSample.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterResultsRandomUri.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResultsRandomUri.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterResultsTenSamples.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResultsTenSamples.jtl -------------------------------------------------------------------------------- /src/test/resources/JMeterResultsThreeSamples.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/JMeterResultsThreeSamples.jtl -------------------------------------------------------------------------------- /src/test/resources/TEST-JUnitResults-noTimeAttribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-JUnitResults-noTimeAttribute.xml -------------------------------------------------------------------------------- /src/test/resources/TEST-JUnitResults-relative-thrashould-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-JUnitResults-relative-thrashould-2.xml -------------------------------------------------------------------------------- /src/test/resources/TEST-JUnitResults-relative-thrashould.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-JUnitResults-relative-thrashould.xml -------------------------------------------------------------------------------- /src/test/resources/TEST-JUnitResults-success-failure-error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-JUnitResults-success-failure-error.xml -------------------------------------------------------------------------------- /src/test/resources/TEST-JUnitResults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-JUnitResults.xml -------------------------------------------------------------------------------- /src/test/resources/TEST-JUnitResults.xml.serialized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-JUnitResults.xml.serialized -------------------------------------------------------------------------------- /src/test/resources/TEST-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TEST-results.xml -------------------------------------------------------------------------------- /src/test/resources/TaurusPreviousBuildReport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TaurusPreviousBuildReport.xml -------------------------------------------------------------------------------- /src/test/resources/TaurusXMLReport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TaurusXMLReport.xml -------------------------------------------------------------------------------- /src/test/resources/TaurusXmlWithDuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/TaurusXmlWithDuration.xml -------------------------------------------------------------------------------- /src/test/resources/WrkResultsLong.wrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/WrkResultsLong.wrk -------------------------------------------------------------------------------- /src/test/resources/WrkResultsQuick.wrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/WrkResultsQuick.wrk -------------------------------------------------------------------------------- /src/test/resources/WrkResultsWithErrors.wrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/WrkResultsWithErrors.wrk -------------------------------------------------------------------------------- /src/test/resources/WrkResultsWithLatencyFlag.wrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/WrkResultsWithLatencyFlag.wrk -------------------------------------------------------------------------------- /src/test/resources/aggregate-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/aggregate-results.xml -------------------------------------------------------------------------------- /src/test/resources/constraint-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/constraint-test.xml -------------------------------------------------------------------------------- /src/test/resources/emptyfile.jtl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/filewithtransactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/filewithtransactions.csv -------------------------------------------------------------------------------- /src/test/resources/jUnitIssue5571.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/jUnitIssue5571.xml -------------------------------------------------------------------------------- /src/test/resources/jUnitIssue5571.xml.serialized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/jUnitIssue5571.xml.serialized -------------------------------------------------------------------------------- /src/test/resources/jmeter.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/jmeter.log -------------------------------------------------------------------------------- /src/test/resources/lr-session.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/lr-session.mdb -------------------------------------------------------------------------------- /src/test/resources/multiLineCSV.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/multiLineCSV.jtl -------------------------------------------------------------------------------- /src/test/resources/performanceTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/performanceTest.yml -------------------------------------------------------------------------------- /src/test/resources/performanceTestWithFailCriteria.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/performanceTestWithFailCriteria.yml -------------------------------------------------------------------------------- /src/test/resources/result.csv.serialized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/result.csv.serialized -------------------------------------------------------------------------------- /src/test/resources/results.v.2.0.jtl.serialized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/results.v.2.0.jtl.serialized -------------------------------------------------------------------------------- /src/test/resources/single_result/nested/res.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/single_result/nested/res.jtl -------------------------------------------------------------------------------- /src/test/resources/single_result/res.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/single_result/res.csv -------------------------------------------------------------------------------- /src/test/resources/summary.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/summary.log -------------------------------------------------------------------------------- /src/test/resources/test_results_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/test_results_stats.csv -------------------------------------------------------------------------------- /src/test/resources/whitespace-followed-by-xml.jtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/performance-plugin/HEAD/src/test/resources/whitespace-followed-by-xml.jtl --------------------------------------------------------------------------------