The definition files contained in this repository are mappings between the telemetry attributes NewRelic ingests, and the entities users can interact with. If you have telemetry from any source that is not supported out of the box, you can propose a mapping for it and upon a successful merge of your PR, any telemetry received by NewRelic and that matches your definition file will be synthesized into an entity. Then you can start leveraging any of the tools built around them such as the entity explorer, high-density views, workloads, etc.
Please verify that the definition you want to merge meets the acceptance criteria outlined below and if this is your first time creating a definition file please get in contact with the team by opening an issue. We can clear any doubts you might have and provide guidance about the best way to proceed, so your PR will get merged faster, and you can start enjoying your shiny new entities.
- Each entity definition file must live inside its own folder and both must follow the filename format explained below.
- The definition MUST be a valid YAML file.
- The definition must contain at least the top-level fields
domain
andtype
, along with the fieldsname
andidentifier
, located undersynthesis
. We use thedomain
,type
andidentifier
to assign each entity a Global Unique Identifier (GUID). - The
domain
must be a value matching/[A-Z][A-Z0-9_]{2,7}/
. This field is mostly relevant internally for NR. Use EXT by default, although we may advise to use a different value in some cases. - The
type
must be a value matching/[A-Z][A-Z0-9_]{2,11}/
. This field is meant to identify the type of entity. Some examples are APPLICATION, HOST or CONTAINER. - The
identifier
must be assigned a parameter that is unique within the domain and type (e.g . cluster ID, host ID, etc). Keep in mind that the value has the following restrictions and that the entity will not be synthesized if the value extracted from the metrics is considered invalid:/[\x20-\x7E]{1,36}/
.- 1 to 36 standard ascii characters, excluding control chars (codes: 32-126).
- If you suspect that your identifiers may not fulfil our length requirements, set the optional
encodeIdentifierInGUID
field to true.
- The definition needs to provide enough information to differentiate this entity from others. It cannot be a subset nor a superset of any existing definition.
- If the names of your telemetry attributes are too generic, you can define a condition to match on the value of an attribute. For more information on our supported conditions please refer to the conditions section.
- If you are creating a definition for a
domain
andtype
that already exists we'll need to understand your use case, so please provide an explanation in your PR or get in touch with us to discuss it. - If you are adding composite metrics' files for an entity definition they must be placed inside the same folder and follow the filename format.
Each entity definition needs to be placed inside a folder named like this:
<DOMAIN>-<TYPE>
for example: infra-etcd_cluster
Inside each folder there must be at least an entity definition file named definition.yml
.
Composite metrics must be defined in their own YAML file and referenced from the entity definition file. They must be placed inside the same folder as the entity definition and must be named according to their type:
- Golden metrics:
golden_metrics.yml
- Summary metrics:
summary_metrics.yml
When creating a new entity definition you may use the following files as a guide:
- Entity definition: entity definition example
- Golden metrics definition: golden metrics definition example
- Summary metrics definition: summary metrics definition example
For more concrete examples, you can take a look at the files located on the definitions folder.
We support the following conditions over telemetry attributes and their values:
- Attribute match: If the specified attribute is present on the telemetry, synthesize the entity. The value of the attribute is not taken into account.
conditions:
# The attribute must be present on the telemetry
- attribute: attributeName
- Value match: If the value of the specified telemetry attribute matches the expected one, synthesize the entity.
conditions:
# The attribute’s value must match the provided value
- attribute: attributeName
value: value
- Value prefix match: If the value of the specified telemetry attribute has the expected prefix, synthesize the entity.
conditions:
# The attribute’s value must have the expected prefix
- attribute: attributeName
prefix: val
The tags
field accepts an array of metric's attributes that can be used to generate tags for the entities of the defined DOMAIN and TYPE.
During synthesis, the tags will be created using the attribute name as key and its value as the tag value.
If some of the tags' attributes are not present on the telemetry message received, the entity will still be synthesized with the available tags (if any).
The goldenTags
field accepts an array of tag-keys which are considered the most important for the entity's DOMAIN and TYPE,
so that they can be highlighted in the different NewRelic visualizations as important metadata for the entity.
The goldenTags
may be a subset of those defined in the tags
field, but they can also be added to the entity after synthesis,
so we trust the criteria of the contributor of the definition to select the tags they need as the domain expert.
Composite metrics are those deemed important by you and used by NewRelic to provide an out-of-the-box experience with your entities. There are two types of composite metrics that can be defined:
- Summary metrics: Data related to entities that describes how certain parameters are behaving based on the available telemetry. Some examples of good summary metrics are an aggregated form of Throughput, CPU usage and Memory usage to be shown in, for example, a Table. See the summary metrics documentation to know more.
- Golden metrics: These are metrics that are deemed the most important for the given entity and are used, for example, in its 'overview' page. See the golden metrics documentation to know more.
You can create a dashboard with the NewRelic interface and export it to JSON format:
Then you can just copy it to a file within your entity type's folder, modify it if needed and refer to it from the definition.yml:
dashboardTemplates:
- ./<dashboardName>.json
Note that you can define more than one dashboard under the dashboardTemplates
field.
In the configuration
section of the definition.yml
file you can tweak the entity's behavior. At the moment you can only configure the entity's expiration time.
configuration:
# The amount of time without receiving telemetry before an entity is deleted. Defaults to EIGHT_DAYS
entityExpirationTime: EIGHT_DAYS
By default, entities are automatically deleted if we reach 8 days without receiving any telemetry from them.
If this doesn't suit your needs you may set the entityExpirationTime
to one of the following values:
DAILY
EIGHT_DAYS
(default)QUARTERLY
MANUAL
(allowed only for entities without asynthesis
section)
Some validations are automatically executed whenever there is a contribution via pull request, to verify that the provided definition meets the basic requirements:
- The definition files are not malformed, incorrect or missing mandatory fields.
- The identifier cannot be extracted from an attribute with the same name for two different Domain-Types, unless conditions are set to differentiate them, so that the conditions from one entity are not a superset of the other.
You can read more about the current validations here.
If the information provided in the repository is not enough to solve your doubts, you can get in contact with the team by opening an issue.
Other Support Channels
- New Relic Documentation: Comprehensive guidance for using our platform
- New Relic Community: The best place to engage in troubleshooting questions
- New Relic Developer: Resources for building a custom observability applications
- New Relic University: A range of online training for New Relic users of every level
- New Relic Technical Support 24/7/365 ticketed support. Read more about our Technical Support Offerings.
We encourage you to add new entity types! Keep in mind when you submit your pull request, you'll need to sign the CLA via the click-through using CLA-Assistant. You only have to sign the CLA one time per project. If you have any questions, or to execute our corporate CLA, required if your contribution is on behalf of a company, please drop us an email at [email protected].
A note about vulnerabilities
As noted in our security policy, New Relic is committed to the privacy and security of our customers and their data. We believe that providing coordinated disclosure by security researchers and engaging with the security community are important means to achieve our security goals.
If you believe you have found a security vulnerability in this project or any of New Relic's products or websites, we welcome and greatly appreciate you reporting it to New Relic through HackerOne.
Entity Synthesis Definitions is licensed under the Apache 2.0 License.