124 lines
3.4 KiB
JavaScript
124 lines
3.4 KiB
JavaScript
|
|
import dashboard from './screens/dashboard.vue';
|
||
|
|
import monitoring from './screens/monitoring/index.vue';
|
||
|
|
import monitoringTag from './screens/monitoring/tag.vue';
|
||
|
|
import monitoringTagJobs from './screens/monitoring/tag-jobs.vue';
|
||
|
|
import metrics from './screens/metrics/index.vue';
|
||
|
|
import metricsJobs from './screens/metrics/jobs.vue';
|
||
|
|
import metricsQueues from './screens/metrics/queues.vue';
|
||
|
|
import metricsPreview from './screens/metrics/preview.vue';
|
||
|
|
import recentJobs from './screens/recentJobs/index.vue';
|
||
|
|
import recentJobsJob from './screens/recentJobs/job.vue';
|
||
|
|
import failedJobs from './screens/failedJobs/index.vue';
|
||
|
|
import failedJobsJob from './screens/failedJobs/job.vue';
|
||
|
|
import batches from './screens/batches/index.vue';
|
||
|
|
import batchesPreview from './screens/batches/preview.vue';
|
||
|
|
|
||
|
|
export default [
|
||
|
|
{ path: '/', redirect: '/dashboard' },
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/dashboard',
|
||
|
|
name: 'dashboard',
|
||
|
|
component: dashboard,
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/monitoring',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: '',
|
||
|
|
name: 'monitoring',
|
||
|
|
component: monitoring,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: ':tag',
|
||
|
|
component: monitoringTag,
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'jobs',
|
||
|
|
name: 'monitoring-jobs',
|
||
|
|
component: monitoringTagJobs,
|
||
|
|
props: { type: 'jobs' },
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'failed',
|
||
|
|
name: 'monitoring-failed',
|
||
|
|
component: monitoringTagJobs,
|
||
|
|
props: { type: 'failed' },
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/metrics',
|
||
|
|
redirect: '/metrics/jobs',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: 'jobs',
|
||
|
|
component: metrics,
|
||
|
|
children: [{ path: '', name: 'metrics-jobs', component: metricsJobs }],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: 'queues',
|
||
|
|
component: metrics,
|
||
|
|
children: [{ path: '', name: 'metrics-queues', component: metricsQueues }],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: ':type/:slug',
|
||
|
|
name: 'metrics-preview',
|
||
|
|
component: metricsPreview,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/jobs/:type',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: '',
|
||
|
|
name: 'jobs',
|
||
|
|
component: recentJobs,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: ':jobId',
|
||
|
|
name: 'job-preview',
|
||
|
|
component: recentJobsJob,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/failed',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: '',
|
||
|
|
name: 'failed-jobs',
|
||
|
|
component: failedJobs,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: ':jobId',
|
||
|
|
name: 'failed-jobs-preview',
|
||
|
|
component: failedJobsJob,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
|
||
|
|
{
|
||
|
|
path: '/batches',
|
||
|
|
children: [
|
||
|
|
{
|
||
|
|
path: '',
|
||
|
|
name: 'batches',
|
||
|
|
component: batches,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: ':batchId',
|
||
|
|
name: 'batches-preview',
|
||
|
|
component: batchesPreview,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
];
|