OpenSolaris
Collectives
Discussions
Documentation
Download
Source Browser
Free CD
Log-in
|
Community Group observability
:
Observability
Top Menu
Show
:
Comments
Attachments
History
Information
Print
:
Print
Print preview
Export as PDF
Export as RTF
Export as HTML
Export as XAR
Wiki code for
Observability
Hide Line numbers
1: == OpenSolaris Observability == 2: 3: Over the course of history, we’ve done a lot of debugging in Solaris. Whether it’s processes misbehaving, performance degradations, system panics, or hardware failure, there is one key element of any approach: 4: 5: **If you cannot observe the problem, you cannot fix it.** 6: 7: To this end, we have spent a great deal of time on robust tools to observe all aspects of system behavior. Some of these have been around forever; others are relatively new. They all make the lives of administrators and developers much easier. This community will serve to explore existing Solaris tools and features, as well as plan the next generation of OpenSolaris observability tools. 8: 9: We’ve divided this rather large cross section of Solaris functionality into several specific areas, described here. Most of these just link to the relevant code. Over time, those that are sufficiently complex will link to more detailed documentation. 10: 11: === Process Observability === 12: 13: |[[DTrace>>Community Group dtrace.WebHome]]|A fantastic tool that can observe process and system behavior and tie it all together. Check out the [[DTrace community>>Community Group dtrace.WebHome]] for more information. 14: |[[truss>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/truss]]|A tool for examining system calls as well library calls made by an application. 15: |[[ptools>>ptools]]|A suite of process observability tools. 16: |[[libproc>>libproc]]|A common library used to simplify examining and manipulating processes. 17: |[[procfs>>procfs]]|The /proc filesystem, upon which libproc and all process tools are built. 18: |[[MDB>>Community Group mdb.WebHome]]|The modular debugger, the standard debugger for Solaris. See the [[MDB community>>Community Group mdb.WebHome]] for more information 19: |[[ps>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/ps]]|Basic process monitoring tool. Displays a snapshot of current process state on the machine. 20: |[[prstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/prstat]]|The standard process monitoring tool for Solaris, similar to top. 21: |[[plockstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/plockstat]]|The userland equiavlent of lockstat(1M), used to monitor lock events and aid in MT scalability. Built on top of DTrace 22: 23: === System Observability === 24: 25: |[[DTrace>>Community Group dtrace.WebHome]]|Once again, the indispensible system monitoring tool. 26: |[[kstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/kstat]]|A kernel statistics framework used by a variety of tools to examine system wide statistics. 27: |[[NUMA>>Community Group performance.observability]]|Tools for examining NUMA (Non Uniform Memory Architecture) characteristics on Solaris. 28: |[[ctfs>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/uts/common/fs/ctfs]]|The contract filesystem, used to observe and manipulate process contracts. 29: |[[objfs>>objfs]]|The object filesystem, used to examine kernel module symbols and CTF data from userland. 30: |[[mpstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/stat/mpstat]] 31: [[iostat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/stat/iostat]] 32: [[vmstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/stat/vmstat]]|Tools to report on basic system statistics. 33: |[[lockstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/lockstat]]|Tools to examine kernel locking statistic, as well as basic profiling data. Implemented using DTrace 34: |[[intrstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/intrstat]]|Tools to examine kernel interrupt statistics. Implemented using DTrace 35: |[[trapstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/trapstat]]|SPARC-only tool to examine trap statistics. 36: 37: === Network Observability === 38: 39: |[[snoop>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop]]|The standard tool for observing network packets. 40: |[[netstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/netstat]]|Tool for observing network connection status. 41: |[[nfsstat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/fs.d/nfs/nfsstat]]|Basic tool for monitoring NFS statistics. 42: 43: === Hardware Observability === 44: 45: |[[FMA>>Community Group fm.WebHome]]|Fault Management Architecture, a unified system of hardware fault diagnosis, repair, and reporting. 46: |CPC|A system to gather and report CPU performance counter information. Consists of kernel components, [[libcpc>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libcpc]], [[cpustat>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/cpc/cpustat]], and [[cputrack>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/cpc/cputrack]] 47: |[[psrinfo>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/psrinfo]]|Report on current processor status and configuration 48: |[[prtconf>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/prtconf]]|Display the system device tree, optionally in excrutiating detail. 49: |[[prtpicl>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/picl/prtpicl]]|Similar to prtconf, prints out the state of the device nodes maintained by the PICL daemon. 50: |[[prtdiag>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/prtdiag]]|Display summary of attached hardware components. 51: |[[prtfru>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/prtfru]]|SPARC only - Display FRUID information for system or domain. 52: 53: === Post Mortem Observability === 54: 55: |[[MDB>>Community Group mdb.WebHome]]|The standard debugger. See the [[MDB community>>Community Group mdb.WebHome]] for more information. 56: |[[dumpadm>>dumpadm]]|Configures kernel crash dump generation. 57: |[[coreadm>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/cmd/coreadm]]|Configures process core file generation. 58: |CTF|Compact C Type Format, the format used to store type information in the kernel and userland. Consumed by MDB and DTrace, among others. 59: |[[process core generation>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/uts/common/exec/elf/elf.c#elfcore]]|The elfcore() routine, which is responsible for the nuts and bolts of core file generation. 60: |[[kernel panic code>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/uts/common/os/panic.c]]|The entry point to the kernel panic code. 61: |[[gcore>>http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/lib/libproc/common/Pgcore.c]]|The gcore(1) utility for taking a core dump of a live running process without perturbing the process. 62: 63: === Unbundled Tools === 64: 65: More to come...
Search
Collectives
Community Group
Academic and Research
Accessibility
Advocacy
Appliances
Approachability
Architecture Process and Tools
BrandZ
Chinese Users
Community Advisory Board
Databases
Desktop
Device Drivers
Distribution
Documentation
DTrace
Emerging Platforms
Fault Management
Games on OpenSolaris
HA Clusters
HPC Developer
Installation and Packaging
Internationalization and Localization
Laptop
Logical Domains
Modular Debugger (MDB)
Networking
NFS
Observability
OpenSolaris Governing Board (OGB)
OpenSolaris Printing
OS/Net (ON)
Performance
Power Management
PowerPC
Security
Service Management Facility (smf(5))
Software Porters
Solaris Volume Manager
Storage
Systems Administration Community Group
Testing
Tools Home
Unix File Systems (UFS)
Website Community
X Window System
Xen
ZFS
Zones
Project
ADSL Modem Enhancement
ARC Process Definition
ARM Platform Port
Automatic Data Migration
BIND Update
Bluetooth Stack & Drivers
Brocade FC HBA - Initiator
Brocade FC HBA - Target
Brussels - unified network link configuration
Caiman, Solaris Install Revisited
Celeste
Český portál
Chime Visualization Tool for DTrace
CIFS client for Solaris
CIFS Server
Clearview: Network Interface Coherence
Cluster Agent: Informix Dynamic Server
Cluster Agent: OpenSolaris Container
Cluster Agent: OpenSolaris xVM
Cluster Agent: Oracle E-Business Suite
Cluster agent: PostgreSQL
Cluster Agent: Samba
Cluster Agent: Tomcat
CMT
Coarse Data Flow Parallelism
Colorado: Open HA Cluster on OpenSolaris
Command Assistant
Common Array Manager
Companion - /opt/sfw: Free and Open Source software
COMSTAR: Common Multiprotocol SCSI Target
Content
Contest
CPU Observability
Credentials Process Groups
Crossbow: Network Virtualization and Resource Control
Crypto KMS Agent Toolkit
Cryptographic Framework
Data Migration Manager
Data Tethers
Deutsches Portal
Device Detection Tool
Device Driver Utility
Device Manager
Device Mapper
Direct Rendering Infrastructure & 3D drivers
DTrace Guide
Duckwater: Simplified name services management
Easy Tools
Emancipation
Emulex Fibre Channel Device Driver
Emulex Advanced Ethernet Device Driver
Enable/Enhance Solaris support for Intel Platform
Enhance the support of USB webcams
Enhanced SMF Profiles
Enhancements for AMD-based Platforms
Erlang DTrace Integration
Ethernet bridge module for Solaris
Evaluate Conary
Events Registry
Ext3 file system support
F/OSS Package Base
Facilitation
Fibre Channel over Ethernet
Fine Grained Access Policy (FGAP)
Fingerprint Authentication
Flexible Mandatory Access Control
Forensic Tools
Fully Open X Project
Fuse on Solaris
gcore
Generic Machine Check Architecture Improvements
Google SOC
HA-JBoss
HA-MySQL
Hadoop Live CD
Hitachi
HoneyComb Fixed Content Storage
HPC Stack
Image Packaging System
Improved Performance MIB
Indiana
Innovation Awards
Input Method
Intel Graphics
Interrupt Resource Management
IP Datapath Refactoring
IP over Infiniband
IPsec Tunnel Reform
iSCSI Extensions for Remote DMA (iSER)
iSNS Server
JeOS - Just enough Operating System
JKstat - a java binding for libkstat
Journaled File System (JFS)
K Desktop Environment
Kerberos
Kernel Sockets
Kernel SSL Enhancements
Key Management Framework
Korn Shell 93 integration/migration project
Labeled IPsec
LatencyTOP
Layer 2 Filtering
LDoms Manager
Lending
libMicro - portable microbenchmarks
Link Layer Discovery
Live Media: Technologies for distributions running from CD and other media
Locale Data
lofi compression and cryptography support
lx64 brand
Media Management System
Mega_sas
Mexico
MilaX minimal Live Distribution
MIPS Platform Port
Mozilla DTrace
MRSL.NONsharedDevice
Multi-lingual Glossary
Multi-pathing software (MPxIO)
Multiple disk sector size support
Multiple DOI
Muskoka: An open repository for OpenSolaris technical content
Navigator
Nemo: A Framework for High-Performance Networking
Network Auto-Magic
Network Data Management Protocol
Network MIBs
Network Storage
Network Time Protocol (NTP)
Nevada Globalization
New Design of 4over6 Mechanism Based on OpenSolaris
NFS RDMA transport update and performance analysis
NFS Server in non-Global Zones
NFS version 4.1 pNFS
NFSv4 namespace extensions
Nightingale: Port Songbird to OpenSolaris
NPort ID Virtualization (NPIV)
NUMA
Object Storage Device (OSD) support for Solaris
OHACGE Script Based Plug-in
ON/Nevada (ONNV) Project
Open Development Infrastructure
Open HA Cluster Utilities
Open Sound System
OpenGrok
OpenPegasus CIM Server
OpenRTI
OpenSolaris Busybox
OpenSolaris Desktop
OpenSolaris Hispano
OpenSolaris Security Audit
OpenSolaris support for the QEMU processor emulator: host and guest
PEF: Packet Event Framework
Performance Wrappers
Pkgfactory
Polski Portal
Portail Francophone
Portal Brasil
Portals
Power Management Usability Interfaces
Presto: Automatic Printing Configuration
Printable Many Page Solaris Manuals
Promise SuperTrak RAID HBA Driver
QLogic Converged Network Adapter GLDv3 NIC Driver
Quagga Routing Protocol Suite Integration
RAID Configuration Utility
RBridge (IETF TRILL) support
RDMA Offload Framework
Reno: Login Process Enhancements for Interop
Resource Management
s10brand
SAM/QFS
SCM Migration Project
SCSI RDMA Protocol
SDcard Drivers
Sensor Abstraction Layer
Session Initiation Protocol
SFW
Shell: bourne shell, korn shell, C shell, etc.
Sierra: Intel WiFi Chipsets Support
Simple Panels
SM-HBA Based SAS HBA Management
SMF Documentation
Solaris iSCSI Target
Solaris PowerPC Port
SourceJuicer
Sparks: name service switch/nscd enhancements
Squashfs
Star integration/migration project
Starfish
Starter Kit
Storage Power Management
Sun Security Toolkit
Sun StorageTek Availability Suite
Support for OpenFabrics User Verbs / API on OpenSolaris OS
Support gcc4/GCCfss in Solaris
Suspend/Resume
SVR4 Packaging
Systemz
Tamarack: Removable Media Enhancements in Solaris
Tesla: OpenSolaris Enhanced Power Management
Test Development
Tickless Kernel Architecture
TIPC
Trademarks
Trusted networking interface policy database for Trusted Extensions
Trusted Platform Module support
Use Case
Validated Execution Project
Virtual Console
Virtual Network Machines
Visual Panels
Visualization for HPC
Volo
VRRP: Virtual Router Redundancy Protocol Implementation
VSCAN service
Web Stack
Website
Winchester: Schema mapping and ID mapping for AD Interoperability
Wireless USB Support
Wireless Wide Area Network
X Consolidation
x86 Generic FMA Topology Enumerator
Xen Gate
Xfce: A lightweight desktop environment
ZFS Boot and Install
ZFS on disk encryption support
Zone Manager
Zone Statistics
Русский портал
البوابة العربية
भारतीय पोर्टल
中国门户
日本ポータル
한국 포탈
User Group
Adelaide
Argentina
Arizona
Atlanta
Baltimore-Washington
Bangalore
Bangkok
Bangladesh
Beijing
Bélem
Berlin
Bhimavaram
Bloomington
Campus Ambassadors
Capital Region
Cardiff
Charlotte
Chengdu
Chennai
Chihuahua
Chile
Cleveland
Colombia
Columbus
Connecticut
Cracow
Czech
Dallas/Ft. Worth
Danish
Delaware
Edinburgh
Egypt
Finland
Florida
Front Range
FuZhou
Great Lakes
Greece
Hangzhou
Hawaii
HeFei
Houston
Hyderabad
Indonesia
Irish
Israel
Italian
Jinan
Kabul
Kansas City
Latvia
London
Madurai
Manchester
Mato Grosso
Melbourne
Minas Gerais
Minnesota
Montreal
Moscow
Mumbai
Munich
NEA
Netherlands
New England
New York City
New Zealand
NIT Hamirpur
Noroeste
Oklahoma City
Osnabrück
Peru
Philadelphia
Piaski
Pittsburgh
Porto Alegre
Puget Sound
Pune
Queensland
Research Triangle Park
Romania
Russia
San Antonio
San Diego
San Francisco
São Paulo
Scottish
Serbia
Shanghai
Shenzhen
Silicon Valley
Singapore
Slovak
South African
Southern Connecticut
St. Louis
Sweden
Switzerland
Sydney
Szczecin
Taiwan
Tecum
Thames Valley
Tokyo
Toronto
Trondheim
Tulsa
Turkey
Ukraine
University of Melbourne
Vale do Paraíba
Vancouver
Venezuela
Welsh - Cymru
Wisconsin
Xi'an
Subsites
Code Reviews
Code Repositories
Package Search
Bugster
Bugzilla
Test Machines
Planet
Mailing Lists
Elections & Polls
ARC Case Logs
Source Juicer
Package Factory
User Authentication
Community Group observability Pages
Observability
Files
Hardware Observability
Post Mortem Observability
dumpadm
Process Observability
libproc
procfs
ptools
System Observability
objfs
Unbundled Tools