Executed commands

The following tables shows the commands used by Discovery to collect data. Learn more about command types and patterns

Windows

CommandType and pattern

SELECT * FROM Win32_Product

Type: WMIQuery

Pattern: Windows_Application_Product.pat

Get-WmiObject Win32_Product

Type: PowerShellExecute

Pattern: Windows_Application_Product_PS.pat

SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\

Type: WMIRegValueList

Pattern: Windows_Application_Reg32.pat

Get-ChildItem -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' | Select-Object PSChildName

for each software key:

Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{software}'

Type: PowerShellExecute

Pattern: Windows_Application_Reg32_PS.pat

SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\

Type: WMIRegValueList

Pattern: Windows_Application_Reg64.pat

Get-ChildItem -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\' | Select-Object PSChildName

for each software key:

Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{software}'

Type: PowerShellExecute

Pattern: Windows_Application_Reg64_PS.pat

SELECT * FROM Win32_SoftwareFeature

Type: WMIQuery

Pattern: Windows_Application_SoftwareFeature.pat

Get-WmiObject Win32_SoftwareFeature

Type: PowerShellExecute

Pattern: Windows_Application_SoftwareFeature_PS.pat

SELECT * FROM Win32_Service

Type: WMIQuery

Pattern: Windows_ApplicationServices.pat

Get-WmiObject Win32_Service

Type: PowerShellExecute

Pattern: Windows_ApplicationServices_PS.pat

SELECT * FROM Win32_Processor

Type: WMIQuery

Pattern: Windows_CPUs.pat

Get-WmiObject Win32_Processor

Type: PowerShellExecute

Pattern: Windows_CPUs_PS.pat

docker ps -a --format "{{.ID}}"

for each container:

docker inspect -f ""Name:{{println .Name}}" +
@"Image:{{println .Image}}" +
@"State:{{println .State.Status}}" +
@"Hostname:{{println .Config.Hostname}}"" + $containerId

docker stats --no-stream --format ""{{.MemUsage}}"" + $containerId

Type: WMIQuery

Pattern: Windows_Docker_Container.pat

docker ps -a --format "{{.ID}}"

for each container:

docker inspect -f ""Name:{{println .Name}}" +
@"Image:{{println .Image}}" +
@"State:{{println .State.Status}}" +
@"Hostname:{{println .Config.Hostname}}"" + $containerId

docker stats --no-stream --format ""{{.MemUsage}}"" + $containerId

Type: PowerShellExecute

Pattern: Windows_Docker_Container_PS.pat

SELECT * FROM Win32_LogicalDisk WHERE DriveType = 3 or DriveType = 4

SELECT * FROM Win32_LogicalDiskToPartition

SELECT * FROM Win32_DiskDriveToDiskPartition

for all FileSystems:

SELECT * FROM Win32_DiskDrive WHERE DeviceID LIKE "%{deviceId}"

Type: WMIQuery

Pattern: Windows_FileSystem.pat

Get-WmiObject Win32_LogicalDisk | Where-Object {$_.DriveType -eq '3' -or $_.DriveType -eq '4'}

Get-WmiObject Win32_LogicalDiskToPartition

Get-WmiObject Win32_DiskDriveToDiskPartition

for all FileSystems:

Get-WmiObject Win32_DiskDrive | Where-Object {$_.DeviceID -match '{deviceId}'}

Type: PowerShellExecute

Pattern: Windows_FileSystem_PS.pat

SELECT * FROM Win32_ComputerSystem

Type: WMIQuery

Pattern: Windows_Hostinfo_Hostname_Model.pat

Get-WmiObject Win32_ComputerSystem

Type: PowerShellExecute

Pattern: Windows_Hostinfo_Hostname_Model_PS.pat

SELECT * FROM Win32_PhysicalMemory

Type: WMIQuery

Pattern: Windows_Hostinfo_RAM.pat

Get-WmiObject Win32_PhysicalMemory

Type: PowerShellExecute

Pattern: Windows_Hostinfo_RAM_PS.pat

SELECT StandardName FROM Win32_TimeZone

Type: WMIQuery

Pattern: Windows_Hostinfo_Timezone.pat

Get-WmiObject Win32_TimeZone | SELECT StandardName | Format-List

