Splunk Query for ZOS Buffer Pools (Total vs Used)
index="lamaxu" sourcetype="qmstatus_json" "identifier.dataType"=PAGESET_USAGE |rename identifier.dataSource as qmgrName|rename attributes.BUFFER_POOL_ID as bufferPoolId| eval objName="(".qmgrName.") Buffer Pool ID : ".bufferPoolId|timechart span=1m max(attributes.TOTAL_PAGES) as "Total Pages" max(attributes.UNUSED_PAGES) as "Unused Pages" BY objName
Splunk Query for ZOS Buffer Pools (Persistent vs Non-Persistent)
index="lamaxu" sourcetype="qmstatus_json" "identifier.dataType"=PAGESET_USAGE |rename identifier.dataSource as qmgrName|rename attributes.BUFFER_POOL_ID as bufferPoolId| eval objName="(".qmgrName.") Buffer Pool ID : ".bufferPoolId|timechart span=1m max(attributes.PERSIST_PAGES) as "Perisitent Pages" max(attributes.NONPERSIST_PAGES) as "Non Persistent Pages" BY objName
Sample Dashboard