├── .gitignore ├── .idea ├── .name ├── artifacts │ └── jmh_profilers.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── libraries │ ├── Maven__junit_junit_4_8_1.xml │ ├── Maven__net_sf_jopt_simple_jopt_simple_4_6.xml │ ├── Maven__org_apache_commons_commons_math3_3_2.xml │ ├── Maven__org_openjdk_jmh_jmh_core_1_3_1.xml │ └── Maven__org_openjdk_jmh_jmh_generator_annprocess_1_3_1.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── .travis.yml ├── README.md ├── jmh-profilers.iml ├── license ├── pom.xml └── src └── main ├── java └── profilers │ └── FlightRecordingProfiler.java └── resources └── META-INF └── services └── org.openjdk.jmh.profile.Profiler /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | jmh-profilers -------------------------------------------------------------------------------- /.idea/artifacts/jmh_profilers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/artifacts/jmh_profilers.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__junit_junit_4_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/libraries/Maven__junit_junit_4_8_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sf_jopt_simple_jopt_simple_4_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/libraries/Maven__net_sf_jopt_simple_jopt_simple_4_6.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_commons_commons_math3_3_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/libraries/Maven__org_apache_commons_commons_math3_3_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_openjdk_jmh_jmh_core_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/libraries/Maven__org_openjdk_jmh_jmh_core_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_openjdk_jmh_jmh_generator_annprocess_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/libraries/Maven__org_openjdk_jmh_jmh_generator_annprocess_1_3_1.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/README.md -------------------------------------------------------------------------------- /jmh-profilers.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/jmh-profilers.iml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/license -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/profilers/FlightRecordingProfiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/src/main/java/profilers/FlightRecordingProfiler.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.openjdk.jmh.profile.Profiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biboudis/jmh-profilers/HEAD/src/main/resources/META-INF/services/org.openjdk.jmh.profile.Profiler --------------------------------------------------------------------------------