In this video
We install AppMap into our sample Ruby on Rails project inside of VS Code. You can find a link to the sample project below if you would like to follow along.
Links mentioned
Rails Sample Application
AppMap Slack community
You can review the previous video for more details about what the ideal types of projects for AppMap are. We’re using a Ruby on Rails sample app and can use bundle exec rails test
to generate AppMaps from test cases. This is how AppMap will analyze the runtime of the code.
NOTE: If you’re using JetBrains IntelliJ IDEA with Java, follow these instructions to create AppMaps from tests.
From here, navigate to AppMap by clicking on the button in the left hand sidebar, and click on “Add AppMap to your project”. The project picker will help you confirm that you’re running a suitable project before you install.
The automated installer will look for project files such as a Gemfile
or a package.json
and it will ask you to confirm the details of your environment before installing. When running the installer via npx
, make sure you meet the Node.js requirements for installation. Manual installation instructions may additionally be available for some projects.
Choose an installation method to continue.
In the video example the automated installer identifies both yarn
and Bundler
because the project consists of a Ruby on Rails application with additional frontend JavaScript dependencies. In this case we want to record our Rails server, so Bundler
is selected as our installation target.
Once the agent is installed correctly, continue on to the next step, recording AppMaps.
Follow the on-screen instructions for recording AppMaps for your project. You’ll receive one of the two following options.
You may be given a command to copy and paste which will guide you through running your test cases with AppMap enabled. Paste the command into a terminal and it will ask what you want to use for your test command. It will make an assumption based on your project. If the command you run tests with is different to what was suggested by the on-screen instructions, you can change this command by pressing no, then entering a new command and include any environment variables you need.
Confirm the test command and define the maximum time you want to spend running each test. Tests will run for 30 seconds in total by default before AppMap will stop recording. If your tests take longer than 30 seconds, specify a larger time period.
Alternatively, the instructions may prompt you to run your application or test cases as normal. In this scenario, AppMap will automatically be enabled and no additional steps are necessary.
By running this command we’ve generated 68 AppMaps in our Rails sample project, and we can continue on to the next step. We now have AppMaps that have been generated. We surface some of the AppMaps here, maybe ones that have a large number of requests or in this scenario, ones that have large numbers of SQL queries. You can click on any one of these to open the map directly inside of your vs code. You’ll be able to see which tests executed and generated this AppMap. You will also be able able to see server requests, packages, classes, functions, and SQL queries related to this.
We’ll continue on the onboarding process and be able to view any findings that the analysis function has picked out. When we click on the “View Problems” button, we’ll see a series of N-plus-one SQL queries. These could lead to performance issues for your users. By clicking on any of these findings, it will navigate us into the code base where this issue is occurring.
You can also see code objects have been indexed. This is another helpful way to be able to find which AppMaps include which specific SQL queries or specific API requests. From here, you can see the changes that we’ve made in our project to support AppMaps. The appmap.yml
file includes the command that we’re going to execute as part of our test run, as well as which paths within our project we’re going to analyze.
And you can also see the Gemfile
. We include AppMap as a development dependency. You can commit all of these files, which will make this available to any other developers on this project.
Finally, you’ll see AppMaps actually exist inside your temp directory in the AppMap folder. We don’t recommend committing these to your project. They can grow your git repositories unnecessarily.
If you’d like to learn more about how to share AppMaps with your team, reach out to us on Slack for a preview of at maps team offerings.
AppMap is now installed in our project and by running tests locally with the AppMap flag enabled, we will be able to generate AppMaps.
Next step: Generate AppMaps with Remote Recording