Type: PowerShellExecute

Pattern: Windows_Hostinfo_Timezone_PS.pat

netstat -n

Type: WMIExecute

Pattern: 

Windows_Hostinfo_ReferencedHosts.pat

Windows_Hostinfo_ReferencedHosts_PS.pat

SELECT * FROM Win32_BIOS

Type: WMIQuery

Pattern: Windows_Hostinfo_SerialNr.pat

Get-WmiObject Win32_BIOS

Type: PowerShellExecute

Pattern: Windows_Hostinfo_SerialNr_PS.pat

SELECT * FROM Win32_ComputerSystemProduct

Type: WMIQuery

Pattern: Windows_Hostinfo_Vendor_UUID.pat 

Get-WmiObject Win32_ComputerSystemProduct

Type: PowerShellExecute

Pattern: Windows_Hostinfo_Vendor_UUID_PS.pat

SELECT * FROM Msvm_ComputerSystem

SELECT * FROM Msvm_SummaryInformation WHERE Name = '{0}'

Type: WMIQuery

Pattern: Windows_HyperV_VMs.pat

Get-WmiObject -Namespace root\virtualization\v2 Msvm_ComputerSystem

Get-WmiObject -Namespace root\virtualization\v2 Msvm_SummaryInformation | Where-Object {$_.Name -eq 'vmID'}

Type: PowerShellExecute

Pattern: Windows_HyperV_VMs_PS.pat

SELECT * FROM Win32_NetworkAdapterConfiguration Where IPEnabled=true


Type: WMIQuery

Pattern: Windows_NetworkInterfaces.pat

Get-WmiObject Win32_NetworkAdapterConfiguration | Where-Object {$_.IPEnabled -eq 'true'}

Type: PowerShellExecute

Pattern: Windows_NetworkInterfaces_PS.pat

SELECT * FROM Win32_OperatingSystem


Type: WMIQuery

Pattern:

Windows_OS.pat

Windows_Hostinfo_SystemUpTime.pat

Get-WmiObject Win32_OperatingSystem

Type: PowerShellExecute

Pattern:

Windows_OS_PS.pat

Windows_Hostinfo_SystemUpTime_PS.pat

SELECT * FROM Win32_QuickFixEngineering

Type: WMIQuery

Pattern: Windows_Patches.pat

Get-WmiObject Win32_QuickFixEngineering

Type: PowerShellExecute

Pattern: Windows_Patches_PS.pat

SELECT * FROM Win32_DesktopMonitor

Type: WMIQuery

Pattern: Windows_Peripherie_Monitor.pat

Get-WmiObject Win32_DesktopMonitor

Type: PowerShellExecute

Pattern: Windows_Peripherie_Monitor_PS.pat

SELECT * FROM Win32_Printer


Type: WMIQuery

Pattern: Windows_Peripherie_Printer.pat

Get-WmiObject Win32_Printer

Type: PowerShellExecute

Pattern: Windows_Peripherie_Printer_PS.pat

SELECT * FROM Win32_DiskDrive Where InterfaceType = "USB"


 Type: WMIQuery

Pattern: Windows_Peripherie_USB_Storage.pat

Get-WmiObject Win32_DiskDrive | Where-Object {$_.InterfaceType -eq 'USB'}

Type: PowerShellExecute

Pattern: Windows_Peripherie_USB_Storage_PS.pat

SELECT * FROM Win32_VideoController

Type: WMIQuery

Pattern: Windows_Peripherie_VideoController.pat

Get-WmiObject Win32_VideoController

Type: PowerShellExecute

Pattern: Windows_Peripherie_VideoController_PS.pat

SOFTWARE\Microsoft\Windows NT\CurrentVersion

Type: WMIRegValue

Pattern: Windows_ProductKey.pat

Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion' | Select-Object DigitalProductId

Type: PowerShellExecute

Pattern: Windows_ProductKey_PS.pat

SELECT * FROM Win32_DiskDrive

Type: WMIQuery

Pattern: Windows_StorageDevice.pat

Get-WmiObject Win32_DiskDrive

Type: PowerShellExecute

Pattern: Windows_StorageDevice_PS.pat

SELECT * FROM Win32_ComputerSystem

