BigFix Insights 変更ログ

このトピックでは、BigFix Insights の変更ログをリストします。

2022 年 1 月リリース – Insights 10.0.8
  • さまざまなバグおよび障害を修正
    • 重複キーが可能であった insights_table_metrics テーブルの入力に関する問題を修正
    • 新規エンティティーのトラッキング・シーケンスに関する問題を修正
    • 同じ名前の既存のエントリーを上書きするカスタム属性の問題を修正
    • etl_metrics に関する問題の修正 - バイナリー形式の列のサポートの追加
    • カスタム・コンテンツで datasource_fixlets が正確に hidden を設定しない問題を修正
  • 追加された機能
    • サイトの組み込みが除外から組み込みに変更されたことにより、このデータ・ソースに関連付けられているすべてのエンティティーの last_sequence がリセットされるようになりました。
    • 「カスタム属性」ビューに、選択したもののみのフィルターが追加されました。
    • 「カスタム属性」ビューに、ユーザー入力の検証が追加されました。
    • 今後すべてのエラー出力から、機密と考えられるデータが削除されます。
    • datasource_sites に、オペレーター・サイトが含まれるようになりました。
    • [スキーマの変更] device_dimensions に次の列を追加:
      • agent_type
    • [スキーマの変更] datasource_sites に次の列を追加:
      • opsite_datasource_user_id
    • [スキーマの変更] datasource_fixlets に次の列を追加:
      • user_remote_id
      • creation_time
      • last_modification_time
    • [スキーマの変更] 次の新しいエンティティー (テーブル) を追加:
      • datasource_baselines
      • datasource_baseline_action_settings
      • datasource_baseline_action_settings_user_groups
      • datasource_baseline_component_actions
      • datasource_baseline_component_action_successes
      • datasource_baseline_component_groups
      • datasource_baseline_components
      • datasource_baseline_fields
      • datasource_baseline_relevances
      • datasource_custom_site_readers
      • datasource_custom_site_writers
      • datasource_device_baselines
      • datasource_external_site_visibilities
      • datasource_fixlet_actions
      • datasource_content_comments
      • datasource_fixlet_relevances
      • datasource_role_group_assignments
      • datasource_role_site_assignments
      • datasource_role_user_assignments
      • datasource_roles
      • datasource_site_users
      • datasource_users
      • etl_entity_inclusions

オプションのエンティティーを有効にするには、dbo.etl_entity_inclusion テーブルにデータ・ソース ID とエンティティー名を挿入します。datasource_id は dbo.datasources テーブルにあり、各エンティティー名は、insights-etl の src/entity にあります。

例: 以下のスクリプトは、datasource_baselines を有効にします。

--Replace ? with the actual datasource id 
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name) 
VALUES(?, 'DatasourceBaseline')

特定のデータ・ソースのすべてのオプションのエンティティーを有効にするには、以下のスクリプトを使用します。

--Replace ? with the actual datasource id

INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaseline')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineActionSetting')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineActionSettingsUserGroup')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineComponent')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineComponentAction')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineComponentGroup')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineComponentActionSuccess')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineField')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceBaselineRelevance')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceCustomSiteReader')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceCustomSiteWriter')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceDeviceBaseline')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceExternalSiteVisibility')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceFixletAction')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceContentComment')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceFixletRelevance')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceRoleGroupAssignment')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceRoleSiteAssignment')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceRoleUserAssignment')
INSERT INTO dbo.etl_entity_inclusions (datasource_id, entity_name)
VALUES(?, 'DatasourceRoleUserAssignment')