• EnglishEspañol日本語한국어Português
  • Log inStart now

Collecting data but no entity visible

Problem

You have a new type of device that has a profile but no entity has been added in the entity list.

This happens when a device has an SNMP profile telling ktranslate what metrics to collect, but a new entity definition is still in progress for how to display that collection of metrics in New Relic.

Solution

When creating a new entity type, we must review the data that comes in from the profile. That data is used to create a definition that includes information such as the golden metrics for this entity type, and used to create a dashboard. This can take some time and sometimes requires talking to the users who submitted the profile request to ensure the entity definition suits their needs.

Once the entity definition is completed, the new entity will automatically show up in your account and will include all the data previously collected for that device.

The simplest way to spot check this part of the process is to perform a NRQL query similar to:

SELECT latest(instrumentation.name) as Profile, latest(provider), latest(entity.type) as EntityType FROM Metric WHERE instrumentation.name not in ('heartbeat','ktranslate') AND device_name = 'myDevice'

You will see which SNMP profile is associated with your device, since in each profile we define a provider which is the attribute entity synthesis uses. The entity.type will be blank until a definition is completed, and it will immediately be populated after that definition goes live.

Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.