mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
92 lines
3.6 KiB
TypeScript
92 lines
3.6 KiB
TypeScript
import { css } from '@emotion/css';
|
|
import React from 'react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
import { useStyles2 } from '@grafana/ui';
|
|
|
|
export function CheatSheet() {
|
|
const styles = useStyles2(getStyles);
|
|
|
|
return (
|
|
<div>
|
|
<h2>MSSQL cheat sheet</h2>
|
|
Time series:
|
|
<ul className={styles.ulPadding}>
|
|
<li>
|
|
return column named time (in UTC), as a unix time stamp or any sql native date data type. You can use the
|
|
macros below.
|
|
</li>
|
|
<li>any other columns returned will be the time point values.</li>
|
|
</ul>
|
|
Optional:
|
|
<ul className={styles.ulPadding}>
|
|
<li>
|
|
return column named <i>metric</i> to represent the series name.
|
|
</li>
|
|
<li>If multiple value columns are returned the metric column is used as prefix.</li>
|
|
<li>If no column named metric is found the column name of the value column is used as series name</li>
|
|
</ul>
|
|
<p>Resultsets of time series queries need to be sorted by time.</p>
|
|
Table:
|
|
<ul className={styles.ulPadding}>
|
|
<li>return any set of columns</li>
|
|
</ul>
|
|
Macros:
|
|
<ul className={styles.ulPadding}>
|
|
<li>$__time(column) -> column AS time</li>
|
|
<li>$__timeEpoch(column) -> DATEDIFF(second, '1970-01-01', column) AS time</li>
|
|
<li>
|
|
$__timeFilter(column) -> column BETWEEN '2017-04-21T05:01:17Z' AND
|
|
'2017-04-21T05:01:17Z'
|
|
</li>
|
|
<li>$__unixEpochFilter(column) -> column >= 1492750877 AND column <= 1492750877</li>
|
|
<li>
|
|
$__unixEpochNanoFilter(column) -> column >= 1494410783152415214 AND column <= 1494497183142514872
|
|
</li>
|
|
<li>
|
|
$__timeGroup(column, '5m'[, fillvalue]) -> CAST(ROUND(DATEDIFF(second, '1970-01-01',
|
|
column)/300.0, 0) as bigint)*300 by setting fillvalue grafana will fill in missing values according to the
|
|
interval fillvalue can be either a literal value, NULL or previous; previous will fill in the previous seen
|
|
value or NULL if none has been seen yet
|
|
</li>
|
|
<li>
|
|
$__timeGroupAlias(column, '5m'[, fillvalue]) -> CAST(ROUND(DATEDIFF(second,
|
|
'1970-01-01', column)/300.0, 0) as bigint)*300 AS [time]
|
|
</li>
|
|
<li>$__unixEpochGroup(column,'5m') -> FLOOR(column/300)*300</li>
|
|
<li>$__unixEpochGroupAlias(column,'5m') -> FLOOR(column/300)*300 AS [time]</li>
|
|
</ul>
|
|
<p>Example of group by and order by with $__timeGroup:</p>
|
|
<pre>
|
|
<code>
|
|
SELECT $__timeGroup(date_time_col, '1h') AS time, sum(value) as value <br />
|
|
FROM yourtable
|
|
<br />
|
|
GROUP BY $__timeGroup(date_time_col, '1h')
|
|
<br />
|
|
ORDER BY 1
|
|
<br />
|
|
</code>
|
|
</pre>
|
|
Or build your own conditionals using these macros which just return the values:
|
|
<ul className={styles.ulPadding}>
|
|
<li>$__timeFrom() -> '2017-04-21T05:01:17Z'</li>
|
|
<li>$__timeTo() -> '2017-04-21T05:01:17Z'</li>
|
|
<li>$__unixEpochFrom() -> 1492750877</li>
|
|
<li>$__unixEpochTo() -> 1492750877</li>
|
|
<li>$__unixEpochNanoFrom() -> 1494410783152415214</li>
|
|
<li>$__unixEpochNanoTo() -> 1494497183142514872</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function getStyles(theme: GrafanaTheme2) {
|
|
return {
|
|
ulPadding: css({
|
|
margin: theme.spacing(1, 0),
|
|
paddingLeft: theme.spacing(5),
|
|
}),
|
|
};
|
|
}
|