mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-03 15:00:36 +08:00
1719 lines
38 KiB
TypeScript
1719 lines
38 KiB
TypeScript
/* eslint-disable sonarjs/no-duplicate-string */
|
|
import { K8sNodesData } from 'api/infraMonitoring/getK8sNodesList';
|
|
import { PANEL_TYPES } from 'constants/queryBuilder';
|
|
import { GetQueryResultsProps } from 'lib/dashboard/getQueryResults';
|
|
import { DataTypes } from 'types/api/queryBuilder/queryAutocompleteResponse';
|
|
import { EQueryType } from 'types/common/dashboard';
|
|
import { DataSource } from 'types/common/queryBuilder';
|
|
import { v4 } from 'uuid';
|
|
|
|
export const nodeWidgetInfo = [
|
|
{
|
|
title: 'CPU Usage (cores)',
|
|
yAxisUnit: '',
|
|
},
|
|
{
|
|
title: 'Memory Usage (bytes)',
|
|
yAxisUnit: 'bytes',
|
|
},
|
|
{
|
|
title: 'CPU Usage (%)',
|
|
yAxisUnit: 'percentunit',
|
|
},
|
|
{
|
|
title: 'Memory Usage (%)',
|
|
yAxisUnit: 'percentunit',
|
|
},
|
|
{
|
|
title: 'Pods by CPU (top 10)',
|
|
yAxisUnit: '',
|
|
},
|
|
{
|
|
title: 'Pods by Memory (top 10)',
|
|
yAxisUnit: 'bytes',
|
|
},
|
|
{
|
|
title: 'Network error count',
|
|
yAxisUnit: '',
|
|
},
|
|
{
|
|
title: 'Network IO rate',
|
|
yAxisUnit: 'binBps',
|
|
},
|
|
{
|
|
title: 'Filesystem usage (bytes)',
|
|
yAxisUnit: 'bytes',
|
|
},
|
|
{
|
|
title: 'Filesystem usage (%)',
|
|
yAxisUnit: 'percentunit',
|
|
},
|
|
];
|
|
|
|
export const getNodeMetricsQueryPayload = (
|
|
node: K8sNodesData,
|
|
start: number,
|
|
end: number,
|
|
dotMetricsEnabled: boolean,
|
|
): GetQueryResultsProps[] => {
|
|
const getKey = (dotKey: string, underscoreKey: string): string =>
|
|
dotMetricsEnabled ? dotKey : underscoreKey;
|
|
const k8sNodeCpuUtilizationKey = getKey(
|
|
'k8s.node.cpu.utilization',
|
|
'k8s_node_cpu_utilization',
|
|
);
|
|
|
|
const k8sNodeAllocatableCpuKey = getKey(
|
|
'k8s.node.allocatable_cpu',
|
|
'k8s_node_allocatable_cpu',
|
|
);
|
|
|
|
const k8sContainerCpuRequestKey = getKey(
|
|
'k8s.container.cpu_request',
|
|
'k8s_container_cpu_request',
|
|
);
|
|
|
|
const k8sNodeMemoryUsageKey = getKey(
|
|
'k8s.node.memory.usage',
|
|
'k8s_node_memory_usage',
|
|
);
|
|
|
|
const k8sNodeAllocatableMemoryKey = getKey(
|
|
'k8s.node.allocatable_memory',
|
|
'k8s_node_allocatable_memory',
|
|
);
|
|
|
|
const k8sContainerMemoryRequestKey = getKey(
|
|
'k8s.container.memory_request',
|
|
'k8s_container_memory_request',
|
|
);
|
|
|
|
const k8sNodeMemoryWorkingSetKey = getKey(
|
|
'k8s.node.memory.working_set',
|
|
'k8s_node_memory_working_set',
|
|
);
|
|
|
|
const k8sNodeMemoryRssKey = getKey(
|
|
'k8s.node.memory.rss',
|
|
'k8s_node_memory_rss',
|
|
);
|
|
|
|
const k8sPodCpuUtilizationKey = getKey(
|
|
'k8s.pod.cpu.utilization',
|
|
'k8s_pod_cpu_utilization',
|
|
);
|
|
|
|
const k8sPodMemoryUsageKey = getKey(
|
|
'k8s.pod.memory.usage',
|
|
'k8s_pod_memory_usage',
|
|
);
|
|
|
|
const k8sNodeNetworkErrorsKey = getKey(
|
|
'k8s.node.network.errors',
|
|
'k8s_node_network_errors',
|
|
);
|
|
|
|
const k8sNodeNetworkIoKey = getKey(
|
|
'k8s.node.network.io',
|
|
'k8s_node_network_io',
|
|
);
|
|
|
|
const k8sNodeFilesystemUsageKey = getKey(
|
|
'k8s.node.filesystem.usage',
|
|
'k8s_node_filesystem_usage',
|
|
);
|
|
|
|
const k8sNodeFilesystemCapacityKey = getKey(
|
|
'k8s.node.filesystem.capacity',
|
|
'k8s_node_filesystem_capacity',
|
|
);
|
|
|
|
const k8sNodeFilesystemAvailableKey = getKey(
|
|
'k8s.node.filesystem.available',
|
|
'k8s_node_filesystem_available',
|
|
);
|
|
|
|
const k8sNodeNameKey = getKey('k8s.node.name', 'k8s_node_name');
|
|
|
|
const k8sPodNameKey = getKey('k8s.pod.name', 'k8s_pod_name');
|
|
|
|
return [
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_cpu_utilization--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeCpuUtilizationKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '441b62d7',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used (avg)',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_allocatable_cpu--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeAllocatableCpuKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'B',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'b205b1a3',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'allocatable',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'B',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'max',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_container_cpu_request--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sContainerCpuRequestKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'C',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '884c2bf3',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'requests',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'C',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_cpu_utilization--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeCpuUtilizationKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'max',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'D',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '98be9da1',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used (max)',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'D',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'max',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_cpu_utilization--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeCpuUtilizationKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'min',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'E',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'ce97dd7b',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used (min)',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'E',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'min',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_memory_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeMemoryUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'fdffcbb2',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used (avg)',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_allocatable_memory--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeAllocatableMemoryKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'B',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '9b79a8bd',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'allocatable',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'B',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'max',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_container_memory_request--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sContainerMemoryRequestKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'C',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '3387fb4a',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'requests',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'C',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_memory_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeMemoryUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'max',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'D',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'd1ad7ccb',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used (max)',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'D',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'max',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_memory_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeMemoryUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'min',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'E',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '5e578329',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used (min)',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'E',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'min',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_memory_working_set--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeMemoryWorkingSetKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'F',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '6ab3ec98',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'working set',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'F',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_memory_rss--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeMemoryRssKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'G',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '80c9a1db',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'rss',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'G',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_cpu_utilization--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeCpuUtilizationKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '752765ef',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_allocatable_cpu--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeAllocatableCpuKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'B',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'f0c5c1ed',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'allocatable',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'B',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'max',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_container_cpu_request--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sContainerCpuRequestKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'C',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'b952b389',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'requests',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'C',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
],
|
|
queryFormulas: [
|
|
{
|
|
disabled: false,
|
|
expression: 'A/B',
|
|
legend: 'used/allocatable',
|
|
queryName: 'F1',
|
|
},
|
|
{
|
|
disabled: false,
|
|
expression: 'A/C',
|
|
legend: 'used/request',
|
|
queryName: 'F2',
|
|
},
|
|
],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_memory_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeMemoryUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'c2a2c926',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_allocatable_memory--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeAllocatableMemoryKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'B',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '20e6760c',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'allocatable',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'B',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'max',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_container_memory_request--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sContainerMemoryRequestKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'latest',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'C',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'fcc4d5e8',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'requests',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'C',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'latest',
|
|
},
|
|
],
|
|
queryFormulas: [
|
|
{
|
|
disabled: false,
|
|
expression: 'A/B',
|
|
legend: 'used/allocatable',
|
|
queryName: 'F1',
|
|
},
|
|
{
|
|
disabled: false,
|
|
expression: 'A/C',
|
|
legend: 'used/request',
|
|
queryName: 'F2',
|
|
},
|
|
],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_pod_cpu_utilization--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sPodCpuUtilizationKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '88d38c06',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [
|
|
{
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_pod_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sPodNameKey,
|
|
type: 'tag',
|
|
},
|
|
],
|
|
having: [],
|
|
legend: `{{${k8sPodNameKey}}}`,
|
|
limit: 10,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_pod_memory_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sPodMemoryUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '43033387',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [
|
|
{
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_pod_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sPodNameKey,
|
|
type: 'tag',
|
|
},
|
|
],
|
|
having: [],
|
|
legend: `{{${k8sPodNameKey}}}`,
|
|
limit: 10,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_network_errors--float64--Sum--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeNetworkErrorsKey,
|
|
type: 'Sum',
|
|
},
|
|
aggregateOperator: 'increase',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'e9ce8079',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [
|
|
{
|
|
dataType: DataTypes.String,
|
|
id: 'direction--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: 'direction',
|
|
type: 'tag',
|
|
},
|
|
{
|
|
dataType: DataTypes.String,
|
|
id: 'interface--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: 'interface',
|
|
type: 'tag',
|
|
},
|
|
],
|
|
having: [],
|
|
legend: '{{direction}} :: {{interface}}',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'increase',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_network_io--float64--Sum--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeNetworkIoKey,
|
|
type: 'Sum',
|
|
},
|
|
aggregateOperator: 'rate',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'd62d103f',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [
|
|
{
|
|
dataType: DataTypes.String,
|
|
id: 'direction--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: 'direction',
|
|
type: 'tag',
|
|
},
|
|
{
|
|
dataType: DataTypes.String,
|
|
id: 'interface--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: 'interface',
|
|
type: 'tag',
|
|
},
|
|
],
|
|
having: [],
|
|
legend: '{{direction}} :: {{interface}}',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'rate',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_filesystem_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeFilesystemUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'b85d3580',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_filesystem_capacity--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeFilesystemCapacityKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'B',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '23f502e1',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'capacity',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'B',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_filesystem_available--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeFilesystemAvailableKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: false,
|
|
expression: 'C',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'b80650ec',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'available',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'C',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
],
|
|
queryFormulas: [],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
{
|
|
selectedTime: 'GLOBAL_TIME',
|
|
graphType: PANEL_TYPES.TIME_SERIES,
|
|
query: {
|
|
builder: {
|
|
queryData: [
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_filesystem_usage--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeFilesystemUsageKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'A',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: 'b85d3580',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'used',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'A',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
{
|
|
aggregateAttribute: {
|
|
dataType: DataTypes.Float64,
|
|
id: 'k8s_node_filesystem_capacity--float64--Gauge--true',
|
|
isColumn: true,
|
|
isJSON: false,
|
|
key: k8sNodeFilesystemCapacityKey,
|
|
type: 'Gauge',
|
|
},
|
|
aggregateOperator: 'avg',
|
|
dataSource: DataSource.METRICS,
|
|
disabled: true,
|
|
expression: 'B',
|
|
filters: {
|
|
items: [
|
|
{
|
|
id: '23f502e1',
|
|
key: {
|
|
dataType: DataTypes.String,
|
|
id: 'k8s_node_name--string--tag--false',
|
|
isColumn: false,
|
|
isJSON: false,
|
|
key: k8sNodeNameKey,
|
|
type: 'tag',
|
|
},
|
|
op: '=',
|
|
value: node.meta.k8s_node_name,
|
|
},
|
|
],
|
|
op: 'AND',
|
|
},
|
|
functions: [],
|
|
groupBy: [],
|
|
having: [],
|
|
legend: 'capacity',
|
|
limit: null,
|
|
orderBy: [],
|
|
queryName: 'B',
|
|
reduceTo: 'avg',
|
|
spaceAggregation: 'sum',
|
|
stepInterval: 60,
|
|
timeAggregation: 'avg',
|
|
},
|
|
],
|
|
queryFormulas: [
|
|
{
|
|
disabled: false,
|
|
expression: 'A/B',
|
|
legend: 'util %',
|
|
queryName: 'F1',
|
|
},
|
|
],
|
|
},
|
|
clickhouse_sql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
id: v4(),
|
|
promql: [
|
|
{
|
|
disabled: false,
|
|
legend: '',
|
|
name: 'A',
|
|
query: '',
|
|
},
|
|
],
|
|
queryType: EQueryType.QUERY_BUILDER,
|
|
},
|
|
variables: {},
|
|
formatForWeb: false,
|
|
start,
|
|
end,
|
|
},
|
|
];
|
|
};
|