diff --git a/packages/components/src/components/install-guide/record-instructions/IntelliJ.vue b/packages/components/src/components/install-guide/record-instructions/IntelliJ.vue index e1283fbf39..9b8c583789 100644 --- a/packages/components/src/components/install-guide/record-instructions/IntelliJ.vue +++ b/packages/components/src/components/install-guide/record-instructions/IntelliJ.vue @@ -1,5 +1,11 @@ @@ -72,52 +90,55 @@

Remote recording

+

- Did you know? When you run a Spring app, you can make AppMaps of all the HTTP requests - served by your app. Spring wasn't detected in this project, though. + When you run a Spring app, you can make AppMaps of all the HTTP requests served by your + app.

+

Spring was not detected in this project.


Process recording

+
+

Record an entire Java process from startup to teardown.

+

- AppMap can record an entire Java process from start to finish. To use process recording, run - your application using + To use process recording, run your application using "Start with AppMap". When your application exits, the AppMap will be saved and opened.

+

- Visit + Docs: AppMap Docs - Java Process recordingJava process recording - for more information.


- Code Block recording + Code Block recording

+
+

With this method, you can control exactly which code spans are recorded.

+

- You can use the AppMap Java library directly to record a specific span of code. With this - method, you can control exactly what code is recorded, and where the recording is saved. To - use code block recording, add an AppMap code snippet to the section of code you want to - record, then run your application using - "Start with AppMap". -

-

- Visit + You can use the AppMap Java library directly to record a specific span of code. To use code + block recording, add an AppMap code snippet to the section of code you want to record, then + run your application using + "Start with AppMap". Instructions + for adding the AppMap code snippet to a span of code can be AppMap Docs - Java Code Block recording - for more information. + >found in our documentation.

@@ -126,7 +147,7 @@ import TestsIcon from '@/assets/tests-icon.svg'; import RemoteRecordingIcon from '@/assets/remote-recording-icon.svg'; import ProcessIcon from '@/assets/process-icon.svg'; -import PlayIcon from '@/assets/play-icon.svg'; +import CodeBlockIcon from '@/assets/code-block-icon.svg'; import VRunConfigDark from '@/assets/jetbrains_run_config_execute_dark.svg'; import VRunConfigLight from '@/assets/jetbrains_run_config_execute.svg'; import VTestsPrompt from './TestsPrompt.vue'; @@ -144,7 +165,7 @@ export default { VRunConfigDark, VRunConfigLight, VTestsPrompt, - PlayIcon, + CodeBlockIcon, ProcessIcon, RemoteRecordingIcon, TestsIcon, diff --git a/packages/components/src/components/install-guide/record-instructions/Java.vue b/packages/components/src/components/install-guide/record-instructions/Java.vue index e867226603..0d1ae85782 100644 --- a/packages/components/src/components/install-guide/record-instructions/Java.vue +++ b/packages/components/src/components/install-guide/record-instructions/Java.vue @@ -1,5 +1,11 @@ @@ -39,6 +51,12 @@

Requests recording

+
+

+ Create AppMaps as you interact with your applications UI or API. This is helpful for + tracing the backend during specific usage scenarios. +

+

When your application uses Django or Flask, and you run your application with AppMap enabled, HTTP server requests recording is enabled. To record requests, first run your @@ -46,26 +64,26 @@


- Start your Django server: + Start your Django server with AppMap enabled:

- Start your Flask server: + Start your Flask server with AppMap enabled:

-

Then, interact with your application through its user interface and/or by making API requests using a tool such as Postman. An AppMap will be created for each HTTP server request that's served by your app.

+

- For more information, visit + Docs: AppMap docs - Python Requests recording. + >Python requests recording

@@ -74,17 +92,19 @@

Context manager recording

+
+

You can use the AppMap Python package directly to record a specific span of code.

+

- You can use the AppMap Python package directly to record a specific span of code. With this - method, you can control exactly what code is recorded, and where the recording is saved. To - use Context manager recording, add an AppMap code snippet to the section of code you want to - record, then run your application with AppMap enabled. Visit + With this method, you can control exactly what code is recorded, and where the recording is + saved. To use Context manager recording, add an AppMap code snippet to the section of code + you want to record, then run your application with AppMap enabled. Instructions for adding + the AppMap code snippet to a span of code can be AppMap Docs - Python Context manager recording - for more information. + >found in our documentation.

diff --git a/packages/components/src/components/install-guide/record-instructions/Ruby.vue b/packages/components/src/components/install-guide/record-instructions/Ruby.vue index 1670f4aa9c..b3bc72e305 100644 --- a/packages/components/src/components/install-guide/record-instructions/Ruby.vue +++ b/packages/components/src/components/install-guide/record-instructions/Ruby.vue @@ -1,5 +1,10 @@ @@ -92,16 +109,20 @@

Block recording

+
+

With this method, you can control exactly which code spans are recorded.

+

- You can use the AppMap Ruby gem directly to record a specific span of code. With this - method, you can control exactly what code is recorded, and where the recording is saved. To - use Block recording, add an AppMap code snippet to the section of code you want to record, - then run your application with AppMap enabled. Visit - AppMap Docs - Ruby Block recording - for more information. + To use Block recording, add an AppMap code snippet to the section of code you want to + record, then run your application with AppMap enabled. Instructions for adding the AppMap + code snippet to a span of code can be + found in our documentation.

+
diff --git a/packages/components/src/components/install-guide/record-instructions/TestsPrompt.vue b/packages/components/src/components/install-guide/record-instructions/TestsPrompt.vue index a56caf2f5e..bb5e3c699f 100644 --- a/packages/components/src/components/install-guide/record-instructions/TestsPrompt.vue +++ b/packages/components/src/components/install-guide/record-instructions/TestsPrompt.vue @@ -3,10 +3,12 @@

Tests recording

+

- Did you know? If you use a test framework such as {{ framework }}, you can make AppMaps of all - your test cases. Tests weren't detected in this project, though. + If you use a test framework such as {{ framework }}, you can make AppMaps of all your test + cases.

+

No tests were detected in this project.