mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
Transformations: Format Time Fixes (#72571)
* Add docs * Use interactive tooltip
This commit is contained in:
parent
01100f83ba
commit
79cef4fd12
@ -971,3 +971,11 @@ This transformation is available in Grafana 9.5+ as an opt-in beta feature. Modi
|
||||
{{% /admonition %}}
|
||||
|
||||
Use this transformation to convert time series result into a table, converting time series data frame into a "Trend" field. "Trend" field can then be rendered using [sparkline cell type]({{< relref "../../visualizations/table/#sparkline" >}}), producing an inline sparkline for each table row. If there are multiple time series queries, each will result in a separate table data frame. These can be joined using join or merge transforms to produce a single table with multiple sparklines per row.
|
||||
|
||||
### Format Time
|
||||
|
||||
{{% admonition type="note" %}}
|
||||
This transformation is available in Grafana 10.1+ as an alpha feature.
|
||||
{{% /admonition %}}
|
||||
|
||||
Use this transformation to format the output of a time field. Output can be formatted using (Moment.js format strings)[https://momentjs.com/docs/#/displaying/]. For instance, if you would like to display only the year of a time field the format string `YYYY` can be used to show the calendar year (e.g. 1999, 2012, etc.).
|
||||
|
@ -74,7 +74,16 @@ export function FormatTimeTransfomerEditor({
|
||||
<InlineField
|
||||
label="Format"
|
||||
labelWidth={10}
|
||||
tooltip="The output format for the field specified as a moment.js format string."
|
||||
tooltip={
|
||||
<>
|
||||
The output format for the field specified as a{' '}
|
||||
<a href="https://momentjs.com/docs/#/displaying/" target="_blank" rel="noopener noreferrer">
|
||||
Moment.js format string
|
||||
</a>
|
||||
.
|
||||
</>
|
||||
}
|
||||
interactive={true}
|
||||
>
|
||||
<Input onChange={onFormatChange} value={options.outputFormat} />
|
||||
</InlineField>
|
||||
|
Loading…
Reference in New Issue
Block a user