Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 895 Bytes

10_event_streams.md

File metadata and controls

26 lines (17 loc) · 895 Bytes

Event Streams

Event streams exist on many objects as well as at the project level. The project is the highest level that a developer can explore to see all events with that particular project.

Exploring Event Streams

The Web Console is the primary tool to visualize events sorted by time.

  • Explore the events of a pod
    • Navigate to the Administrator View go to Workloads -> Pods and then select Events

  • For project wide events, navigate to the Developer View and go to Observe (previously called Monitoring) -> Events

  • Or on the CLI in your project
oc -n [-dev] get events --sort-by='.lastTimestamp'
  • Navigate through some of the events and review some of the output that could be helpful in debugging pods

Next page - Debugging Containers