Vue.component('device-monitoring-congestion', { //language=Vue template: `
Letzte Abfragezeit: {{ window.moment.utc(window['TT_CONFIG']['CONGESTION_DATA']['fileCreateTime']).add(1, 'hours').format('DD.MM.YYYY HH:mm:ss') }}
`, data() { return { window: window, DeviceTableConfig: { key: 'DeviceMonitoringCongestion', tableHeader: 'Device Monitoring - Congestion', defaultPageSize: 25, headers: [ {text: 'Hostname', key: 'hostname', sortable: true, class: 'text-nowrap'}, {text: 'IP-Adresse', key: 'ip', filter: 'search', class: 'text-center'}, {text: 'Name', key: 'name', filter: 'search', class: 'text-center'}, {text: 'Höchster Wert', key: 'highestValue', filter: 'search', class: 'text-center'}, {text: 'Zeit', key: 'highestValueTime', filter: 'search', class: 'text-center'}, {text: 'Aktionen', key: 'actions', class: 'text-center', sortable: false, filter: false, priority: 9}, ], }, } } })