Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

Configuring a Logging Profile in JBoss EAP

JBoss Enterprise Application Platform allows us to do more than simply deploy applications — we can also manage and maintain them during their lifecycle. Part of this is the ability to log what we need when we need it, which is where JBoss EAP logging profiles come in. Logging profiles allow us to write customized logging rules that we then attach to our applications as desired.

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Beginner
Duration
Clock icon 30m
Published
Clock icon Jan 24, 2020

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Create the Logging Profile

    1. Access the JBoss EAP CLI:
    cd /opt/jboss-eap/
    sudo ./bin/jboss-cli.sh
    connect
    
    1. Create the appdebug logging profile:
    /subsystem=logging/logging-profile=appdebug:add
    
  2. Challenge

    Create the File Handler

    1. Create the file handler:
    /subsystem=logging/logging-profile=appdebug/file-handler=appdebug-handler:add(file={path=>"debug.log", "relative-to"=>"jboss.server.log.dir"})
    
    1. Set the log level for the handler:
    /subsystem=logging/logging-profile=appdebug/file-handler=appdebug-handler:write-attribute(name="level", value="TRACE")
    
  3. Challenge

    Create a Logger Category

    1. Add the logger category:
    /subsystem=logging/logging-profile=appdebug/logger=app.debug:add(level=DEBUG)
    
    1. Assign the handler to the category:
    /subsystem=logging/logging-profile=appdebug/logger=org.hibernate:add-handler(name="appdebug-handler")
    
  4. Challenge

    Set Logs to Format as JSON

    Ensure the logs will be formatted as JSON:

    /subsystem=logging/logging-profile=appdebug/json-formatter=NAME:add(pretty-print=true, exception-output-type=formatted)
    
  5. Challenge

    Add the Logger Profile to the Application

    1. Exit the CLI:
    exit
    
    1. Move into /home/cloud_user/kitchensink:
    cd ~/kitchensink
    
    1. Add a MANIFEST.MF file to the application:
    vim src/main/resources/META-INF/MANIFEST.MF
    
    Manifest-Version: 1.0
    Logging-Profile: appdebug
    
    1. Deploy the application:
    sudo mvn clean install wildfly:deploy
    

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

What's a lab?

Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.

Provided environment for hands-on practice

We will provide the credentials and environment necessary for you to practice right within your browser.

Guided walkthrough

Follow along with the author’s guided walkthrough and build something new in your provided environment!

Did you know?

On average, you retain 75% more of your learning if you get time for practice.

Start learning by doing today

View Plans