gitlab-org--gitlab-foss/app/assets/javascripts/monitoring/constants.js
Jose Vargas 268b727a5c Modify the service to support the extra parameters
Added the logic to allow the start and end dates to be created
2019-04-04 14:53:03 -06:00

20 lines
356 B
JavaScript

export const chartHeight = 300;
export const graphTypes = {
deploymentData: 'scatter',
};
export const lineTypes = {
default: 'solid',
};
export const timeWindows = {
thirtyMinutes: '30 minutes',
threeHours: '3 hours',
eightHours: '8 hours',
oneDay: '1 day',
threeDays: '3 days',
oneWeek: '1 week',
};
export const msPerMinute = 60000;