Kafka Export Profile
search cancel

Kafka Export Profile

book

Article ID: 367960

calendar_today

Updated On:

Products

DX NetOps CA Performance Management - Usage and Administration DX NetOps Insights

Issue/Introduction

Needs to find out the Attributes and Attribute Name to inform in ExportedMetricFamilyList and ExportedMetricsList

Environment

DX NetOps all version

Cause

Needs to Create the Export Profile or Update the Export Profile

Resolution

For Create or Update the Export Profile

If you want all non-null metrics from a metric family, you don't need to add metrics to the ExportedMetricsList, you simply add the metric family name to the ExportedMetricFamilyList.

1. You can find all attributes and attribute name in DA machine, example:
cd /opt/IMDataAggregator/data/certifications

fgrep -R -i "NormalizedPortInfo" | grep "Bits Per Second Out"

In output you can obtain the attribute name
normalizedportinfo.attribute.bitspersecondout.attributedisplayname=Bits Per Second Out

Example:
<ExportedMetricFamilyList>
<ExportedMetricFamily>{http://im.ca.com/normalizer}NormalizedPortInfo</ExportedMetricFamily>
</ExportedMetricFamilyList>
<ExportedMetricsList>
<ExportedMetrics>{http://im.ca.com/normalizer}NormalizedPortInfo.BitsPerSecondOut</ExportedMetrics>
</ExportedMetricsList>

 

2. Also you can use this URL instead of run the fgrep -R in DA machine:
http://DA:8581/typecatalog/metricfamilies/NormalizedPortInfo

<Attribute name="BitsPerSecondOut" type="Double">
<Documentation>Bits Per Second Out</Documentation>

Additional Information