Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Custom JFR event templates with Cryostat 2.0

<p>&nbsp;</p> <quillbot-extension-portal></quillbot-extension-portal>

November 16, 2021
Andrew Azores Elliott Baron
Related topics:
ContainersJavaKubernetesOperators
Related products:
Red Hat OpenShift

    Welcome back to our series of hands-on introductions to using Cryostat 2.0. This article shows you how to preconfigure custom event templates for Java application monitoring with JDK Flight Recorder (JFR). First, you'll use the new Cryostat Operator and a Red Hat OpenShift ConfigMap to create a custom event template, then you'll instruct the Cryostat Operator to use the ConfigMap when deploying Cryostat. You can use the OpenShift console to interact with Cryostat or edit the YAML file for your Cryostat custom resource. We'll demonstrate both approaches.

    Read all of the articles in this series:

    • Part 1: Get started with Cryostat 2.0
    • Part 2: Configuring Java applications to use Cryostat
    • Part 3: Java monitoring for custom targets with Cryostat
    • Part 4: Automating JDK Flight Recorder in containers
    • Part 5: Creating Custom JFR event templates with Cryostat 2.0

    Note: Cryostat is JDK Flight Recorder for Kubernetes or Red Hat OpenShift. The Red Hat build of Cryostat 2.0 is now widely available in technology preview. The Red Hat build includes the Cryostat Operator to simplify and automate Cryostat deployment on Red Hat OpenShift.

    Create a custom template and ConfigMap

    With Cryostat, you can download existing template files directly from a Java virtual machine (JVM). Once you've downloaded a template file to your local machine, you can use the JDK Mission Control (JMC) Template Manager to easily edit the template to suit your needs.

    After customizing the template file, it's fairly simple to create a ConfigMap from it. This ConfigMap stores the template file inside of the cluster where Cryostat will run. You can use oc or kubectl in the namespace where Cryostat is to be deployed. Here's the source if you use the former:

    
    $ oc create configmap my-template --from-file=/path/to/custom.jfc
    

    This command creates a ConfigMap named my-template from a file on your local machine, located at /path/to/custom.jfc. The file will be placed inside the ConfigMap under the custom.jfc filename.

    Add your ConfigMap to the Cryostat Operator

    Once you've created a ConfigMap, you only need to instruct the Cryostat Operator to use it when deploying Cryostat. You can do this when you create a Cryostat custom resource, or by updating an existing one. If you're installing Cryostat using the OpenShift console, select Event Templates under the Cryostat custom resource that you want to update. Choose Add Event Template. The Config Map Name drop-down list will display all ConfigMaps in the local namespace. Select the ConfigMap containing the event template you just created. For Filename, enter the name of the .jfc file within the ConfigMap. In Figure 1, we're using custom.jfc, which we created in the previous section.

    Creating an OpenShift ConfigMap containing a JDK .jfc event template definition file.
    Figure 1. Create a ConfigMap with a JDK .jfc event template definition file.

    You can also work directly with the YAML for the Cryostat custom resource. The process is similar to what you did in the console. Add an eventTemplates property to the spec section, if one isn't already present. Then, add an array entry with configMapName referencing the name of the ConfigMap, and a filename referencing the filename within the ConfigMap. The YAML below mirrors what we did in the OpenShift console example in Figure 1.

    
    apiVersion: operator.cryostat.io/v1beta1
    
    kind: Cryostat
    
    metadata:
    
      name: cryostat-sample
    
    spec:
    
      eventTemplates: 
    
      - configMapName: custom-template
    
        filename: my-template.jfc
    
    

    Once you've saved your changes to the Cryostat custom resource, the Cryostat Operator will deploy Cryostat with this template preconfigured. Visiting the Cryostat web application will show that the template is present and available to use for creating new JDK flight recordings, as you can see in Figure 2.

    The Event Template list displays the template created via ConfigMap.
    Figure 2. The Event Template list displays the template created via ConfigMap.

    Conclusion

    In this article, you've learned how to preconfigure Cryostat with customized event templates using OpenShift ConfigMaps. You can use customized templates to gather the specific data you need in your JDK flight recordings. Visit Cryostat.io and see the other articles in this series for further details:

    • Introduction to Cryostat: JDK Flight Recorder for containers
    • Get started with Cryostat 2.0
    • Configuring Java applications to use Cryostat
    • Java monitoring for custom targets with Cryostat
    • Automating JDK Flight Recorder in containers
    Last updated: September 20, 2023

    Related Posts

    • Introduction to Cryostat: JDK Flight Recorder for containers

    • Announcing Cryostat 2.0: JDK Flight Recorder for containers

    • Configuring Java applications to use Cryostat

    • Java monitoring for custom targets with Cryostat

    Recent Posts

    • Federated identity across the hybrid cloud using zero trust workload identity manager

    • Confidential virtual machine storage attack scenarios

    • Introducing virtualization platform autopilot

    • Integrate zero trust workload identity manager with Red Hat OpenShift GitOps

    • Best Practice Configuration and Tuning for Linux and Windows VMs

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.