fallback command:

SELECT * from Win32_NetworkLoginProfile WHERE LastLogOn IS NOT NULL

Type: WMIQuery

Pattern: Windows_Hostinfo_Username.pat

Get-WmiObject Win32_ComputerSystem

fallback command:

Get-WmiObject Win32_NetworkLoginProfile | Where-Object {$_.LastLogon -ne $null}

Type: PowerShellExecute

Pattern: Windows_Hostinfo_Username_PS.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir {drive}\tomcat*.exe /s/b

for all found tomcat.exe files:

{tomcat.exe}version.bat | findstr "server number"

fallback command:

type {tomcat-path}RELEASE-NOTES | findstr /i /c:"tomcat version"

Type: WMIExecute

Pattern: Windows_Application_Tomcat.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir -path {drive}\ -r -filter tomcat*.exe -ErrorAction SilentlyContinue | % fullname

for all found tomcat.exe files:

& '{tomcat.exe}version.bat' | findstr "server number"

fallback command:

type {tomcat-path}RELEASE-NOTES | findstr /i /c:"tomcat version"

Type: PowerShellExecute

Pattern: Windows_Application_Tomcat_PS.pat

SOFTWARE\Microsoft\Office

SOFTWARE\Wow6432Node\Microsoft\Office

for each key → sub value:

\Registration\DigitalProductID

Type: WMIRegValueList

Pattern: Windows_Application_Office_ProductKey.pat

Get-ChildItem -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\' | Select-Object PSChildName

Get-ChildItem -Path 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\' | Select-Object PSChildName

for each key → sub value:

\Registration\DigitalProductID

Type: PowerShellExecute

Pattern: Windows_Application_Office_ProductKey_PS.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir {drive}\mysql.exe /s/b

for all found mysql.exe files:

{mysql.exe} -u $$login$$ -p$$password$$ -e"SELECT table_schema AS "Database name", Round(Sum(data_length + index_length) / 1024 / 1024, 0)  AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;"

Type: WMIExecute

Pattern: Windows_Application_mySQL-DBs.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir -path {drive}\ -r -filter mysql.exe -ErrorAction SilentlyContinue | % fullname

for all found mysql.exe files:

& '{mysql.exe}' -u $$login$$ -p$$password$$ -e'SELECT table_schema AS \""Database name\"", Round(Sum(data_length + index_length) / 1024 / 1024, 0)  AS \""Size (MB)\"" FROM information_schema.TABLES GROUP BY table_schema;'

Type: PowerShellExecute

Pattern: Windows_Application_mySQL-DBs_PS.pat

sqlcmd -Q "SELECT DB.name, SUM(CASE WHEN type = 0 THEN MF.size * 8 / 1024 ELSE 0 END) AS DataFileSizeMB, SUM(CASE WHEN type = 1 THEN MF.size * 8 / 1024 ELSE 0 END) AS LogFileSizeMB FROM sys.master_files MF JOIN sys.databases DB ON DB.database_id = MF.database_id GROUP BY DB.name"

Type: WMIExecute

Pattern: Windows_Application_MSSQL-DBs.pat

Type: PowerShellExecute

Pattern: Windows_Application_MSSQL-DBs_PS.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir {drive}\psql.exe /s/b

for all found psql.exe files:

[set "PGPASSWORD=$$password$$"]"{psql.exe}" -h localhost --username=$$login$$ -c "\l+"

Type: WMIExecute

Pattern: Windows_Application_PostgrSQL-DBs.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir -path {drive}\ -r -filter psql.exe -ErrorAction SilentlyContinue | % fullname

for all found psql.exe files:

$env:PGPASSWORD='$$password$$'; &'{psql.exe}' -h localhost --username=postgres -c "\l+";$env:PGPASSWORD=''

Type: PowerShellExecute

Pattern: Windows_Application_PostgrSQL-DBs_PS.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir {drive}\pom.xml /s /b | findstr "atlassian.*-web"

for all found pom.xml files:

type "{pom.xml}" | findstr "parent version"

Type: WMIExecute

Pattern:

Windows_Application_Atlassian-JIRA.pat

Windows_Application_Atlassian-Confluence.pat

