openshift101
1.0.0
1.0.0
  • Introduction
  • Getting Started
    • Create an IBM Cloud account / Access an OpenShift cluster
    • Accessing the IBM Cloud Shell
  • Workshop
    • Exercise 1: Deploy a Node application with Source-to-Image
    • Exercise 2: Logging and monitoring
    • Exercise 3: Metrics and dashboards
    • Exercise 4: Scaling the application
    • Exercise 5: Health checks
    • Exercise 6: Deploy a Node application with Build Config (CLI version)
  • Alternates
    • Exercise 1: Deploy a Java application with a Docker Image
    • Exercise 6: Deploy a Java application with Build Config (CLI version)
  • Resources
    • FAQ
    • A General Docker Tutorial
    • Kubernetes Overview
    • Setup CLI Access for the cluster
    • Certification on CognitiveClass.ai
    • IBM Developer
    • Docs: Red Hat OpenShift on IBM Cloud
  • Survey
    • Tell us how we did
Powered by GitBook
On this page
  • Simulate Load on the Application
  • OpenShift Logging
  • OpenShift Terminal
  • OpenShift Monitoring

Was this helpful?

  1. Workshop

Exercise 2: Logging and monitoring

PreviousExercise 1: Deploy a Node application with Source-to-ImageNextExercise 3: Metrics and dashboards

Last updated 4 years ago

Was this helpful?

In this exercise, we'll explore the out-of-the-box logging and monitoring capabilities that are offered in OpenShift.

Simulate Load on the Application

First, let's simulate some load on our application. Run the following script which will endlessly spam our app with requests:

With Linux/MacOS

while sleep 1; do curl -s <your_app_route>/info; done

With Windows

while($true){curl <your_app_route>/info}

Note: Retrieve the external URL from the OpenShift console, or from the URL of your Example Health application. Note that there may be an /index.html at the end that you need to replace with /info. We're hitting the /info endpoint which will trigger some logs from our app. For example:

OpenShift Logging

Since we only created one pod, seeing our logs will be straight forward. Navigate to View Logs on the left on the main dashboard.

You should be taken to something like the following. Scroll up and you should see the DEBUG like in the image. Scroll back down, and you should see a new line every second per the curl above.

OpenShift Terminal

One of the great things about Kubernetes is the ability to quickly debug your application pods with SSH terminals. This is great for development, but generally is not recommended in production environments. OpenShift makes it even easier by allowing you to launch a terminal directly in the dashboard.

Switch to the Terminal tab, and run the following commands.

# This command shows you the the project files.
ls
# This command shows you the running processes.
ps aux

OpenShift Monitoring

When deploying new apps, making configuration changes, or simply inspecting the state of your cluster, the OpenShift monitoring dashboard gives you an overview of your running assets.

You can also dive in a bit deeper - the Events tab is very useful for identifying the timeline of events and finding potential error messages.

You'll want to refer to this view throughout the lab. Almost all actions we take in in OpenShift will result in an event being fired in this view. As it is updated real-time, it's a great way to track changes to state.

http://patientui-health-example.myopenshift-xxx.us-east.containers.appdomain.cloud/info
Pods
Logs
Terminal
View Details