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"
|
2022-10-10 23:27:31 +00:00
|
|
|
></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,
|
2022-10-11 00:21:32 +00:00
|
|
|
ScreenshotCell: ScreenshotCell
|
2022-10-05 14:44:28 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
gridApi: null,
|
|
|
|
gridColumnApi: null,
|
|
|
|
rowData: [],
|
|
|
|
defaultColDef: {
|
|
|
|
width: 50,
|
|
|
|
initialPinned: true,
|
|
|
|
resizable: true,
|
2022-10-10 23:50:03 +00:00
|
|
|
editable: true
|
2022-10-05 14:44:28 +00:00
|
|
|
},
|
2022-10-10 23:27:31 +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 00:20:12 +00:00
|
|
|
filter: true,
|
2022-10-05 14:44:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
field: 'kubernetes.pod.name',
|
|
|
|
headerName: 'pod',
|
2022-10-11 00:20:12 +00:00
|
|
|
filter: true,
|
2022-10-05 14:44:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
field: 'kubernetes.container.name',
|
|
|
|
headerName: 'container',
|
2022-10-11 00:20:12 +00:00
|
|
|
filter: true,
|
2022-10-05 14:44:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
field: 'message',
|
|
|
|
tooltipValueGetter: (params) => 'Address: ' + params.value,
|
|
|
|
width: 500,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
field: 'stream',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
field: '@timestamp',
|
2022-10-11 00:20:12 +00:00
|
|
|
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);
|
2022-10-11 00:20:12 +00:00
|
|
|
this.gridApi.updateRowData({add: [eventData]});
|
2022-10-10 23:27:31 +00:00
|
|
|
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()
|
2022-10-10 23:27:31 +00:00
|
|
|
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>
|