Windows_Application_Atlassian-Bamboo.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir -path {drive}\ -r -filter pom.xml -ErrorAction SilentlyContinue | % fullname

for all found pom.xml files:

type '{pom.xml}' | findstr "parent version"

Type: PowerShellExecute

Pattern:

Windows_Application_Atlassian-JIRA_PS.pat

Windows_Application_Atlassian-Confluence_PS.pat

Windows_Application_Atlassian-Bamboo_PS.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir {drive}\MANIFEST.MF /i | findstr "bitbucket"

for all found MANIFEST.MF files:

type "{MANIFEST.MF}" | findstr /I "implementation-version"

Type: WMIExecute

Pattern: Windows_Application_Atlassian-BitBucket.pat

wmic logicaldisk where drivetype=3 get caption | findstr ":"

for all drives:

dir -path {drive}\ -r -filter MANIFEST.MF -ErrorAction SilentlyContinue | % fullname | findstr /i ""bitbucket"

for all found MANIFEST.MF files:

type '{MANIFEST.MF}' | findstr "implementation-version"

Type: PowerShellExecute

Pattern:

Windows_Application_Atlassian-BitBucket_PS.pat

For the Atlassian Products reading the used database configuration:

dir {drive}\dbconfig.xml /s /b | findstr /i "<productName>"

for all found dbconfig.xml files:

type "{dbconfig}" | findstr "jdbc:"

Type: WMIExecute

Pattern:

Windows_Application_Atlassian-JIRA.pat

Windows_Application_Atlassian-Confluence.pat

Windows_Application_Atlassian-Bamboo.pat

Windows_Application_Atlassian-BitBucket.pat

For the Atlassian Products reading the used database configuration:

dir -path {drive}\ -r -filter dbconfig.xml -ErrorAction SilentlyContinue | % fullname | findstr /i "<productName>"

for all found dbconfig.xml files:

type "{dbconfig}" | findstr "jdbc:"

Type: PowerShellExecute

Pattern:

Windows_Application_Atlassian-JIRA_PS.pat

Windows_Application_Atlassian-Confluence_PS.pat

Windows_Application_Atlassian-Bamboo_PS.pat

Windows_Application_Atlassian-BitBucket_PS.pat


Linux

Discovery automatically adds | col -b to all executed commands to disable colored outputs.

CommandTypePattern

last | egrep 'tty|pts'

SSHExecuteLinux_Hostinfo_Username.pat
COLUMNS=256 dpkg -lSSHExecuteLinux_Application_DPK.pat
rpm -qa --queryformat 'begin\nname:%{NAME}\nversion:%{VERSION}\nrelease:%{RELEASE}\nvendor:%{VENDOR}\ndescription:%{SUMMARY}\n'SSHExecuteLinux_Application_RPM.pat
sudo qlist -IUCvSSHExecuteLinux_Application_QLIST.pat
egrep '^(model name|cpu MHz|[pP]rocessor|physical id|cpu cores)' /proc/cpuinfoSSHExecuteLinux_CPUs.pat

docker ps -a --no-trunc --format "{{.ID}} {{.Status}}"

for each container:

docker inspect -f ""Name:{{println .Name}}" +
@"Image:{{println .Image}}" +
@"State:{{println .State.Status}}" +
@"Hostname:{{println .Config.Hostname}}"" + $containerId

docker stats --no-stream --format ""{{.MemUsage}}"" + $containerId

SSHExecuteLinux_Docker_Container.pat
df -BMB | grep "^/dev"SSHExecuteLinux_FileSystem.pat
rm ~/.bash_history -f && history -cSSHExecuteLinux_Host_Clear_Command_History.pat

hostname

OS check command:

