NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

Active IQ Unified Manager Discussions

Getting a custom annotation to show up in a datamart

stapleto
4,347 Views

Customer needed a "region" annotation for report purposes.

We created the annotation ("Region" for storage arrays) and populated it in the six OCI servers affected. The next day the DWH administrative portal shows "Region" as unpublished in the Annotations list on DWH. We published it, watched the job run to a successful conclusion, and restarted the reporting portal, but "Region" is not showing up in the capacity datamart.

What did I miss?

2 REPLIES 2

moechnig
4,234 Views

I believe that custom annotations propagate no further than the Inventory mart.  You might want to make sure it has gotten that far; use SQL something like this: 

select distinct annotationType, valueIdentifier from dwh_inventory.annotation_value where annotationType like "Region"

You can get that into Cognos as a table with a SQL query something like this:

select  av.valueIdentifier as region, obj2av.objectId as objId

from dwh_inventory.annotation_value av, dwh_inventory.object_to_annotation obj2av

where av.id = obj2av.annotationValueId

and av.annotationType like "Region"

You can then join this to dwh_capacity.storage_dimension on foo.objid = storage_dimension.id, or equivalent. 

It would be great to find out that there's an easier way. 

ostiguy
4,234 Views

It is within the realm of possibility to use Framework Manager to manipulate the Cognos model to add custom annotations to the model. I am not smart enough to offer more guidance on this topic

Public