Reference for Visual Builder

This guide lists the predefined objects in OCI Resource Analytics for the Visual Builder service. You can find information about views, entity relationships, subject areas, and sample queries.

Views

This section provides information about views within OCI Resource Analytics Visual Builder and their columns, data types, keys, and the referred view and column names. The following views are available:

Visual Builder Views
Name Description
VISUAL_BUILDER_INSTANCE_DIM_V This view stores information about the details of a Visual Builder instance.
VISUAL_BUILDER_FACT_V Fact table for Visual Builder instances.

The suffixes in the view names specify the view type:

  • FACT_V: Fact
  • DIM_V: Dimension

Relationship Diagram

This section provides diagrams that define the logical relationship of a fact table with different dimension tables.

The contents of each view and their relationships are listed in the following file: Visual Builder views.

VISUAL_BUILDER_FACT_V


Relationship diagram showing VISUAL_BUILDER_FACT_V and its related dimension tables.

Sample Queries

Sample queries for Visual Builder.

Show inactive Visual Builder instances and their node count.

SELECT
    INSTANCE_ID,
	NODE_COUNT
FROM OCIRA.VISUAL_BUILDER_FACT_V F
WHERE LIFECYCLE_STATE != 'ACTIVE';