uname -o -r -i -m && cat /etc/*release && lsb_release -a

For Solaris-Systems:

check-hostname | awk '{ print $NF }'

all other Linux-Systems:

hostname --fqdn

SSHExecuteLinux_Hostinfo_Hostname.pat

dmesg | grep -i 'hypervisor detected'

fallback command(s):

systemd-detect-virt

hostnamectl | grep -i 'virtualization'

sudo virt-what

SSHExecuteLinux_Hostinfo_Hypervisor.pat
sudo dmidecode -t system | grep 'Product'SSHExecuteLinux_Hostinfo_Model.pat
egrep '^MemTotal' /proc/meminfoSSHExecuteLinux_Hostinfo_RAM.pat

netstat -tun

fallback command:

netstat -an

SSHExecuteLinux_Hostinfo_ReferencedHosts.pat

sudo dmidecode -t system | grep 'Serial Number'

SSHExecuteLinux_Hostinfo_SerialNr.pat

uptime | sed -E 's/^[^,]*up *//; s/, *[[:digit:]]* users.*//; s/min/minutes/; s/([[:digit:]]+):0?([[:digit:]]+)/\1 hours, \2 minutes/'

fallback command:

cat /proc/uptime

SSHExecuteLinux_Hostinfo_SystemUpTime.pat
sudo dmidecode -t system | grep 'UUID'SSHExecuteLinux_Hostinfo_UUID.pat

sudo dmidecode -t system | grep 'Manufacturer'

fallback command:

cat /sys/class/dmi/id/sys_vendor

SSHExecuteLinux_Hostinfo_Vendor.pat

timedatectl | grep 'Time zone'

fallback command:

date '+%Z %z'

SSHExecuteLinux_Hostinfo_Timezone.pat

ifconfig -a

fallback command:

sudo ip addr show

SSHExecute

Linux_NetworkInterfaces.pat

sudo ip route show | grep 'default'SSHExecute

Linux_NetworkInterfaces.pat

Linux_NetworkInterfaces_IA.pat


