The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/data/reducedataoptions.md

1.5 KiB

+++

-----------------------------------------------------------------------

Do not edit this file. It is automatically generated by API Documenter.

-----------------------------------------------------------------------

title = "ReduceDataOptions" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++

ReduceDataOptions interface

Options for how to turn DataFrames into an array of display values

Signature

export interface ReduceDataOptions 

Import

import { ReduceDataOptions } from '@grafana/data';

Properties

Property Type Description
calcs string[] When !values, pick one value for the whole field
fields string Which fields to show. By default this is only numeric fields
limit number if showing all values limit
values boolean

calcs property

When !values, pick one value for the whole field

Signature

calcs: string[];

fields property

Which fields to show. By default this is only numeric fields

Signature

fields?: string;

limit property

if showing all values limit

Signature

limit?: number;

values property

Signature

values?: boolean;