Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3df9387b4f24ae64693a0180ad41ba15f6795dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import { __ } from '~/locale';
import dateFormat from 'dateformat';
import { secondsIn, timeWindowsKeyNames, dateFormats } from './constants';

export const getTimeDiff = timeWindow => {
  const end = Math.floor(Date.now() / 1000); // convert milliseconds to seconds
  const difference = secondsIn[timeWindow] || secondsIn.eightHours;
  const start = end - difference;

  return {
    start: new Date(start * 1000).toISOString(),
    end: new Date(end * 1000).toISOString(),
  };
};

export const getTimeWindow = ({ start, end }) =>
  Object.entries(secondsIn).reduce((acc, [timeRange, value]) => {
    if (end - start === value) {
      return timeRange;
    }
    return acc;
  }, timeWindowsKeyNames.eightHours);

/**
 * This method is used to validate if the graph data format for a chart component
 * that needs a time series as a response from a prometheus query (query_range) is
 * of a valid format or not.
 * @param {Object} graphData  the graph data response from a prometheus request
 * @returns {boolean} whether the graphData format is correct
 */
export const graphDataValidatorForValues = (isValues, graphData) => {
  const responseValueKeyName = isValues ? 'value' : 'values';

  return (
    Array.isArray(graphData.queries) &&
    graphData.queries.filter(query => {
      if (Array.isArray(query.result)) {
        return (
          query.result.filter(res => Array.isArray(res[responseValueKeyName])).length ===
          query.result.length
        );
      }
      return false;
    }).length === graphData.queries.length
  );
};

export const graphDataValidatorForAnomalyValues = (isValues, graphData) => {
  const anomalySeriesCount = 3; // metric, upper, lower
  return (
    graphData.queries &&
    graphData.queries.length === anomalySeriesCount &&
    graphDataValidatorForValues(isValues, graphData)
  );
};

export const getEarliestDatapoint = chartData =>
  chartData.reduce((acc, series) => {
    const { data } = series;
    const { length } = data;
    if (!length) {
      return acc;
    }

    const [first] = data[0];
    const [last] = data[length - 1];
    const seriesEarliest = first < last ? first : last;

    return seriesEarliest < acc || acc === null ? seriesEarliest : acc;
  }, null);

export const makeTimeAxis = config => {
  const defaults = {
    name: __('Time'),
    type: 'time',
    axisLabel: {
      formatter: date => dateFormat(date, dateFormats.timeOfDay),
    },
    axisPointer: {
      snap: true,
    },
  };
  return { ...defaults, ...config };
};

export default {};