Queries for metrics deemed the most important for a specific entity type.
We allow a maximum of 10 metrics per entityType.
Golden metrics are defined in a map where each key should be unique. The allowed characters are [a-zA-Z0-9_]
with a maximum of 100 characters.
This key defines the intention of the metric:
memoryUsage:
title: "A title explaining what the user is seeing (unit displayed in the dashboard)"
query:
select: average(host.memoryUsagePercent)
from: Metric
where: ""
facet: ""
eventId: entity.guid
eventName: entity.name
displayAsValue: false
All the fields, except title
and query.select
, are optional.
The previous example shows the default values for each configuration option, so it's equivalent to this:
memoryUsage:
title: "A title explaining what the user is seeing (unit displayed in the dashboard)"
query:
select: average(host.memoryUsagePercent)
Name | Mandatory | Default | Description |
---|---|---|---|
title | Yes | Provide a meaningful title to the graph or value you are displaying. Is also a good practice to add the unit at the end. e.g. Effective memory available to VMs (MB) |
|
displayAsValue | No | false |
Use this option if you want to display a value instead of a line (TIMESERIES) when viewing the information of one entity. |
Name | Mandatory | Default | Description |
---|---|---|---|
select | Yes | Provide the field and function you want to display in the metric. You must only provide one field, but you can do aggregations, sums, etc. Always name the fields to make it easier to read. e.g. sum((provider.httpCodeElb4XXCount.Sum OR 0) + (provider.httpCodeElb5XXCount.Sum OR 0)) AS 'Errors' |
|
from | No | Metric |
Choose where your metric gathers the information from |
where | No | empty string | In the case you need a more granular WHERE clause added into the query you can use this field. e.g. provider='Alb' |
facet | No | empty string | An extra facet by a specific field to be added to the default facet by entityName |
eventId | No | entity.guid |
The event attribute used to filter the entity. We recommend to use the default entity.guid which is generated automatically as part of the entity synthesis. |
eventName | No | entity.name |
The name of the field in the event that references the entity name. By default entity.guid which is generated automatically as part of the entity synthesis. |
In the cases that the entity type can be ingested from different sources and you need to provide a different query implementation for each of them, you can use queries
instead of query
memoryUsage:
title: "A title explaining what the user is seeing (unit displayed in the dashboard)"
queries:
prometheus:
select: average(field)
from: PrometheusSample
newRelic:
select: average(nrField)
from: NewRelicSample
In this example prometheus
and newRelic
are the values the entity must have in the instrumentation.provider
tag.
The first tag value that matches with the entity will be the one used to build the queries.
Is also important to note that the semantics of the queries should match between each implementation. This includes things like average vs counts, units and other details.
If no rule matches the newRelic
one will be used.