log-viewer/frontend/src/components/LogViewer.vue

122 lines
2.9 KiB
Vue
Raw Normal View History

2022-10-05 14:44:28 +00:00
<template>
<div style="height: 100%; width: 100%">
<ag-grid-vue
style="width: 100%; height: 100%;"
2022-10-11 16:15:29 +00:00
class="ag-theme-material"
2022-10-05 14:44:28 +00:00
@grid-ready="onGridReady"
:defaultColDef="defaultColDef"
:columnDefs="columnDefs"
2022-10-10 23:50:03 +00:00
:pagination="true"
:paginationAutoPageSize=true
2022-10-05 14:44:28 +00:00
:row-data="null"
:supress-horisontal-scroll="true"
:enable-scrolling="true"
></ag-grid-vue>
2022-10-05 14:44:28 +00:00
</div>
</template>
<script>
import { AgGridVue } from "ag-grid-vue3";
import "ag-grid-community/styles//ag-grid.css";
2022-10-11 16:15:29 +00:00
import "ag-grid-community/styles//ag-theme-material.css";
2022-10-05 14:44:28 +00:00
import ScreenshotCell from "./ScreenshotCell.js";
export default {
components: {
AgGridVue,
ScreenshotCell: ScreenshotCell
2022-10-05 14:44:28 +00:00
},
data() {
return {
gridApi: null,
gridColumnApi: null,
rowData: [],
defaultColDef: {
width: 50,
initialPinned: true,
2022-10-11 16:16:03 +00:00
resizable: true
2022-10-05 14:44:28 +00:00
},
currentRowCount: 0,
viewRowCount: 20,
comboBoxOptions: [],
2022-10-05 14:44:28 +00:00
columnDefs: [
{
field: '_id',
},
{
field: 'kubernetes.namespace',
headerName: 'namespace',
2022-10-11 16:16:03 +00:00
tooltipValueGetter: (params) => params.value,
filter: true,
2022-10-05 14:44:28 +00:00
},
{
field: 'kubernetes.pod.name',
headerName: 'pod',
2022-10-11 16:16:03 +00:00
tooltipValueGetter: (params) => params.value,
filter: true,
2022-10-05 14:44:28 +00:00
},
{
field: 'kubernetes.container.name',
headerName: 'container',
2022-10-11 16:16:03 +00:00
tooltipValueGetter: (params) => params.value,
filter: true,
2022-10-05 14:44:28 +00:00
},
{
field: 'message',
2022-10-11 16:16:03 +00:00
tooltipValueGetter: (params) => params.value,
2022-10-05 14:44:28 +00:00
width: 500,
},
{
field: 'stream',
},
{
field: '@timestamp',
width: 70,
sortable: true
2022-10-05 14:44:28 +00:00
}
],
}
},
created() {
this.setupStream()
},
methods: {
setupStream() {
let es = new EventSource('/events');
es.onmessage = (e) => this.handleReceiveMessage(e)
},
onGridReady(params) {
this.gridApi = params.api;
this.gridColumnApi = params.columnApi;
},
handleReceiveMessage (event) {
const eventData = this.parseEventData(event.data);
this.gridApi.updateRowData({add: [eventData]});
this.gridApi.sizeColumnsToFit()
},
refreshRowData () {
const itemsToUpdate = [];
this.rowData.slice(0 - this.viewRowCount).forEach((row, index) => {
row.index = index
itemsToUpdate.push(row)
});
this.gridApi.applyTransactionAsync({ update: itemsToUpdate });
2022-10-05 14:44:28 +00:00
this.gridApi.sizeColumnsToFit()
this.getComboBoxOptions()
2022-10-05 14:44:28 +00:00
},
parseEventData (eventData) {
try {
let json = JSON.parse(eventData)
if (!json.message) {
json.message = JSON.stringify(json.json)
}
return json
} catch (e) {
console.error(e, eventData)
}
},
}
}
</script>