|
| 1 | +import { ObservabilityService } from '@/types/observability.type'; |
| 2 | + |
| 3 | +const servicesDataset: ObservabilityService[] = [ |
| 4 | + { id: 'ldp-zf-15501', currentState: { displayName: null } }, |
| 5 | + { id: 'ldp-et-42418', currentState: { displayName: null } }, |
| 6 | + { id: 'ldp-ms-91722', currentState: { displayName: null } }, |
| 7 | + { id: 'ldp-gr-55078', currentState: { displayName: null } }, |
| 8 | + { id: 'ldp-io-61871', currentState: { displayName: null } }, |
| 9 | + { id: 'ldp-dq-82324', currentState: { displayName: null } }, |
| 10 | + { id: 'ldp-jr-81953', currentState: { displayName: null } }, |
| 11 | + { id: 'ldp-jj-29716', currentState: { displayName: null } }, |
| 12 | + { id: 'ldp-tt-48060', currentState: { displayName: null } }, |
| 13 | + { id: 'ldp-np-43247', currentState: { displayName: null } }, |
| 14 | + { id: 'ldp-ro-08038', currentState: { displayName: null } }, |
| 15 | + { id: 'ldp-ju-54500', currentState: { displayName: null } }, |
| 16 | + { id: 'ldp-nv-47025', currentState: { displayName: null } }, |
| 17 | + { id: 'ldp-pe-11160', currentState: { displayName: null } }, |
| 18 | + { id: 'ldp-mg-73834', currentState: { displayName: null } }, |
| 19 | + { id: 'ldp-yy-24693', currentState: { displayName: null } }, |
| 20 | + { id: 'ldp-iz-25481', currentState: { displayName: '[DO NOT TOUCH] TTA TRS Quality' } }, |
| 21 | + { id: 'ldp-xa-17103', currentState: { displayName: null } }, |
| 22 | + { id: 'ldp-np-20814', currentState: { displayName: 'Christian' } }, |
| 23 | + { id: 'ldp-ni-50732', currentState: { displayName: null } }, |
| 24 | + { id: 'ldp-an-17655', currentState: { displayName: null } }, |
| 25 | + { id: 'ldp-hy-49770', currentState: { displayName: 'ldp-hy-49770' } }, |
| 26 | + { id: 'ldp-la-85440', currentState: { displayName: 'do not touch' } }, |
| 27 | + { id: 'ldp-xq-98460', currentState: { displayName: 'Name' } }, |
| 28 | + { id: 'ldp-fr-36016', currentState: { displayName: null } }, |
| 29 | + { id: 'ldp-ga-90239', currentState: { displayName: 'Ele QA' } }, |
| 30 | + { id: 'ldp-ib-84974', currentState: { displayName: null } }, |
| 31 | + { id: 'ldp-rg-93836', currentState: { displayName: '[DO NOT TOUCH] Monito Pingdom' } }, |
| 32 | +]; |
| 33 | + |
| 34 | +export const getObservabilityServices = async ( |
| 35 | + signal: AbortSignal, |
| 36 | +): Promise<ObservabilityService[]> => { |
| 37 | + console.info(`[MOCK-ADAPTER][getObservabilityServices] > `, signal); |
| 38 | + return Promise.resolve(servicesDataset); |
| 39 | +}; |
0 commit comments