Reference for Application Dependency Management

This guide lists the predefined objects in OCI Resource Analytics for the Application Dependency Management 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 Application Dependency Management and their columns, data types, keys, and the referred view and column names. The following views are available:

Application Dependency Management Views
Name Description
APPLICATION_DEPENDENCY_MANAGEMENT_KNOWLEDGE_BASE_DIM_V This view stores information on knowledge base components of Application Dependency Management (ADM) service, which provide access to vulnerabilities.
APPLICATION_DEPENDENCY_MANAGEMENT_REMEDIATION_RECIPE_DIM_V This view stores information Application Dependency Management(ADM) remediation recipes, which contain the basic configuration and the details of each of the remediation stages (Detect, Recommend, Verify, and Apply).
APPLICATION_DEPENDENCY_MANAGEMENT_REMEDIATION_RECIPE_CONFIGURATION_DIM_V This view stores information on the configuration of an Application Dependency Management (ADM) remediation recipe.
APPLICATION_DEPENDENCY_MANAGEMENT_FACT_V Fact table for the Application Dependency Management service.

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: Application Dependency Management views.

APPLICATION_DEPENDENCY_MANAGEMENT_FACT_V


Relationship diagram showing the fact table APPLICATION_DEPENDENCY_MANAGEMENT_FACT_V and its related dimension tables.

Relationships exist among dimensions. Dimensions can be joined directly to each other. This diagram shows the relationship between dimension views.

APPLICATION_DEPENDENCY_MANAGEMENT_REMEDIATION_RECIPE_DIM_V


Relationship diagram showing the dimension table APPLICATION_DEPENDENCY_MANAGEMENT_REMEDIATION_RECIPE_DIM_V and its relationship to COMPARTMENT_DIM_V.

Sample Queries

Sample queries for Application Dependency Management.

List the number of remediation recipes associated with a subnet.

SELECT
    D.DISPLAY_NAME AS SUBNET_NAME,
    COUNT(REMEDIATION_RECIPE_ID) AS REMEDIATION_RECIPE_COUNT
FROM OCIRA.APPLICATION_DEPENDENCY_MANAGEMENT_FACT_V F
LEFT JOIN OCIRA.VCN_SUBNET_DIM D
    ON F.NETWORK_CONFIGURATION_SUBNET_ID = D.ID
WHERE F.TIME_CREATED >= CURRENT_DATE - 30 AND F.LIFECYCLE_STATE <> 'TERMINATED'
GROUP BY D.DISPLAY_NAME;