ip addrSSHExecuteLinux_NetworkInterfaces_IA.pat
uname -o -r -i -m && cat /etc/*release && lsb_release -aSSHExecuteLinux_OS.pat
lpstat -tSSHExecuteLinux_Peripherie_Printer.pat
lsusbSSHExecuteLinux_Peripherie_USB_Storage.pat
lsusb -D /dev/bus/usb/{0}/{1} | grep -E 'evice:|id|Class'SSHExecuteLinux_Peripherie_USB_Storage.pat
lsblk -e 11,1 -dbP --output NAME,MAJ:MIN,VENDOR,MODEL,SERIAL,LABEL,UUID,SIZE,REV,TYPE,STATESSHExecuteLinux_StorageDevice.pat

VBoxManage list vms

for each vm:

VBoxManage showvminfo {0} --machinereadable

SSHExecuteLinux_VBox_VMs.pat

xe vm-list params=uuid is-control-domain=false is-a-snapshot=false --minimal

for each vm:

xe vm-list params=name-label uuid={1} --minimal

xe vm-list params=name-description uuid={1} --minimal

xe vm-list params=power-state uuid={1} --minimal

xe vm-list params=memory-static-maxe uuid={1} --minimal

xe vm-list params=networks uuid={1} --minimal

xe vm-list params=VCPUs-number uuid={1} --minimal

SSHExecuteLinux_Xen_VMs.pat

sudo service --status-all

sudo rc-status --all | grep -F '[''

sudo systemctl list-unit-files --type=service |  egrep 'enabled|disabled'

SSHExecuteLinux_ApplicationServices.pat
sudo mysql -u $$login$$ -p$$password$$ -e "SELECT table_schema AS \"Database name\", Round(Sum(data_length + index_length) / 1024 / 1024, 0)  AS \"Size (MB)\" FROM information_schema.TABLES GROUP BY table_schema;"SSHExecuteLinux_Application_mySQL-DBs.pat

echo $$password$$ | sudo -S -u $$login$$ psql -c "\l+"

fallback command:

echo $$password$$ | sudo -S -u $$login$$ psql -h localhost -c "\l+"

SSHExecuteLinux_Application_PostgreSQL-DBs.pat

sudo find / -iname "pom.xml" | grep 'atlassian.*-web'

for all found pom.xml files:

sed -n '/<parent>/,/<\/parent>/H; /<parent>/h; /\/parent/{x;s/<parent>\(.*[^\n]\)\n*<\/parent>/\1/p;}' {pom.xml}

SSHExecute

Linux_Application_Atlassian-JIRA.pat

Linux_Application_Atlassian-Confluence.pat

Linux_Application_Atlassian-Bamboo.pat

sudo find / -iname "MANIFEST.MF" | grep 'bitbucket'

for all found MANIFEST.MF files:

cat {MANIFEST.MF} | grep -i "implementation-version"
SSHExecuteLinux_Application_Atlassian-BitBucket.pat

For the Atlassian Products reading the used database configuration:

sudo find / -iname ""dbconfig.xml"" | grep '<productName>'

for all found dbconfig.xml files:

cat {dbconfig} | grep '<url>jdbc:'

SSHExecute

Linux_Application_Atlassian-JIRA.pat

Linux_Application_Atlassian-Confluence.pat

Linux_Application_Atlassian-Bamboo.pat

Linux_Application_Atlassian-BitBucket.pat


MacOS

CommandTypePattern
system_profiler SPApplicationsDataTypeSSHExecuteMacOSX_Application_ApplicationsData.pat
system_profiler SPExtensionsDataTypeSSHExecuteMacOSX_Application_ExtensionsData.pat
system_profiler SPFrameworksDataTypeSSHExecuteMacOSX_Application_FrameworksData.pat
system_profiler SPPrefPaneDataTypeSSHExecuteMacOSX_Application_PrefPaneData.pat
launchctl listSSHExecuteMacOSX_ApplicationServices.pat
(sysctl -n machdep.cpu.brand_string) & (system_profiler | grep -e 'Processor ' -e Cores -e 'Number of Processors')SSHExecuteMacOSX_CPUs.pat
df -lk | grep "^/dev"SSHExecuteMacOSX_FileSystem.pat
host "$(hostname -s)"SSHExecuteMacOSX_Hostinfo_FQDN.pat
sysctl hw.memsizeSSHExecuteMacOSX_Hostinfo_RAM.pat
system_profiler | grep -e 'Model Name: ' -e 'Model Identifier: ' -e 'Memory: ' -e 'Serial Number (system): ' -e 'Hardware UUID: 'SSHExecuteMacOSX_Hostinfo.pat
sudo systemsetup -gettimezoneSSHExecuteMacOSX_Hostinfo_Timezone.pat
sw_versSSHExecuteMacOSX_OS.pat
system_profiler -xml SPUSBDataTypeSSHExecuteMacOSX_Peripherie_USB_Storage.pat
uptimeSSHExecuteMacOSX_UpTime.pat


SNMP

CommandTypePattern
1.3.6.1.2.1.1.3.0;1.3.6.1.2.1.1.4.0;1.3.6.1.2.1.1.5.0;1.3.6.1.2.1.1.6.0;1.3.6.1.4.1.2021.4.5.0SNMP_GETSNMP_Deviceinfo_Default.pat
1.3.6.1.4.1.2021.4.5.0;1.3.6.1.4.1.2021.4.6.0;1.3.6.1.4.1.2021.4.11.0SNMP_GETSNMP_Deviceinfo_ExtExampleRAM.pat
1.3.6.1.2.1.2.2.1.2;1.3.6.1.2.1.4.20.1.2SNMP_WALKSNMP_Deviceinfo_Network.pat


Other

CommandTypePattern
HostSystemSSHExecuteESXi_HostSystem.pat
VirtualMachineSSHExecuteESXi_VirtualMachines.pat
show memorySSHExecuteIBM_DataPower_Hostinfo_ShowMemory.pat
show versionSSHExecute

IBM_DataPower_Hostinfo_ShowNetwork-Interface.pat

IBM_DataPower_Hostinfo_ShowVersion.pat

show systemSSHExecuteIBM_DataPower_Hostinfo_ShowSystem.pat
pkginfo -lSSHExecuteSolaris_Application.pat
psrinfo -pvSSHExecuteSolaris_CPUs.pat
prtconf | grep MemorySSHExecuteSolaris_Hostinfo_RAM.pat
smbios -t SMB_TYPE_SYSTEMSSHExecuteSolaris_Hostinfo_System.pat
kstat -p unix:0:system_misc:boot_time | nawk '{printf "%d\n", srand()-$2}'SSHExecuteSolaris_Hostinfo_SystemUpTime.pat
nlsadm get-timezoneSSHExecuteSolaris_Hostinfo_Timezone.pat
Last modified on Apr 6, 2024

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.