Filter decommissioned CIs

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 2분
  • Filter decommissioned configuration items (CIs) while running the CI lookup rules. To filter decommissioned CIs when running the Security Operations CMDB CI lookup rules, set the filterOutDecommissionedCI [sn_sec_cmn.filterOutDecommissionedCI] system property to true.

    시작하기 전에

    Role required: admin

    이 태스크 정보

    The default value of the system property is true. This property is only applicable for CI lookup rules in Vulnerability Response and it does not impact the IRE lookup logic.

    프로시저

    1. Enter sys_properties.list in the left navigation bar.
    2. Select Enter.
    3. In the Search menu, under Name enter sn_sec_cmn.filterOutDecommissionedCI to filter the decommissioned CIs.
    4. In the Value text box, enter the value true or false.
      The default value is true.
    5. Select Update.
      This value is used by CI Lookup Rules during the next import. The sn_sec_cmn.filterOutDecommissionedCI system property filters out CIs that meet the conditions shown below while running the lookup rules.
      _isCIDecommissioned: function(gr, filterDecommissionCi) {
              var install_status = false;
              var life_cycle_stage_status = false;
              // check for property
              if (filterDecommissionCi == "true") {
                  if (gr.isValidField("install_status"))
                      install_status = gr.install_status == 7;
                  if (gr.isValidField("life_cycle_stage_status"))
                      life_cycle_stage_status = gr.life_cycle_stage_status == "Retired";
              }
              return install_status || life_cycle_stage_status;