Solaris server Discovery Pattern Issue ( Missing "Name" field ) Issue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Symptoms While Solaris Server Discovery throws error message in logs similar to " Insertion failed with error,In payload missing minimum set of input values for criterion (matching) attributes from identify rule for table [cmdb_ci_storage_device]. Add these input values in payload item '{"className":"cmdb_ci_disk","values":{"storage_type":"disk","drive_type":"disk","size_bytes":"3234234234","discovery_source":"ServiceNow","device_interface":"scsi","model_id":"abcdxxxx12313342","interface":"scsi","disk_space":"231231232","sys_class_name":"cmdb_ci_disk","manufacturer":"abcdxxx12211xxxxxxx"}}' ".In this case, the payload is missing "Name" field. Cause Debug the pattern step Solaris Storage -> Get Disks which runs the following command - "iostat -Enr | tr ',' '\n' | sed 's/^[cs][a-zA-Z0-9_]*/DiskSection: Name: &/g'; echo ''" . The output is dropping the DiskSection: Name.The above command works properly on Non-Zone Solaris CI but does not work on Solaris Zone machine. Resolution - Need to update command to take "Name" field into account ( change '\n' to '\\n' ) - "iostat -Enr | tr ',' '\\n' | sed 's/^[cs][a-zA-Z0-9_]*/DiskSection: Name: &/g'; echo ''"