diff --git a/.gitignore b/.gitignore index dd7042ee0..fc6a4bec0 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,17 @@ /plugin-backend /cover.out tmp.Dockerfile -tmp/ \ No newline at end of file +tmp/ + +# Benchmark results (generated files, but keep baseline) +benchmark-*.txt +/pkg/server/benchmark-current.txt +/pkg/server/benchmark-results.txt +!/pkg/server/benchmark-baseline.txt +**/gui_test_screenshots/ +/web/cypress/results/ + +# htpasswd test user files +htpasswd-test-users +test-users-credentials.txt +cypress.env.json diff --git a/web/cypress.config.ts b/web/cypress.config.ts index a3d0c1598..7dd93f58a 100644 --- a/web/cypress.config.ts +++ b/web/cypress.config.ts @@ -1,24 +1,133 @@ import { defineConfig } from "cypress"; +// eslint-disable-next-line @typescript-eslint/no-var-requires +const cypressGrepPlugin = require('@cypress/grep/src/plugin'); +// eslint-disable-next-line @typescript-eslint/no-var-requires +const fs = require('fs'); +// eslint-disable-next-line @typescript-eslint/no-var-requires +const path = require('path'); export default defineConfig({ - viewportWidth: 1600, - viewportHeight: 800, - defaultCommandTimeout: 10000, + viewportWidth: 1920, + viewportHeight: 1080, + defaultCommandTimeout: 30000, projectId: "tjknpb", + screenshotsFolder: './gui_test_screenshots/cypress/screenshots', + screenshotOnRunFailure: true, + trashAssetsBeforeRuns: true, + videosFolder: './gui_test_screenshots/cypress/videos', + video: true, + videoCompression: false, + reporter: './node_modules/cypress-multi-reporters', + reporterOptions: { + configFile: 'reporter-config.json', + }, + fixturesFolder: 'cypress/fixtures', + env: { + grepFilterSpecs: true, + ...(process.env.IS_OPENSHIFT === 'true' && { + 'LOGIN_USERNAME': process.env.CYPRESS_LOGIN_USERS?.split(',')[0].split(':')[0], + 'LOGIN_PASSWORD': process.env.CYPRESS_LOGIN_USERS?.split(',')[0].split(':')[1], + 'LOGIN_IDP': process.env.CYPRESS_LOGIN_IDP, + 'KUBECONFIG_PATH': process.env.CYPRESS_KUBECONFIG_PATH, + 'NOO_CATALOG_SOURCE': process.env.NOO_CATALOG_SOURCE, + 'NOO_CS_IMAGE': process.env.MULTISTAGE_PARAM_OVERRIDE_CYPRESS_NOO_CS_IMAGE || process.env.NOO_CS_IMAGE, + 'SKIP_NOO_INSTALL': process.env.SKIP_NOO_INSTALL, + 'LOGIN_USERS': process.env.LOGIN_USERS || process.env.CYPRESS_LOGIN_USERS, + }), + }, e2e: { + baseUrl: process.env.CYPRESS_BASE_URL || 'http://localhost:9001', + testIsolation: false, + experimentalMemoryManagement: true, // We've imported your old cypress plugins here. // You may want to clean this up later by importing these. setupNodeEvents(on, config) { - return require("./cypress/plugins/index.js")(on, config); - }, - specPattern: "cypress/e2e/**/*.{js,jsx,ts,tsx}", - }, + require("./cypress/plugins/index.js")(on, config); + config = cypressGrepPlugin(config); + on('before:browser:launch', (browser = { + name: "", + family: "chromium", + channel: "", + displayName: "", + version: "", + majorVersion: "", + path: "", + isHeaded: false, + isHeadless: false + }, launchOptions) => { + if (browser.name === 'electron') { + // Fix for Electron rendering issues on macOS + launchOptions.args.push('--disable-gpu') + launchOptions.args.push('--no-sandbox') + launchOptions.args.push('--disable-dev-shm-usage') + } + + if (browser.family === 'chromium' && browser.name !== 'electron') { + // auto open devtools + launchOptions.args.push('--enable-precise-memory-info') + } + + return launchOptions - component: { - devServer: { - framework: "react", - bundler: "webpack", + }); + // `on` is used to hook into various events Cypress emits + on('task', { + log(message) { + console.log(message); + return null; + }, + logError(message) { + console.error(message); + return null; + }, + logTable(data) { + console.table(data); + return null; + }, + readFileIfExists(filename) { + if (fs.existsSync(filename)) { + return fs.readFileSync(filename, 'utf8'); + } + return null; + }, + }); + on('after:screenshot', (details) => { + // Prepend "1_", "2_", etc. to screenshot filenames because they are sorted alphanumerically in CI's artifacts dir + const pathObj = path.parse(details.path); + fs.readdir(pathObj.dir, (error, files) => { + const newPath = `${pathObj.dir}${path.sep}${files.length}_${pathObj.base}`; + return new Promise((resolve, reject) => { + // eslint-disable-next-line consistent-return + fs.rename(details.path, newPath, (err) => { + if (err) return reject(err); + // because we renamed and moved the image, resolve with the new path + // so it is accurate in the test results + resolve({ path: newPath }); + }); + }); + }); + }); + on( + 'after:spec', + (spec: Cypress.Spec, results: CypressCommandLine.RunResult) => { + if (results && results.video) { + // Do we have failures for any retry attempts? + const failures = results.tests.some((test) => + test.attempts.some((attempt) => attempt.state === 'failed') + ) + if (!failures && fs.existsSync(results.video)) { + // delete the video if the spec passed and no tests retried + fs.unlinkSync(results.video) + } + } + } + ); + return config; }, + specPattern: "cypress/{e2e,integration-tests}/**/*{.cy,.spec}.{js,jsx,ts,tsx}", }, + numTestsKeptInMemory: 5, + // required for guidedTour to not pop when running with cypress. + userAgent: 'ConsoleIntegrationTestEnvironment' }); diff --git a/web/cypress/fixtures/dns_errors.yaml b/web/cypress/fixtures/dns_errors.yaml new file mode 100644 index 000000000..e27a13611 --- /dev/null +++ b/web/cypress/fixtures/dns_errors.yaml @@ -0,0 +1,28 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: dns-traffic + +--- +apiVersion: v1 +kind: Pod +metadata: + name: dnsutils + namespace: dns-traffic +spec: + securityContext: + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + dnsConfig: + options: + - name: "use-vc" + containers: + - name: utils + image: docker.io/massenz/dnsutils:2.4.0 + # do dns requests to non-existent service to induce dns errors + command: ["/bin/sh", "-ec", "while :; do dig nginx-service.test.svc.cluster.local; sleep 1 ; done"] + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] diff --git a/web/cypress/fixtures/flowcollector/fc.yaml b/web/cypress/fixtures/flowcollector/fc.yaml new file mode 100644 index 000000000..fe0075a72 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc.yaml @@ -0,0 +1,20 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + consolePlugin: + portNaming: + enable: true + portNames: + '3100': loki diff --git a/web/cypress/fixtures/flowcollector/fc_DNSTracking.yaml b/web/cypress/fixtures/flowcollector/fc_DNSTracking.yaml new file mode 100644 index 000000000..788800ce7 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_DNSTracking.yaml @@ -0,0 +1,23 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + features: + - DNSTracking + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + metrics: + includeList: + - namespace_dns_latency_seconds + - node_dns_latency_seconds + - workload_dns_latency_seconds diff --git a/web/cypress/fixtures/flowcollector/fc_bytesMetrics.yaml b/web/cypress/fixtures/flowcollector/fc_bytesMetrics.yaml new file mode 100644 index 000000000..a010f1041 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_bytesMetrics.yaml @@ -0,0 +1,27 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + metrics: + includeList: + - node_flows_total + - node_ingress_bytes_total + - node_egress_bytes_total + - namespace_flows_total + - namespace_ingress_bytes_total + - namespace_egress_bytes_total + - workload_flows_total + - workload_ingress_bytes_total + - workload_egress_bytes_total diff --git a/web/cypress/fixtures/flowcollector/fc_conversations.yaml b/web/cypress/fixtures/flowcollector/fc_conversations.yaml new file mode 100644 index 000000000..deecbf092 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_conversations.yaml @@ -0,0 +1,18 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + deploymentModel: Direct + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + logTypes: All diff --git a/web/cypress/fixtures/flowcollector/fc_flowRTT.yaml b/web/cypress/fixtures/flowcollector/fc_flowRTT.yaml new file mode 100644 index 000000000..41790e544 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_flowRTT.yaml @@ -0,0 +1,23 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + features: + - FlowRTT + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + metrics: + includeList: + - namespace_rtt_seconds + - node_rtt_seconds + - workload_rtt_seconds diff --git a/web/cypress/fixtures/flowcollector/fc_lokiDisabled.yaml b/web/cypress/fixtures/flowcollector/fc_lokiDisabled.yaml new file mode 100644 index 000000000..a407ad0ba --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_lokiDisabled.yaml @@ -0,0 +1,11 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + loki: + enable: false diff --git a/web/cypress/fixtures/flowcollector/fc_networkalert.yaml b/web/cypress/fixtures/flowcollector/fc_networkalert.yaml new file mode 100644 index 000000000..b53424b12 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_networkalert.yaml @@ -0,0 +1,62 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + features: + - DNSTracking + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + consolePlugin: + portNaming: + enable: true + portNames: + '3100': loki + processor: + advanced: + env: + EXPERIMENTAL_ALERTS_HEALTH: "true" + metrics: + includeList: + - workload_dns_latency_seconds + - node_dns_latency_seconds + - node_egress_bytes_total + - namespace_egress_bytes_total + - workload_egress_bytes_total + - node_ingress_bytes_total + - namespace_ingress_bytes_total + - workload_ingress_bytes_total + healthRules: + - mode: Alert + template: DNSNxDomain + variants: + - groupBy: "" # global + mode: Recording + thresholds: + critical: "15" + info: "2" + warning: "5" + - groupBy: Namespace + thresholds: + critical: "15" + info: "2" + warning: "5" + - groupBy: Node + mode: Recording + thresholds: + critical: "15" + info: "2" + warning: "5" + - groupBy: Workload + thresholds: + critical: "15" + info: "2" + warning: "5" diff --git a/web/cypress/fixtures/flowcollector/fc_packetDrop.yaml b/web/cypress/fixtures/flowcollector/fc_packetDrop.yaml new file mode 100644 index 000000000..6076f3f97 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_packetDrop.yaml @@ -0,0 +1,29 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + privileged: true + features: + - PacketDrop + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + metrics: + includeList: + - node_ingress_packets_total + - node_egress_packets_total + - namespace_ingress_packets_total + - namespace_egress_packets_total + - workload_ingress_packets_total + - namespace_drop_packets_total + - node_drop_packets_total + - workload_drop_packets_total diff --git a/web/cypress/fixtures/flowcollector/fc_packetsMetrics.yaml b/web/cypress/fixtures/flowcollector/fc_packetsMetrics.yaml new file mode 100644 index 000000000..af491597d --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_packetsMetrics.yaml @@ -0,0 +1,27 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + metrics: + includeList: + - node_flows_total + - node_ingress_packets_total + - node_egress_packets_total + - namespace_flows_total + - namespace_ingress_packets_total + - namespace_egress_packets_total + - workload_flows_total + - workload_ingress_packets_total + - workload_egress_packets_total diff --git a/web/cypress/fixtures/flowcollector/fc_subnetLabel.yaml b/web/cypress/fixtures/flowcollector/fc_subnetLabel.yaml new file mode 100644 index 000000000..c6a069fbd --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_subnetLabel.yaml @@ -0,0 +1,22 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + subnetLabels: + customLabels: + - name: testcustomlabel + cidrs: + - 52.200.142.0/24 + openShiftAutoDetect: true diff --git a/web/cypress/fixtures/flowcollector/fc_zoneMulticluster.yaml b/web/cypress/fixtures/flowcollector/fc_zoneMulticluster.yaml new file mode 100644 index 000000000..5af07ca72 --- /dev/null +++ b/web/cypress/fixtures/flowcollector/fc_zoneMulticluster.yaml @@ -0,0 +1,18 @@ +kind: FlowCollector +apiVersion: flows.netobserv.io/v1beta2 +metadata: + name: cluster +spec: + agent: + ebpf: + sampling: 1 + type: eBPF + loki: + enable: true + mode: Monolithic + monolithic: + installDemoLoki: true + namespace: netobserv + processor: + multiClusterDeployment: true + addZone: true diff --git a/web/cypress/fixtures/flowmetrics/NS.json b/web/cypress/fixtures/flowmetrics/NS.json new file mode 100644 index 000000000..a9369f6ec --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/NS.json @@ -0,0 +1,5326 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "80.8" + ], + [ + 1717522260, + "117.4" + ], + [ + 1717522275, + "57.4" + ], + [ + 1717522290, + "114.8" + ], + [ + 1717522305, + "112.6" + ], + [ + 1717522320, + "14.833333333333334" + ], + [ + 1717522335, + "22.6" + ], + [ + 1717522380, + "36.46666666666667" + ], + [ + 1717522395, + "81.5" + ], + [ + 1717522410, + "50.733333333333334" + ], + [ + 1717522485, + "2.2" + ], + [ + 1717522515, + "67.8" + ], + [ + 1717522530, + "120.8" + ], + [ + 1717522545, + "124.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "174.26666666666668" + ], + [ + 1717522260, + "181.73333333333332" + ], + [ + 1717522275, + "187.43333333333334" + ], + [ + 1717522290, + "185.23333333333332" + ], + [ + 1717522305, + "184.36666666666667" + ], + [ + 1717522320, + "179.53333333333333" + ], + [ + 1717522335, + "170.73333333333332" + ], + [ + 1717522350, + "177.33333333333334" + ], + [ + 1717522365, + "183.93333333333334" + ], + [ + 1717522380, + "177.33333333333334" + ], + [ + 1717522395, + "172.93333333333334" + ], + [ + 1717522410, + "179.53333333333333" + ], + [ + 1717522425, + "193.4" + ], + [ + 1717522440, + "192.96666666666667" + ], + [ + 1717522455, + "176.46666666666667" + ], + [ + 1717522470, + "178.66666666666666" + ], + [ + 1717522485, + "185.26666666666668" + ], + [ + 1717522500, + "178.66666666666666" + ], + [ + 1717522515, + "174.26666666666668" + ], + [ + 1717522530, + "173.83333333333334" + ], + [ + 1717522545, + "152.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "109" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "452.26666666666665" + ], + [ + 1717522260, + "452.26666666666665" + ], + [ + 1717522275, + "454.46666666666664" + ], + [ + 1717522290, + "454.46666666666664" + ], + [ + 1717522305, + "454.46666666666664" + ], + [ + 1717522320, + "454.46666666666664" + ], + [ + 1717522335, + "454.46666666666664" + ], + [ + 1717522350, + "1094.1" + ], + [ + 1717522365, + "1094.1" + ], + [ + 1717522380, + "458.8666666666667" + ], + [ + 1717522395, + "1017.2333333333333" + ], + [ + 1717522410, + "1015.0333333333333" + ], + [ + 1717522425, + "2291.0333333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ], + [ + 1717522455, + "2287.733333333333" + ], + [ + 1717522470, + "2289.9333333333334" + ], + [ + 1717522485, + "461.06666666666666" + ], + [ + 1717522500, + "4138.6" + ], + [ + 1717522515, + "4134.2" + ], + [ + 1717522530, + "2297.266666666667" + ], + [ + 1717522545, + "2310.3333333333335" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "467.6666666666667" + ], + [ + 1717522260, + "467.6666666666667" + ], + [ + 1717522275, + "467.6666666666667" + ], + [ + 1717522290, + "467.6666666666667" + ], + [ + 1717522305, + "467.6666666666667" + ], + [ + 1717522320, + "467.6666666666667" + ], + [ + 1717522335, + "467.6666666666667" + ], + [ + 1717522350, + "1107.3" + ], + [ + 1717522365, + "1109.5" + ], + [ + 1717522380, + "474.26666666666665" + ], + [ + 1717522395, + "1030.4333333333334" + ], + [ + 1717522410, + "1028.2333333333333" + ], + [ + 1717522425, + "2297.633333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ], + [ + 1717522455, + "2287.733333333333" + ], + [ + 1717522470, + "2296.5333333333333" + ], + [ + 1717522485, + "474.26666666666665" + ], + [ + 1717522500, + "4147.4" + ], + [ + 1717522515, + "4136.4" + ], + [ + 1717522530, + "2297.266666666667" + ], + [ + 1717522545, + "2314.733333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "407.6" + ], + [ + 1717522260, + "398.8" + ], + [ + 1717522275, + "416.4" + ], + [ + 1717522290, + "412" + ], + [ + 1717522305, + "396.6" + ], + [ + 1717522320, + "405.4" + ], + [ + 1717522335, + "414.2" + ], + [ + 1717522350, + "418.6" + ], + [ + 1717522365, + "405.4" + ], + [ + 1717522380, + "418.6" + ], + [ + 1717522395, + "440.6" + ], + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ], + [ + 1717522455, + "416.4" + ], + [ + 1717522470, + "392.2" + ], + [ + 1717522485, + "407.6" + ], + [ + 1717522500, + "420.8" + ], + [ + 1717522515, + "423" + ], + [ + 1717522530, + "438.4" + ], + [ + 1717522545, + "364.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "407.6" + ], + [ + 1717522260, + "398.8" + ], + [ + 1717522275, + "416.4" + ], + [ + 1717522290, + "412" + ], + [ + 1717522305, + "396.6" + ], + [ + 1717522320, + "405.4" + ], + [ + 1717522335, + "414.2" + ], + [ + 1717522350, + "418.6" + ], + [ + 1717522365, + "405.4" + ], + [ + 1717522380, + "418.6" + ], + [ + 1717522395, + "440.6" + ], + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ], + [ + 1717522455, + "416.4" + ], + [ + 1717522470, + "392.2" + ], + [ + 1717522485, + "407.6" + ], + [ + 1717522500, + "420.8" + ], + [ + 1717522515, + "423" + ], + [ + 1717522530, + "438.4" + ], + [ + 1717522545, + "364.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "159.3" + ], + [ + 1717522260, + "161.5" + ], + [ + 1717522275, + "164.13333333333333" + ], + [ + 1717522290, + "161.93333333333334" + ], + [ + 1717522305, + "161.5" + ], + [ + 1717522320, + "165.9" + ], + [ + 1717522335, + "163.7" + ], + [ + 1717522350, + "158.86666666666667" + ], + [ + 1717522365, + "161.06666666666666" + ], + [ + 1717522380, + "161.5" + ], + [ + 1717522395, + "161.5" + ], + [ + 1717522410, + "167.66666666666666" + ], + [ + 1717522425, + "165.9" + ], + [ + 1717522440, + "161.93333333333334" + ], + [ + 1717522455, + "170.86666666666667" + ], + [ + 1717522470, + "172.63333333333333" + ], + [ + 1717522485, + "163.26666666666668" + ], + [ + 1717522500, + "158.86666666666667" + ], + [ + 1717522515, + "158.86666666666667" + ], + [ + 1717522530, + "161.06666666666666" + ], + [ + 1717522545, + "161.06666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "621.1" + ], + [ + 1717522260, + "606.0666666666667" + ], + [ + 1717522275, + "593.3" + ], + [ + 1717522290, + "595.2666666666667" + ], + [ + 1717522305, + "597.7" + ], + [ + 1717522320, + "600.8" + ], + [ + 1717522335, + "597.3333333333334" + ], + [ + 1717522350, + "592.6666666666666" + ], + [ + 1717522365, + "597.6333333333333" + ], + [ + 1717522380, + "595.7333333333333" + ], + [ + 1717522395, + "590.8" + ], + [ + 1717522410, + "593.3333333333334" + ], + [ + 1717522425, + "616" + ], + [ + 1717522440, + "640" + ], + [ + 1717522455, + "648.7666666666667" + ], + [ + 1717522470, + "654.0666666666667" + ], + [ + 1717522485, + "649.6333333333333" + ], + [ + 1717522500, + "649.3666666666667" + ], + [ + 1717522515, + "649.9333333333333" + ], + [ + 1717522530, + "647.0333333333333" + ], + [ + 1717522545, + "646.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "502.8666666666667" + ], + [ + 1717522260, + "490.8666666666667" + ], + [ + 1717522275, + "479.76666666666665" + ], + [ + 1717522290, + "480.2" + ], + [ + 1717522305, + "479.93333333333334" + ], + [ + 1717522320, + "490.8" + ], + [ + 1717522335, + "490.4" + ], + [ + 1717522350, + "479.43333333333334" + ], + [ + 1717522365, + "479.46666666666664" + ], + [ + 1717522380, + "490.8" + ], + [ + 1717522395, + "502.2" + ], + [ + 1717522410, + "502.2" + ], + [ + 1717522425, + "502.6" + ], + [ + 1717522440, + "492.26666666666665" + ], + [ + 1717522455, + "493.4" + ], + [ + 1717522470, + "504.3666666666667" + ], + [ + 1717522485, + "503.76666666666665" + ], + [ + 1717522500, + "493" + ], + [ + 1717522515, + "480.8333333333333" + ], + [ + 1717522530, + "479.1333333333333" + ], + [ + 1717522545, + "479.26666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "473.3666666666667" + ], + [ + 1717522260, + "472.8" + ], + [ + 1717522275, + "476.46666666666664" + ], + [ + 1717522290, + "479.06666666666666" + ], + [ + 1717522305, + "475.1" + ], + [ + 1717522320, + "474.46666666666664" + ], + [ + 1717522335, + "474.1333333333333" + ], + [ + 1717522350, + "474.4" + ], + [ + 1717522365, + "476.53333333333336" + ], + [ + 1717522380, + "476.76666666666665" + ], + [ + 1717522395, + "473" + ], + [ + 1717522410, + "469.3666666666667" + ], + [ + 1717522425, + "470.06666666666666" + ], + [ + 1717522440, + "476.9" + ], + [ + 1717522455, + "483.1666666666667" + ], + [ + 1717522470, + "486.3333333333333" + ], + [ + 1717522485, + "487.4" + ], + [ + 1717522500, + "486.46666666666664" + ], + [ + 1717522515, + "482" + ], + [ + 1717522530, + "476.3333333333333" + ], + [ + 1717522545, + "476.3" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "428.3666666666667" + ], + [ + 1717522260, + "430.2" + ], + [ + 1717522275, + "431.1" + ], + [ + 1717522290, + "426.53333333333336" + ], + [ + 1717522305, + "423.76666666666665" + ], + [ + 1717522320, + "425" + ], + [ + 1717522335, + "425.6666666666667" + ], + [ + 1717522350, + "421.8333333333333" + ], + [ + 1717522365, + "420.53333333333336" + ], + [ + 1717522380, + "423.1" + ], + [ + 1717522395, + "415.96666666666664" + ], + [ + 1717522410, + "409.1666666666667" + ], + [ + 1717522425, + "410.8333333333333" + ], + [ + 1717522440, + "409.46666666666664" + ], + [ + 1717522455, + "409.1666666666667" + ], + [ + 1717522470, + "417.23333333333335" + ], + [ + 1717522485, + "421.1333333333333" + ], + [ + 1717522500, + "418.3666666666667" + ], + [ + 1717522515, + "418.03333333333336" + ], + [ + 1717522530, + "420.5" + ], + [ + 1717522545, + "421.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "147.66666666666666" + ], + [ + 1717522260, + "147.66666666666666" + ], + [ + 1717522275, + "147.73333333333332" + ], + [ + 1717522290, + "147.66666666666666" + ], + [ + 1717522305, + "147.66666666666666" + ], + [ + 1717522320, + "147.76666666666668" + ], + [ + 1717522335, + "147.73333333333332" + ], + [ + 1717522350, + "147.83333333333334" + ], + [ + 1717522365, + "148" + ], + [ + 1717522380, + "147.96666666666667" + ], + [ + 1717522395, + "147.96666666666667" + ], + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.96666666666667" + ], + [ + 1717522440, + "147.66666666666666" + ], + [ + 1717522455, + "147.83333333333334" + ], + [ + 1717522470, + "147.96666666666667" + ], + [ + 1717522485, + "148.1" + ], + [ + 1717522500, + "147.93333333333334" + ], + [ + 1717522515, + "147.6" + ], + [ + 1717522530, + "147.7" + ], + [ + 1717522545, + "148.03333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "307.76666666666665" + ], + [ + 1717522260, + "357.8" + ], + [ + 1717522275, + "355.6333333333333" + ], + [ + 1717522290, + "303.46666666666664" + ], + [ + 1717522305, + "311.56666666666666" + ], + [ + 1717522320, + "314.3333333333333" + ], + [ + 1717522335, + "304.53333333333336" + ], + [ + 1717522350, + "302.23333333333335" + ], + [ + 1717522365, + "306.93333333333334" + ], + [ + 1717522380, + "311.06666666666666" + ], + [ + 1717522395, + "307.6333333333333" + ], + [ + 1717522410, + "306.8333333333333" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "309.5" + ], + [ + 1717522455, + "309.06666666666666" + ], + [ + 1717522470, + "311.1" + ], + [ + 1717522485, + "313.56666666666666" + ], + [ + 1717522500, + "311.3333333333333" + ], + [ + 1717522515, + "309.06666666666666" + ], + [ + 1717522530, + "309.8666666666667" + ], + [ + 1717522545, + "312.6666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "518.6666666666666" + ], + [ + 1717522260, + "517.0333333333333" + ], + [ + 1717522275, + "516.1333333333333" + ], + [ + 1717522290, + "515.5333333333333" + ], + [ + 1717522305, + "516.8" + ], + [ + 1717522320, + "516.5333333333333" + ], + [ + 1717522335, + "514" + ], + [ + 1717522350, + "510.93333333333334" + ], + [ + 1717522365, + "515.7333333333333" + ], + [ + 1717522380, + "519.0666666666667" + ], + [ + 1717522395, + "506.7" + ], + [ + 1717522410, + "493.7" + ], + [ + 1717522425, + "496.53333333333336" + ], + [ + 1717522440, + "501.7" + ], + [ + 1717522455, + "500.26666666666665" + ], + [ + 1717522470, + "501.8333333333333" + ], + [ + 1717522485, + "502" + ], + [ + 1717522500, + "504.46666666666664" + ], + [ + 1717522515, + "503.4" + ], + [ + 1717522530, + "500.1666666666667" + ], + [ + 1717522545, + "505" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "266.8" + ], + [ + 1717522260, + "264.6" + ], + [ + 1717522275, + "273.4" + ], + [ + 1717522290, + "273.4" + ], + [ + 1717522305, + "258" + ], + [ + 1717522320, + "251.4" + ], + [ + 1717522335, + "260.2" + ], + [ + 1717522350, + "266.8" + ], + [ + 1717522365, + "264.6" + ], + [ + 1717522380, + "271.2" + ], + [ + 1717522395, + "275.6" + ], + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ], + [ + 1717522455, + "249.2" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "275.6" + ], + [ + 1717522500, + "262.4" + ], + [ + 1717522515, + "249.2" + ], + [ + 1717522530, + "247" + ], + [ + 1717522545, + "247" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "266.8" + ], + [ + 1717522260, + "264.6" + ], + [ + 1717522275, + "273.4" + ], + [ + 1717522290, + "273.4" + ], + [ + 1717522305, + "258" + ], + [ + 1717522320, + "251.4" + ], + [ + 1717522335, + "260.2" + ], + [ + 1717522350, + "266.8" + ], + [ + 1717522365, + "264.6" + ], + [ + 1717522380, + "271.2" + ], + [ + 1717522395, + "275.6" + ], + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ], + [ + 1717522455, + "249.2" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "275.6" + ], + [ + 1717522500, + "262.4" + ], + [ + 1717522515, + "249.2" + ], + [ + 1717522530, + "247" + ], + [ + 1717522545, + "247" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "152.6" + ], + [ + 1717522290, + "152.6" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "109" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "121.26666666666667" + ], + [ + 1717522260, + "168.33333333333334" + ], + [ + 1717522275, + "272.6" + ], + [ + 1717522290, + "217.2" + ], + [ + 1717522305, + "100.2" + ], + [ + 1717522320, + "95.8" + ], + [ + 1717522335, + "95.8" + ], + [ + 1717522350, + "100.2" + ], + [ + 1717522365, + "102.4" + ], + [ + 1717522380, + "100.2" + ], + [ + 1717522395, + "100.2" + ], + [ + 1717522410, + "102.4" + ], + [ + 1717522425, + "120.66666666666667" + ], + [ + 1717522440, + "120.66666666666667" + ], + [ + 1717522455, + "106.8" + ], + [ + 1717522470, + "106.8" + ], + [ + 1717522485, + "106.8" + ], + [ + 1717522500, + "116.16666666666667" + ], + [ + 1717522515, + "120.56666666666666" + ], + [ + 1717522530, + "117.8" + ], + [ + 1717522545, + "95.23333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "385.6" + ], + [ + 1717522260, + "480.2" + ], + [ + 1717522275, + "626.2333333333333" + ], + [ + 1717522290, + "555.8333333333334" + ], + [ + 1717522305, + "425.2" + ], + [ + 1717522320, + "430" + ], + [ + 1717522335, + "419" + ], + [ + 1717522350, + "379" + ], + [ + 1717522365, + "370.2" + ], + [ + 1717522380, + "390" + ], + [ + 1717522395, + "403.2" + ], + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ], + [ + 1717522455, + "401" + ], + [ + 1717522470, + "403.2" + ], + [ + 1717522485, + "414.2" + ], + [ + 1717522500, + "414.2" + ], + [ + 1717522515, + "385.6" + ], + [ + 1717522530, + "385.6" + ], + [ + 1717522545, + "336.3666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "385.6" + ], + [ + 1717522260, + "480.2" + ], + [ + 1717522275, + "626.2333333333333" + ], + [ + 1717522290, + "555.8333333333334" + ], + [ + 1717522305, + "425.2" + ], + [ + 1717522320, + "430" + ], + [ + 1717522335, + "419" + ], + [ + 1717522350, + "379" + ], + [ + 1717522365, + "370.2" + ], + [ + 1717522380, + "390" + ], + [ + 1717522395, + "403.2" + ], + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ], + [ + 1717522455, + "401" + ], + [ + 1717522470, + "403.2" + ], + [ + 1717522485, + "414.2" + ], + [ + 1717522500, + "414.2" + ], + [ + 1717522515, + "385.6" + ], + [ + 1717522530, + "385.6" + ], + [ + 1717522545, + "336.3666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "109" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "374.6" + ], + [ + 1717522260, + "383.4" + ], + [ + 1717522275, + "363.6" + ], + [ + 1717522290, + "357" + ], + [ + 1717522305, + "357" + ], + [ + 1717522320, + "363.6" + ], + [ + 1717522335, + "383.4" + ], + [ + 1717522350, + "372.4" + ], + [ + 1717522365, + "372.4" + ], + [ + 1717522380, + "372.4" + ], + [ + 1717522395, + "361.4" + ], + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ], + [ + 1717522455, + "381.2" + ], + [ + 1717522470, + "359.2" + ], + [ + 1717522485, + "343.8" + ], + [ + 1717522500, + "350.4" + ], + [ + 1717522515, + "365.8" + ], + [ + 1717522530, + "359.2" + ], + [ + 1717522545, + "298.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "374.6" + ], + [ + 1717522260, + "383.4" + ], + [ + 1717522275, + "363.6" + ], + [ + 1717522290, + "357" + ], + [ + 1717522305, + "357" + ], + [ + 1717522320, + "363.6" + ], + [ + 1717522335, + "383.4" + ], + [ + 1717522350, + "372.4" + ], + [ + 1717522365, + "372.4" + ], + [ + 1717522380, + "372.4" + ], + [ + 1717522395, + "361.4" + ], + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ], + [ + 1717522455, + "381.2" + ], + [ + 1717522470, + "359.2" + ], + [ + 1717522485, + "343.8" + ], + [ + 1717522500, + "350.4" + ], + [ + 1717522515, + "365.8" + ], + [ + 1717522530, + "359.2" + ], + [ + 1717522545, + "298.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "149.4" + ], + [ + 1717522260, + "156" + ], + [ + 1717522275, + "151.5" + ], + [ + 1717522290, + "165.36666666666667" + ], + [ + 1717522305, + "157.76666666666668" + ], + [ + 1717522320, + "164.8" + ], + [ + 1717522335, + "181.3" + ], + [ + 1717522350, + "160.4" + ], + [ + 1717522365, + "130.03333333333333" + ], + [ + 1717522380, + "143.9" + ], + [ + 1717522395, + "159.96666666666667" + ], + [ + 1717522410, + "150.5" + ], + [ + 1717522425, + "162.6" + ], + [ + 1717522440, + "156" + ], + [ + 1717522455, + "159.96666666666667" + ], + [ + 1717522470, + "166.56666666666666" + ], + [ + 1717522485, + "159.96666666666667" + ], + [ + 1717522500, + "155.56666666666666" + ], + [ + 1717522515, + "160.4" + ], + [ + 1717522530, + "162.6" + ], + [ + 1717522545, + "122.66666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "53515" + ], + [ + 1717522260, + "55568.4" + ], + [ + 1717522275, + "57426.96666666667" + ], + [ + 1717522290, + "57000.46666666667" + ], + [ + 1717522305, + "54836.53333333333" + ], + [ + 1717522320, + "52796.666666666664" + ], + [ + 1717522335, + "52566.5" + ], + [ + 1717522350, + "53205.76666666667" + ], + [ + 1717522365, + "53859.76666666667" + ], + [ + 1717522380, + "53928.36666666667" + ], + [ + 1717522395, + "54082.26666666667" + ], + [ + 1717522410, + "54233.76666666667" + ], + [ + 1717522425, + "70221.2" + ], + [ + 1717522440, + "69814.4" + ], + [ + 1717522455, + "53250.36666666667" + ], + [ + 1717522470, + "53189.5" + ], + [ + 1717522485, + "53358.13333333333" + ], + [ + 1717522500, + "53375.9" + ], + [ + 1717522515, + "53572.5" + ], + [ + 1717522530, + "53124.53333333333" + ], + [ + 1717522545, + "52812.3" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "19846.266666666666" + ], + [ + 1717522260, + "19983.5" + ], + [ + 1717522275, + "19892.2" + ], + [ + 1717522290, + "20058.2" + ], + [ + 1717522305, + "19772.5" + ], + [ + 1717522320, + "19725.733333333334" + ], + [ + 1717522335, + "19951.233333333334" + ], + [ + 1717522350, + "19424.4" + ], + [ + 1717522365, + "19495.166666666668" + ], + [ + 1717522380, + "20059.366666666665" + ], + [ + 1717522395, + "19909.8" + ], + [ + 1717522410, + "19336" + ], + [ + 1717522425, + "19844.266666666666" + ], + [ + 1717522440, + "20264.7" + ], + [ + 1717522455, + "19824.566666666666" + ], + [ + 1717522470, + "19576.466666666667" + ], + [ + 1717522485, + "19795.333333333332" + ], + [ + 1717522500, + "20086.966666666667" + ], + [ + 1717522515, + "19965.166666666668" + ], + [ + 1717522530, + "19765.5" + ], + [ + 1717522545, + "19651.133333333335" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "49913.066666666666" + ], + [ + 1717522260, + "88001.83333333333" + ], + [ + 1717522275, + "140105.66666666666" + ], + [ + 1717522290, + "102356.06666666667" + ], + [ + 1717522305, + "49321.9" + ], + [ + 1717522320, + "51174.433333333334" + ], + [ + 1717522335, + "51061.36666666667" + ], + [ + 1717522350, + "48251.933333333334" + ], + [ + 1717522365, + "48818.4" + ], + [ + 1717522380, + "49711.166666666664" + ], + [ + 1717522395, + "49589.566666666666" + ], + [ + 1717522410, + "49641.333333333336" + ], + [ + 1717522425, + "51774.1" + ], + [ + 1717522440, + "51269.23333333333" + ], + [ + 1717522455, + "49014.76666666667" + ], + [ + 1717522470, + "48593.23333333333" + ], + [ + 1717522485, + "48844.933333333334" + ], + [ + 1717522500, + "49199.433333333334" + ], + [ + 1717522515, + "49024.76666666667" + ], + [ + 1717522530, + "48459.833333333336" + ], + [ + 1717522545, + "49501.46666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "44801.4" + ], + [ + 1717522260, + "45087.2" + ], + [ + 1717522275, + "44921.166666666664" + ], + [ + 1717522290, + "44497.86666666667" + ], + [ + 1717522305, + "43993.96666666667" + ], + [ + 1717522320, + "43647.6" + ], + [ + 1717522335, + "43722.36666666667" + ], + [ + 1717522350, + "43622.36666666667" + ], + [ + 1717522365, + "43390.566666666666" + ], + [ + 1717522380, + "43911.13333333333" + ], + [ + 1717522395, + "44253.7" + ], + [ + 1717522410, + "44163.666666666664" + ], + [ + 1717522425, + "44837.6" + ], + [ + 1717522440, + "44507.833333333336" + ], + [ + 1717522455, + "43731.1" + ], + [ + 1717522470, + "43525.1" + ], + [ + 1717522485, + "43703.86666666667" + ], + [ + 1717522500, + "43938.53333333333" + ], + [ + 1717522515, + "44052.666666666664" + ], + [ + 1717522530, + "43759.3" + ], + [ + 1717522545, + "43736.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "49.5" + ], + [ + 1717522365, + "58.3" + ], + [ + 1717522380, + "17.6" + ], + [ + 1717522395, + "58.3" + ], + [ + 1717522410, + "58.3" + ], + [ + 1717522425, + "75.7" + ], + [ + 1717522440, + "75.7" + ], + [ + 1717522455, + "75.7" + ], + [ + 1717522470, + "75.7" + ], + [ + 1717522485, + "17.6" + ], + [ + 1717522500, + "125" + ], + [ + 1717522515, + "133.8" + ], + [ + 1717522530, + "93.3" + ], + [ + 1717522545, + "84.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "4804.033333333334" + ], + [ + 1717522260, + "4779.766666666666" + ], + [ + 1717522275, + "4759.033333333334" + ], + [ + 1717522290, + "4877.3" + ], + [ + 1717522305, + "4812.633333333333" + ], + [ + 1717522320, + "4710.533333333334" + ], + [ + 1717522335, + "4763.233333333334" + ], + [ + 1717522350, + "5021.066666666667" + ], + [ + 1717522365, + "5026.7" + ], + [ + 1717522380, + "4967.066666666667" + ], + [ + 1717522395, + "5154.633333333333" + ], + [ + 1717522410, + "5068.366666666667" + ], + [ + 1717522425, + "5616.233333333334" + ], + [ + 1717522440, + "5618.933333333333" + ], + [ + 1717522455, + "5222.533333333334" + ], + [ + 1717522470, + "5195.7" + ], + [ + 1717522485, + "4885.1" + ], + [ + 1717522500, + "5003" + ], + [ + 1717522515, + "5402.9" + ], + [ + 1717522530, + "5597.366666666667" + ], + [ + 1717522545, + "5396.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "19487.666666666668" + ], + [ + 1717522260, + "19773.833333333332" + ], + [ + 1717522275, + "20607.233333333334" + ], + [ + 1717522290, + "20507.866666666665" + ], + [ + 1717522305, + "19407.766666666666" + ], + [ + 1717522320, + "19226.9" + ], + [ + 1717522335, + "20183.233333333334" + ], + [ + 1717522350, + "20075.433333333334" + ], + [ + 1717522365, + "19281.366666666665" + ], + [ + 1717522380, + "19376.2" + ], + [ + 1717522395, + "20102.166666666668" + ], + [ + 1717522410, + "20736.666666666668" + ], + [ + 1717522425, + "20371.8" + ], + [ + 1717522440, + "19829.233333333334" + ], + [ + 1717522455, + "20092.3" + ], + [ + 1717522470, + "19940.3" + ], + [ + 1717522485, + "19290.5" + ], + [ + 1717522500, + "19272.733333333334" + ], + [ + 1717522515, + "20122.666666666668" + ], + [ + 1717522530, + "20216.4" + ], + [ + 1717522545, + "19351.866666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "121.33333333333333" + ], + [ + 1717522365, + "130.13333333333333" + ], + [ + 1717522380, + "13.2" + ], + [ + 1717522395, + "125.23333333333333" + ], + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ], + [ + 1717522455, + "244.93333333333334" + ], + [ + 1717522470, + "244.93333333333334" + ], + [ + 1717522485, + "13.2" + ], + [ + 1717522500, + "470.93333333333334" + ], + [ + 1717522515, + "484.1333333333333" + ], + [ + 1717522530, + "260.43333333333334" + ], + [ + 1717522545, + "251.63333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522350, + "121.33333333333333" + ], + [ + 1717522365, + "130.13333333333333" + ], + [ + 1717522380, + "13.2" + ], + [ + 1717522395, + "125.23333333333333" + ], + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ], + [ + 1717522455, + "244.93333333333334" + ], + [ + 1717522470, + "244.93333333333334" + ], + [ + 1717522485, + "13.2" + ], + [ + 1717522500, + "470.93333333333334" + ], + [ + 1717522515, + "484.1333333333333" + ], + [ + 1717522530, + "260.43333333333334" + ], + [ + 1717522545, + "251.63333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "123.8" + ], + [ + 1717522260, + "123.8" + ], + [ + 1717522275, + "123.8" + ], + [ + 1717522290, + "123.8" + ], + [ + 1717522305, + "123.8" + ], + [ + 1717522320, + "123.8" + ], + [ + 1717522335, + "123.8" + ], + [ + 1717522350, + "126" + ], + [ + 1717522365, + "126" + ], + [ + 1717522380, + "123.8" + ], + [ + 1717522395, + "126" + ], + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ], + [ + 1717522455, + "126" + ], + [ + 1717522470, + "126" + ], + [ + 1717522485, + "123.8" + ], + [ + 1717522500, + "128.2" + ], + [ + 1717522515, + "132.6" + ], + [ + 1717522530, + "132.6" + ], + [ + 1717522545, + "128.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "123.8" + ], + [ + 1717522260, + "123.8" + ], + [ + 1717522275, + "123.8" + ], + [ + 1717522290, + "123.8" + ], + [ + 1717522305, + "123.8" + ], + [ + 1717522320, + "123.8" + ], + [ + 1717522335, + "123.8" + ], + [ + 1717522350, + "126" + ], + [ + 1717522365, + "126" + ], + [ + 1717522380, + "123.8" + ], + [ + 1717522395, + "126" + ], + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ], + [ + 1717522455, + "126" + ], + [ + 1717522470, + "126" + ], + [ + 1717522485, + "123.8" + ], + [ + 1717522500, + "128.2" + ], + [ + 1717522515, + "132.6" + ], + [ + 1717522530, + "132.6" + ], + [ + 1717522545, + "128.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "139.13333333333333" + ], + [ + 1717522260, + "136.5" + ], + [ + 1717522275, + "134.3" + ], + [ + 1717522290, + "136.93333333333334" + ], + [ + 1717522305, + "139.13333333333333" + ], + [ + 1717522320, + "132.1" + ], + [ + 1717522335, + "129.9" + ], + [ + 1717522350, + "139.13333333333333" + ], + [ + 1717522365, + "138.7" + ], + [ + 1717522380, + "136.06666666666666" + ], + [ + 1717522395, + "138.7" + ], + [ + 1717522410, + "136.5" + ], + [ + 1717522425, + "139.13333333333333" + ], + [ + 1717522440, + "141.33333333333334" + ], + [ + 1717522455, + "139.13333333333333" + ], + [ + 1717522470, + "141.76666666666668" + ], + [ + 1717522485, + "141.33333333333334" + ], + [ + 1717522500, + "138.7" + ], + [ + 1717522515, + "136.93333333333334" + ], + [ + 1717522530, + "136.93333333333334" + ], + [ + 1717522545, + "139.13333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "21.8" + ], + [ + 1717522365, + "21.8" + ], + [ + 1717522425, + "21.8" + ], + [ + 1717522440, + "21.8" + ], + [ + 1717522455, + "21.8" + ], + [ + 1717522470, + "21.8" + ], + [ + 1717522500, + "43.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "618.5333333333333" + ], + [ + 1717522260, + "605.8666666666667" + ], + [ + 1717522275, + "597.6333333333333" + ], + [ + 1717522290, + "599.6" + ], + [ + 1717522305, + "595.4" + ], + [ + 1717522320, + "594.2333333333333" + ], + [ + 1717522335, + "592.8" + ], + [ + 1717522350, + "596.8666666666667" + ], + [ + 1717522365, + "599.9" + ], + [ + 1717522380, + "593.6" + ], + [ + 1717522395, + "590.9666666666667" + ], + [ + 1717522410, + "591.1666666666666" + ], + [ + 1717522425, + "613.5" + ], + [ + 1717522440, + "637.6333333333333" + ], + [ + 1717522455, + "642" + ], + [ + 1717522470, + "645.2333333333333" + ], + [ + 1717522485, + "643.1" + ], + [ + 1717522500, + "642.7333333333333" + ], + [ + 1717522515, + "645.4" + ], + [ + 1717522530, + "647" + ], + [ + 1717522545, + "644.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "485.3666666666667" + ], + [ + 1717522260, + "484.2" + ], + [ + 1717522275, + "483.8666666666667" + ], + [ + 1717522290, + "484.43333333333334" + ], + [ + 1717522305, + "484.3" + ], + [ + 1717522320, + "484.1666666666667" + ], + [ + 1717522335, + "486" + ], + [ + 1717522350, + "486.1" + ], + [ + 1717522365, + "483.9" + ], + [ + 1717522380, + "484.1" + ], + [ + 1717522395, + "484.5" + ], + [ + 1717522410, + "484.53333333333336" + ], + [ + 1717522425, + "487.1" + ], + [ + 1717522440, + "485.56666666666666" + ], + [ + 1717522455, + "484.3666666666667" + ], + [ + 1717522470, + "484.3" + ], + [ + 1717522485, + "486.1" + ], + [ + 1717522500, + "486.46666666666664" + ], + [ + 1717522515, + "483.1666666666667" + ], + [ + 1717522530, + "483.8666666666667" + ], + [ + 1717522545, + "481.76666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "470.7" + ], + [ + 1717522260, + "473.1" + ], + [ + 1717522275, + "473.1666666666667" + ], + [ + 1717522290, + "472.46666666666664" + ], + [ + 1717522305, + "472.6333333333333" + ], + [ + 1717522320, + "473" + ], + [ + 1717522335, + "472.73333333333335" + ], + [ + 1717522350, + "473.03333333333336" + ], + [ + 1717522365, + "473.5" + ], + [ + 1717522380, + "473.3333333333333" + ], + [ + 1717522395, + "477.2" + ], + [ + 1717522410, + "481.2" + ], + [ + 1717522425, + "478.8" + ], + [ + 1717522440, + "477.43333333333334" + ], + [ + 1717522455, + "479.76666666666665" + ], + [ + 1717522470, + "480.96666666666664" + ], + [ + 1717522485, + "480.8333333333333" + ], + [ + 1717522500, + "480.56666666666666" + ], + [ + 1717522515, + "478.1" + ], + [ + 1717522530, + "476.03333333333336" + ], + [ + 1717522545, + "473.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "423.53333333333336" + ], + [ + 1717522260, + "422.8" + ], + [ + 1717522275, + "424.93333333333334" + ], + [ + 1717522290, + "428.3" + ], + [ + 1717522305, + "422.9" + ], + [ + 1717522320, + "416.9" + ], + [ + 1717522335, + "419.3" + ], + [ + 1717522350, + "420.1" + ], + [ + 1717522365, + "418.4" + ], + [ + 1717522380, + "418.73333333333335" + ], + [ + 1717522395, + "413.3333333333333" + ], + [ + 1717522410, + "408.1333333333333" + ], + [ + 1717522425, + "406.46666666666664" + ], + [ + 1717522440, + "407.3333333333333" + ], + [ + 1717522455, + "407.1666666666667" + ], + [ + 1717522470, + "404.53333333333336" + ], + [ + 1717522485, + "409.1333333333333" + ], + [ + 1717522500, + "417.9" + ], + [ + 1717522515, + "422.26666666666665" + ], + [ + 1717522530, + "417.1333333333333" + ], + [ + 1717522545, + "412.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "149.86666666666667" + ], + [ + 1717522260, + "147.63333333333333" + ], + [ + 1717522275, + "147.66666666666666" + ], + [ + 1717522290, + "147.83333333333334" + ], + [ + 1717522305, + "147.9" + ], + [ + 1717522320, + "147.73333333333332" + ], + [ + 1717522335, + "147.73333333333332" + ], + [ + 1717522350, + "147.8" + ], + [ + 1717522365, + "147.8" + ], + [ + 1717522380, + "147.7" + ], + [ + 1717522395, + "147.83333333333334" + ], + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.86666666666667" + ], + [ + 1717522440, + "147.5" + ], + [ + 1717522455, + "147.73333333333332" + ], + [ + 1717522470, + "147.86666666666667" + ], + [ + 1717522485, + "150" + ], + [ + 1717522500, + "150.13333333333333" + ], + [ + 1717522515, + "147.83333333333334" + ], + [ + 1717522530, + "147.66666666666666" + ], + [ + 1717522545, + "148" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "307.53333333333336" + ], + [ + 1717522260, + "307.3666666666667" + ], + [ + 1717522275, + "303.56666666666666" + ], + [ + 1717522290, + "303.8333333333333" + ], + [ + 1717522305, + "304.1" + ], + [ + 1717522320, + "302.2" + ], + [ + 1717522335, + "304.43333333333334" + ], + [ + 1717522350, + "307.03333333333336" + ], + [ + 1717522365, + "308.9" + ], + [ + 1717522380, + "307.56666666666666" + ], + [ + 1717522395, + "304.56666666666666" + ], + [ + 1717522410, + "304.7" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "313.53333333333336" + ], + [ + 1717522455, + "313.5" + ], + [ + 1717522470, + "311.53333333333336" + ], + [ + 1717522485, + "309.26666666666665" + ], + [ + 1717522500, + "311.26666666666665" + ], + [ + 1717522515, + "311.8" + ], + [ + 1717522530, + "310.3666666666667" + ], + [ + 1717522545, + "155.33333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "516.5" + ], + [ + 1717522260, + "517.4" + ], + [ + 1717522275, + "523.6" + ], + [ + 1717522290, + "532.4" + ], + [ + 1717522305, + "522.6666666666666" + ], + [ + 1717522320, + "510.6666666666667" + ], + [ + 1717522335, + "511.1666666666667" + ], + [ + 1717522350, + "511.5" + ], + [ + 1717522365, + "511.73333333333335" + ], + [ + 1717522380, + "512.1666666666666" + ], + [ + 1717522395, + "502.26666666666665" + ], + [ + 1717522410, + "492.3666666666667" + ], + [ + 1717522425, + "494.2" + ], + [ + 1717522440, + "498.06666666666666" + ], + [ + 1717522455, + "510.1333333333333" + ], + [ + 1717522470, + "521.7" + ], + [ + 1717522485, + "522.3" + ], + [ + 1717522500, + "521.6" + ], + [ + 1717522515, + "519.8333333333334" + ], + [ + 1717522530, + "518.9333333333333" + ], + [ + 1717522545, + "519.7666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "161.96666666666667" + ], + [ + 1717522260, + "163.73333333333332" + ], + [ + 1717522275, + "159.33333333333334" + ], + [ + 1717522290, + "161.96666666666667" + ], + [ + 1717522305, + "161.53333333333333" + ], + [ + 1717522320, + "163.73333333333332" + ], + [ + 1717522335, + "161.53333333333333" + ], + [ + 1717522350, + "159.33333333333334" + ], + [ + 1717522365, + "165.93333333333334" + ], + [ + 1717522380, + "166.36666666666667" + ], + [ + 1717522395, + "160.2" + ], + [ + 1717522410, + "164.16666666666666" + ], + [ + 1717522425, + "166.36666666666667" + ], + [ + 1717522440, + "164.6" + ], + [ + 1717522455, + "161.96666666666667" + ], + [ + 1717522470, + "161.53333333333333" + ], + [ + 1717522485, + "166.36666666666667" + ], + [ + 1717522500, + "166.36666666666667" + ], + [ + 1717522515, + "164.16666666666666" + ], + [ + 1717522530, + "161.96666666666667" + ], + [ + 1717522545, + "126.86666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "262.4" + ], + [ + 1717522260, + "273.4" + ], + [ + 1717522275, + "275.6" + ], + [ + 1717522290, + "255.8" + ], + [ + 1717522305, + "244.8" + ], + [ + 1717522320, + "260.2" + ], + [ + 1717522335, + "286.6" + ], + [ + 1717522350, + "284.4" + ], + [ + 1717522365, + "266.8" + ], + [ + 1717522380, + "260.2" + ], + [ + 1717522395, + "269" + ], + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ], + [ + 1717522455, + "275.6" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "247" + ], + [ + 1717522500, + "253.6" + ], + [ + 1717522515, + "273.4" + ], + [ + 1717522530, + "275.6" + ], + [ + 1717522545, + "219.76666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522245, + "262.4" + ], + [ + 1717522260, + "273.4" + ], + [ + 1717522275, + "275.6" + ], + [ + 1717522290, + "255.8" + ], + [ + 1717522305, + "244.8" + ], + [ + 1717522320, + "260.2" + ], + [ + 1717522335, + "286.6" + ], + [ + 1717522350, + "284.4" + ], + [ + 1717522365, + "266.8" + ], + [ + 1717522380, + "260.2" + ], + [ + 1717522395, + "269" + ], + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ], + [ + 1717522455, + "275.6" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "247" + ], + [ + 1717522500, + "253.6" + ], + [ + 1717522515, + "273.4" + ], + [ + 1717522530, + "275.6" + ], + [ + 1717522545, + "219.76666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "109" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 526, + "bytesSent": 0, + "downloadTime": 15562, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 96, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.114693387, + "linesProcessedPerSecond": 0, + "queueTime": 2.666253989, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 22992, + "bytesSent": 0, + "downloadTime": 10017, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 1418663, + "decompressedBytes": 5745953, + "decompressedLines": 7833, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1721248, + "headChunkLines": 2399, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 10232, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 179, + "totalChunksMatched": 126, + "totalLinesSent": 5736, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 53634896, + "execTime": 0.13922281, + "linesProcessedPerSecond": 73493, + "queueTime": 3.034323986, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 7467201, + "totalEntriesReturned": 51, + "totalLinesProcessed": 10232, + "totalPostFilterLines": 10232, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717522547 +} diff --git a/web/cypress/fixtures/flowmetrics/NSOwners.json b/web/cypress/fixtures/flowmetrics/NSOwners.json new file mode 100644 index 000000000..c6c8f19d7 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/NSOwners.json @@ -0,0 +1,5233 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "21.5" + ], + [ + 1717524075, + "59.333333333333336" + ], + [ + 1717524090, + "63.63333333333333" + ], + [ + 1717524105, + "23.6" + ], + [ + 1717524120, + "6.6" + ], + [ + 1717524135, + "88.16666666666667" + ], + [ + 1717524150, + "169.23333333333332" + ], + [ + 1717524165, + "85.46666666666667" + ], + [ + 1717524180, + "4.4" + ], + [ + 1717524195, + "6.6" + ], + [ + 1717524210, + "88" + ], + [ + 1717524225, + "121.8" + ], + [ + 1717524240, + "67.8" + ], + [ + 1717524255, + "34" + ], + [ + 1717524270, + "4.4" + ], + [ + 1717524285, + "2.2" + ], + [ + 1717524300, + "4.4" + ], + [ + 1717524315, + "6.6" + ], + [ + 1717524330, + "42.6" + ], + [ + 1717524345, + "84.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "177.76666666666668" + ], + [ + 1717524075, + "179.53333333333333" + ], + [ + 1717524090, + "181.73333333333332" + ], + [ + 1717524105, + "186.7" + ], + [ + 1717524120, + "186.26666666666668" + ], + [ + 1717524135, + "181.3" + ], + [ + 1717524150, + "179.1" + ], + [ + 1717524165, + "184.06666666666666" + ], + [ + 1717524180, + "184.5" + ], + [ + 1717524195, + "186.7" + ], + [ + 1717524210, + "201.23333333333332" + ], + [ + 1717524225, + "218.16666666666666" + ], + [ + 1717524240, + "212.43333333333334" + ], + [ + 1717524255, + "183.06666666666666" + ], + [ + 1717524270, + "181.3" + ], + [ + 1717524285, + "184.36666666666667" + ], + [ + 1717524300, + "157.86666666666667" + ], + [ + 1717524315, + "188.03333333333333" + ], + [ + 1717524330, + "209.7" + ], + [ + 1717524345, + "181.3" + ], + [ + 1717524360, + "160.06666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "130.8" + ], + [ + 1717524135, + "130.8" + ], + [ + 1717524150, + "130.8" + ], + [ + 1717524165, + "130.8" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "130.8" + ], + [ + 1717524225, + "130.8" + ], + [ + 1717524240, + "130.8" + ], + [ + 1717524255, + "130.8" + ], + [ + 1717524270, + "130.8" + ], + [ + 1717524285, + "130.8" + ], + [ + 1717524300, + "130.8" + ], + [ + 1717524315, + "130.8" + ], + [ + 1717524330, + "130.8" + ], + [ + 1717524345, + "130.8" + ], + [ + 1717524360, + "109" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "454.46666666666664" + ], + [ + 1717524075, + "456.6666666666667" + ], + [ + 1717524090, + "458.8666666666667" + ], + [ + 1717524105, + "454.46666666666664" + ], + [ + 1717524120, + "452.26666666666665" + ], + [ + 1717524135, + "452.26666666666665" + ], + [ + 1717524150, + "452.26666666666665" + ], + [ + 1717524165, + "456.6666666666667" + ], + [ + 1717524180, + "458.8666666666667" + ], + [ + 1717524195, + "458.8666666666667" + ], + [ + 1717524210, + "456.6666666666667" + ], + [ + 1717524225, + "454.46666666666664" + ], + [ + 1717524240, + "454.46666666666664" + ], + [ + 1717524255, + "456.6666666666667" + ], + [ + 1717524270, + "458.8666666666667" + ], + [ + 1717524285, + "458.8666666666667" + ], + [ + 1717524300, + "458.8666666666667" + ], + [ + 1717524315, + "454.46666666666664" + ], + [ + 1717524330, + "452.26666666666665" + ], + [ + 1717524345, + "454.46666666666664" + ], + [ + 1717524360, + "4142.666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "467.6666666666667" + ], + [ + 1717524075, + "467.6666666666667" + ], + [ + 1717524090, + "467.6666666666667" + ], + [ + 1717524105, + "467.6666666666667" + ], + [ + 1717524120, + "467.6666666666667" + ], + [ + 1717524135, + "467.6666666666667" + ], + [ + 1717524150, + "467.6666666666667" + ], + [ + 1717524165, + "467.6666666666667" + ], + [ + 1717524180, + "467.6666666666667" + ], + [ + 1717524195, + "467.6666666666667" + ], + [ + 1717524210, + "467.6666666666667" + ], + [ + 1717524225, + "467.6666666666667" + ], + [ + 1717524240, + "467.6666666666667" + ], + [ + 1717524255, + "463.26666666666665" + ], + [ + 1717524270, + "463.26666666666665" + ], + [ + 1717524285, + "463.26666666666665" + ], + [ + 1717524300, + "458.8666666666667" + ], + [ + 1717524315, + "463.26666666666665" + ], + [ + 1717524330, + "467.6666666666667" + ], + [ + 1717524345, + "467.6666666666667" + ], + [ + 1717524360, + "4149.266666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "442.8" + ], + [ + 1717524075, + "414.2" + ], + [ + 1717524090, + "390" + ], + [ + 1717524105, + "394.4" + ], + [ + 1717524120, + "414.2" + ], + [ + 1717524135, + "407.6" + ], + [ + 1717524150, + "390" + ], + [ + 1717524165, + "398.8" + ], + [ + 1717524180, + "405.4" + ], + [ + 1717524195, + "412" + ], + [ + 1717524210, + "420.8" + ], + [ + 1717524225, + "469.2" + ], + [ + 1717524240, + "467" + ], + [ + 1717524255, + "423" + ], + [ + 1717524270, + "425.2" + ], + [ + 1717524285, + "407.6" + ], + [ + 1717524300, + "401" + ], + [ + 1717524315, + "407.6" + ], + [ + 1717524330, + "405.4" + ], + [ + 1717524345, + "409.8" + ], + [ + 1717524360, + "351.76666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "442.8" + ], + [ + 1717524075, + "414.2" + ], + [ + 1717524090, + "390" + ], + [ + 1717524105, + "394.4" + ], + [ + 1717524120, + "414.2" + ], + [ + 1717524135, + "407.6" + ], + [ + 1717524150, + "390" + ], + [ + 1717524165, + "398.8" + ], + [ + 1717524180, + "405.4" + ], + [ + 1717524195, + "412" + ], + [ + 1717524210, + "420.8" + ], + [ + 1717524225, + "469.2" + ], + [ + 1717524240, + "467" + ], + [ + 1717524255, + "423" + ], + [ + 1717524270, + "425.2" + ], + [ + 1717524285, + "407.6" + ], + [ + 1717524300, + "401" + ], + [ + 1717524315, + "407.6" + ], + [ + 1717524330, + "405.4" + ], + [ + 1717524345, + "409.8" + ], + [ + 1717524360, + "351.76666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "161.5" + ], + [ + 1717524075, + "159.73333333333332" + ], + [ + 1717524090, + "159.73333333333332" + ], + [ + 1717524105, + "161.5" + ], + [ + 1717524120, + "163.7" + ], + [ + 1717524135, + "165.9" + ], + [ + 1717524150, + "166.33333333333334" + ], + [ + 1717524165, + "166.33333333333334" + ], + [ + 1717524180, + "168.53333333333333" + ], + [ + 1717524195, + "164.13333333333333" + ], + [ + 1717524210, + "159.3" + ], + [ + 1717524225, + "161.93333333333334" + ], + [ + 1717524240, + "166.33333333333334" + ], + [ + 1717524255, + "165.9" + ], + [ + 1717524270, + "163.26666666666668" + ], + [ + 1717524285, + "161.06666666666666" + ], + [ + 1717524300, + "161.5" + ], + [ + 1717524315, + "165.9" + ], + [ + 1717524330, + "165.46666666666667" + ], + [ + 1717524345, + "165.46666666666667" + ], + [ + 1717524360, + "163.26666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "610" + ], + [ + 1717524075, + "603.5333333333333" + ], + [ + 1717524090, + "601.1666666666666" + ], + [ + 1717524105, + "599.5666666666667" + ], + [ + 1717524120, + "599.7333333333333" + ], + [ + 1717524135, + "602.2" + ], + [ + 1717524150, + "602.8666666666667" + ], + [ + 1717524165, + "600" + ], + [ + 1717524180, + "591.0666666666667" + ], + [ + 1717524195, + "585.1666666666666" + ], + [ + 1717524210, + "586.6666666666666" + ], + [ + 1717524225, + "609.7" + ], + [ + 1717524240, + "631.1" + ], + [ + 1717524255, + "633.2333333333333" + ], + [ + 1717524270, + "638.8333333333334" + ], + [ + 1717524285, + "641.4666666666667" + ], + [ + 1717524300, + "649.5333333333333" + ], + [ + 1717524315, + "648.8666666666667" + ], + [ + 1717524330, + "641.1333333333333" + ], + [ + 1717524345, + "642.2333333333333" + ], + [ + 1717524360, + "642.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "480.46666666666664" + ], + [ + 1717524075, + "479" + ], + [ + 1717524090, + "479.5" + ], + [ + 1717524105, + "479.53333333333336" + ], + [ + 1717524120, + "480.43333333333334" + ], + [ + 1717524135, + "481" + ], + [ + 1717524150, + "490.2" + ], + [ + 1717524165, + "501.26666666666665" + ], + [ + 1717524180, + "490.96666666666664" + ], + [ + 1717524195, + "480.7" + ], + [ + 1717524210, + "481.2" + ], + [ + 1717524225, + "480.3333333333333" + ], + [ + 1717524240, + "492.06666666666666" + ], + [ + 1717524255, + "503.1666666666667" + ], + [ + 1717524270, + "503.2" + ], + [ + 1717524285, + "503.2" + ], + [ + 1717524300, + "492.76666666666665" + ], + [ + 1717524315, + "482.1333333333333" + ], + [ + 1717524330, + "491.8" + ], + [ + 1717524345, + "492.6" + ], + [ + 1717524360, + "493.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "470.1666666666667" + ], + [ + 1717524075, + "472.46666666666664" + ], + [ + 1717524090, + "480" + ], + [ + 1717524105, + "481.96666666666664" + ], + [ + 1717524120, + "476.6333333333333" + ], + [ + 1717524135, + "474.5" + ], + [ + 1717524150, + "475.23333333333335" + ], + [ + 1717524165, + "476.8666666666667" + ], + [ + 1717524180, + "476.3666666666667" + ], + [ + 1717524195, + "473.3333333333333" + ], + [ + 1717524210, + "470.2" + ], + [ + 1717524225, + "468.1666666666667" + ], + [ + 1717524240, + "472.3666666666667" + ], + [ + 1717524255, + "477.8" + ], + [ + 1717524270, + "480.5" + ], + [ + 1717524285, + "482.06666666666666" + ], + [ + 1717524300, + "480.53333333333336" + ], + [ + 1717524315, + "610.9666666666667" + ], + [ + 1717524330, + "612.7" + ], + [ + 1717524345, + "481.6" + ], + [ + 1717524360, + "480.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "428.53333333333336" + ], + [ + 1717524075, + "430.3" + ], + [ + 1717524090, + "431.4" + ], + [ + 1717524105, + "431.6" + ], + [ + 1717524120, + "431.03333333333336" + ], + [ + 1717524135, + "432.3666666666667" + ], + [ + 1717524150, + "432.46666666666664" + ], + [ + 1717524165, + "430.96666666666664" + ], + [ + 1717524180, + "425.7" + ], + [ + 1717524195, + "418.03333333333336" + ], + [ + 1717524210, + "414.4" + ], + [ + 1717524225, + "415.9" + ], + [ + 1717524240, + "414.76666666666665" + ], + [ + 1717524255, + "416.1" + ], + [ + 1717524270, + "422.56666666666666" + ], + [ + 1717524285, + "425.93333333333334" + ], + [ + 1717524300, + "427.8666666666667" + ], + [ + 1717524315, + "425.6" + ], + [ + 1717524330, + "421.1666666666667" + ], + [ + 1717524345, + "421.9" + ], + [ + 1717524360, + "420.8333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "147.9" + ], + [ + 1717524075, + "147.86666666666667" + ], + [ + 1717524090, + "147.86666666666667" + ], + [ + 1717524105, + "147.9" + ], + [ + 1717524120, + "147.93333333333334" + ], + [ + 1717524135, + "147.86666666666667" + ], + [ + 1717524150, + "147.83333333333334" + ], + [ + 1717524165, + "147.8" + ], + [ + 1717524180, + "147.9" + ], + [ + 1717524195, + "148.06666666666666" + ], + [ + 1717524210, + "148.1" + ], + [ + 1717524225, + "147.86666666666667" + ], + [ + 1717524240, + "147.83333333333334" + ], + [ + 1717524255, + "147.96666666666667" + ], + [ + 1717524270, + "148" + ], + [ + 1717524285, + "148.1" + ], + [ + 1717524300, + "147.83333333333334" + ], + [ + 1717524315, + "147.7" + ], + [ + 1717524330, + "147.86666666666667" + ], + [ + 1717524345, + "147.93333333333334" + ], + [ + 1717524360, + "147.76666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "310.8333333333333" + ], + [ + 1717524075, + "309.4" + ], + [ + 1717524090, + "305.43333333333334" + ], + [ + 1717524105, + "305.03333333333336" + ], + [ + 1717524120, + "305.1666666666667" + ], + [ + 1717524135, + "304.8333333333333" + ], + [ + 1717524150, + "304.6" + ], + [ + 1717524165, + "302.8" + ], + [ + 1717524180, + "305.8666666666667" + ], + [ + 1717524195, + "307.76666666666665" + ], + [ + 1717524210, + "307.1333333333333" + ], + [ + 1717524225, + "306.6666666666667" + ], + [ + 1717524240, + "306" + ], + [ + 1717524255, + "307.53333333333336" + ], + [ + 1717524270, + "307.8" + ], + [ + 1717524285, + "308.53333333333336" + ], + [ + 1717524300, + "310.6333333333333" + ], + [ + 1717524315, + "310.1" + ], + [ + 1717524330, + "312.6333333333333" + ], + [ + 1717524345, + "311.3" + ], + [ + 1717524360, + "306.46666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "514.7666666666667" + ], + [ + 1717524075, + "511.46666666666664" + ], + [ + 1717524090, + "510.8666666666667" + ], + [ + 1717524105, + "513.6333333333333" + ], + [ + 1717524120, + "512.4333333333333" + ], + [ + 1717524135, + "510.23333333333335" + ], + [ + 1717524150, + "511.73333333333335" + ], + [ + 1717524165, + "514.3" + ], + [ + 1717524180, + "511.96666666666664" + ], + [ + 1717524195, + "506.6" + ], + [ + 1717524210, + "502.6" + ], + [ + 1717524225, + "500.76666666666665" + ], + [ + 1717524240, + "502" + ], + [ + 1717524255, + "503.76666666666665" + ], + [ + 1717524270, + "501.53333333333336" + ], + [ + 1717524285, + "499.6" + ], + [ + 1717524300, + "499.3" + ], + [ + 1717524315, + "504.2" + ], + [ + 1717524330, + "509.93333333333334" + ], + [ + 1717524345, + "510.1" + ], + [ + 1717524360, + "506.93333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "266.8" + ], + [ + 1717524075, + "255.8" + ], + [ + 1717524090, + "253.6" + ], + [ + 1717524105, + "273.4" + ], + [ + 1717524120, + "277.8" + ], + [ + 1717524135, + "260.2" + ], + [ + 1717524150, + "258" + ], + [ + 1717524165, + "273.4" + ], + [ + 1717524180, + "273.4" + ], + [ + 1717524195, + "269" + ], + [ + 1717524210, + "282.2" + ], + [ + 1717524225, + "282.2" + ], + [ + 1717524240, + "271.2" + ], + [ + 1717524255, + "262.4" + ], + [ + 1717524270, + "255.8" + ], + [ + 1717524285, + "258" + ], + [ + 1717524300, + "253.6" + ], + [ + 1717524315, + "260.2" + ], + [ + 1717524330, + "271.2" + ], + [ + 1717524345, + "269" + ], + [ + 1717524360, + "262.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "266.8" + ], + [ + 1717524075, + "255.8" + ], + [ + 1717524090, + "253.6" + ], + [ + 1717524105, + "273.4" + ], + [ + 1717524120, + "277.8" + ], + [ + 1717524135, + "260.2" + ], + [ + 1717524150, + "258" + ], + [ + 1717524165, + "273.4" + ], + [ + 1717524180, + "273.4" + ], + [ + 1717524195, + "269" + ], + [ + 1717524210, + "282.2" + ], + [ + 1717524225, + "282.2" + ], + [ + 1717524240, + "271.2" + ], + [ + 1717524255, + "262.4" + ], + [ + 1717524270, + "255.8" + ], + [ + 1717524285, + "258" + ], + [ + 1717524300, + "253.6" + ], + [ + 1717524315, + "260.2" + ], + [ + 1717524330, + "271.2" + ], + [ + 1717524345, + "269" + ], + [ + 1717524360, + "262.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "130.8" + ], + [ + 1717524135, + "130.8" + ], + [ + 1717524150, + "130.8" + ], + [ + 1717524165, + "130.8" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "130.8" + ], + [ + 1717524225, + "130.8" + ], + [ + 1717524240, + "130.8" + ], + [ + 1717524255, + "130.8" + ], + [ + 1717524270, + "130.8" + ], + [ + 1717524285, + "130.8" + ], + [ + 1717524300, + "130.8" + ], + [ + 1717524315, + "130.8" + ], + [ + 1717524330, + "130.8" + ], + [ + 1717524345, + "130.8" + ], + [ + 1717524360, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "130.8" + ], + [ + 1717524135, + "130.8" + ], + [ + 1717524150, + "130.8" + ], + [ + 1717524165, + "130.8" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "130.8" + ], + [ + 1717524225, + "130.8" + ], + [ + 1717524240, + "130.8" + ], + [ + 1717524255, + "130.8" + ], + [ + 1717524270, + "130.8" + ], + [ + 1717524285, + "130.8" + ], + [ + 1717524300, + "130.8" + ], + [ + 1717524315, + "130.8" + ], + [ + 1717524330, + "130.8" + ], + [ + 1717524345, + "130.8" + ], + [ + 1717524360, + "109" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "120.66666666666667" + ], + [ + 1717524075, + "116.26666666666667" + ], + [ + 1717524090, + "102.4" + ], + [ + 1717524105, + "100.2" + ], + [ + 1717524120, + "98" + ], + [ + 1717524135, + "100.2" + ], + [ + 1717524150, + "102.4" + ], + [ + 1717524165, + "118.46666666666667" + ], + [ + 1717524180, + "116.26666666666667" + ], + [ + 1717524195, + "98" + ], + [ + 1717524210, + "95.8" + ], + [ + 1717524225, + "98" + ], + [ + 1717524240, + "102.4" + ], + [ + 1717524255, + "104.6" + ], + [ + 1717524270, + "104.6" + ], + [ + 1717524285, + "102.4" + ], + [ + 1717524300, + "104.6" + ], + [ + 1717524315, + "134.43333333333334" + ], + [ + 1717524330, + "130.03333333333333" + ], + [ + 1717524345, + "100.2" + ], + [ + 1717524360, + "84.23333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "427.4" + ], + [ + 1717524075, + "396.6" + ], + [ + 1717524090, + "427.2" + ], + [ + 1717524105, + "418.4" + ], + [ + 1717524120, + "412" + ], + [ + 1717524135, + "418.6" + ], + [ + 1717524150, + "381.2" + ], + [ + 1717524165, + "379" + ], + [ + 1717524180, + "387.8" + ], + [ + 1717524195, + "401" + ], + [ + 1717524210, + "403.2" + ], + [ + 1717524225, + "390" + ], + [ + 1717524240, + "403.2" + ], + [ + 1717524255, + "383.4" + ], + [ + 1717524270, + "385.6" + ], + [ + 1717524285, + "418.6" + ], + [ + 1717524300, + "414.2" + ], + [ + 1717524315, + "414.2" + ], + [ + 1717524330, + "401" + ], + [ + 1717524345, + "396.6" + ], + [ + 1717524360, + "342.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "427.4" + ], + [ + 1717524075, + "396.6" + ], + [ + 1717524090, + "427.2" + ], + [ + 1717524105, + "418.4" + ], + [ + 1717524120, + "412" + ], + [ + 1717524135, + "418.6" + ], + [ + 1717524150, + "381.2" + ], + [ + 1717524165, + "379" + ], + [ + 1717524180, + "387.8" + ], + [ + 1717524195, + "401" + ], + [ + 1717524210, + "403.2" + ], + [ + 1717524225, + "390" + ], + [ + 1717524240, + "403.2" + ], + [ + 1717524255, + "383.4" + ], + [ + 1717524270, + "385.6" + ], + [ + 1717524285, + "418.6" + ], + [ + 1717524300, + "414.2" + ], + [ + 1717524315, + "414.2" + ], + [ + 1717524330, + "401" + ], + [ + 1717524345, + "396.6" + ], + [ + 1717524360, + "342.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "130.8" + ], + [ + 1717524135, + "130.8" + ], + [ + 1717524150, + "130.8" + ], + [ + 1717524165, + "130.8" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "130.8" + ], + [ + 1717524225, + "130.8" + ], + [ + 1717524240, + "130.8" + ], + [ + 1717524255, + "130.8" + ], + [ + 1717524270, + "130.8" + ], + [ + 1717524285, + "130.8" + ], + [ + 1717524300, + "130.8" + ], + [ + 1717524315, + "130.8" + ], + [ + 1717524330, + "130.8" + ], + [ + 1717524345, + "130.8" + ], + [ + 1717524360, + "109" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "383.4" + ], + [ + 1717524075, + "363.6" + ], + [ + 1717524090, + "392.2" + ], + [ + 1717524105, + "396.6" + ], + [ + 1717524120, + "361.4" + ], + [ + 1717524135, + "381.2" + ], + [ + 1717524150, + "398.8" + ], + [ + 1717524165, + "368" + ], + [ + 1717524180, + "376.8" + ], + [ + 1717524195, + "383.4" + ], + [ + 1717524210, + "376.8" + ], + [ + 1717524225, + "376.8" + ], + [ + 1717524240, + "363.6" + ], + [ + 1717524255, + "357" + ], + [ + 1717524270, + "363.6" + ], + [ + 1717524285, + "390" + ], + [ + 1717524300, + "396.6" + ], + [ + 1717524315, + "387.8" + ], + [ + 1717524330, + "376.8" + ], + [ + 1717524345, + "370.2" + ], + [ + 1717524360, + "301.1666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "383.4" + ], + [ + 1717524075, + "363.6" + ], + [ + 1717524090, + "392.2" + ], + [ + 1717524105, + "396.6" + ], + [ + 1717524120, + "361.4" + ], + [ + 1717524135, + "381.2" + ], + [ + 1717524150, + "398.8" + ], + [ + 1717524165, + "368" + ], + [ + 1717524180, + "376.8" + ], + [ + 1717524195, + "383.4" + ], + [ + 1717524210, + "376.8" + ], + [ + 1717524225, + "376.8" + ], + [ + 1717524240, + "363.6" + ], + [ + 1717524255, + "357" + ], + [ + 1717524270, + "363.6" + ], + [ + 1717524285, + "390" + ], + [ + 1717524300, + "396.6" + ], + [ + 1717524315, + "387.8" + ], + [ + 1717524330, + "376.8" + ], + [ + 1717524345, + "370.2" + ], + [ + 1717524360, + "301.1666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.125", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "console-656c578b98-zcpjg", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "8.8" + ], + [ + 1717524075, + "13.2" + ], + [ + 1717524090, + "8.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.125", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "console-656c578b98-zcpjg", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "8.8" + ], + [ + 1717524075, + "13.2" + ], + [ + 1717524090, + "8.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "169.2" + ], + [ + 1717524075, + "130.46666666666667" + ], + [ + 1717524090, + "141.7" + ], + [ + 1717524105, + "160.4" + ], + [ + 1717524120, + "146.96666666666667" + ], + [ + 1717524135, + "169.63333333333333" + ], + [ + 1717524150, + "180.86666666666667" + ], + [ + 1717524165, + "165.03333333333333" + ], + [ + 1717524180, + "169.43333333333334" + ], + [ + 1717524195, + "173.83333333333334" + ], + [ + 1717524210, + "153.36666666666667" + ], + [ + 1717524225, + "156.43333333333334" + ], + [ + 1717524240, + "163.03333333333333" + ], + [ + 1717524255, + "158.2" + ], + [ + 1717524270, + "156.43333333333334" + ], + [ + 1717524285, + "127.5" + ], + [ + 1717524300, + "151.06666666666666" + ], + [ + 1717524315, + "168.33333333333334" + ], + [ + 1717524330, + "142.13333333333333" + ], + [ + 1717524345, + "151.6" + ], + [ + 1717524360, + "144.66666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "53633.333333333336" + ], + [ + 1717524075, + "53242.23333333333" + ], + [ + 1717524090, + "53386.7" + ], + [ + 1717524105, + "53437.96666666667" + ], + [ + 1717524120, + "53323.833333333336" + ], + [ + 1717524135, + "53469.2" + ], + [ + 1717524150, + "53409.03333333333" + ], + [ + 1717524165, + "52654.433333333334" + ], + [ + 1717524180, + "52927.066666666666" + ], + [ + 1717524195, + "53085.8" + ], + [ + 1717524210, + "53200.23333333333" + ], + [ + 1717524225, + "72592.6" + ], + [ + 1717524240, + "72985.26666666666" + ], + [ + 1717524255, + "53581.166666666664" + ], + [ + 1717524270, + "53832.13333333333" + ], + [ + 1717524285, + "54349.666666666664" + ], + [ + 1717524300, + "53767.73333333333" + ], + [ + 1717524315, + "53462.8" + ], + [ + 1717524330, + "53554.53333333333" + ], + [ + 1717524345, + "53645.63333333333" + ], + [ + 1717524360, + "53711.566666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "20279.866666666665" + ], + [ + 1717524075, + "20403.7" + ], + [ + 1717524090, + "20319.6" + ], + [ + 1717524105, + "19969.666666666668" + ], + [ + 1717524120, + "20031.433333333334" + ], + [ + 1717524135, + "20296.4" + ], + [ + 1717524150, + "20369.333333333332" + ], + [ + 1717524165, + "20183.433333333334" + ], + [ + 1717524180, + "20055.933333333334" + ], + [ + 1717524195, + "20137.5" + ], + [ + 1717524210, + "20040.533333333333" + ], + [ + 1717524225, + "20454.066666666666" + ], + [ + 1717524240, + "20579.1" + ], + [ + 1717524255, + "20361.233333333334" + ], + [ + 1717524270, + "20068.766666666666" + ], + [ + 1717524285, + "19505.666666666668" + ], + [ + 1717524300, + "19946.066666666666" + ], + [ + 1717524315, + "20153.3" + ], + [ + 1717524330, + "19998.9" + ], + [ + 1717524345, + "19989.833333333332" + ], + [ + 1717524360, + "19736.166666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "49245.23333333333" + ], + [ + 1717524075, + "49726.3" + ], + [ + 1717524090, + "50265.433333333334" + ], + [ + 1717524105, + "49554.86666666667" + ], + [ + 1717524120, + "49369.73333333333" + ], + [ + 1717524135, + "50140.63333333333" + ], + [ + 1717524150, + "49574.23333333333" + ], + [ + 1717524165, + "48163" + ], + [ + 1717524180, + "48093.13333333333" + ], + [ + 1717524195, + "48645.566666666666" + ], + [ + 1717524210, + "48714.53333333333" + ], + [ + 1717524225, + "50854.23333333333" + ], + [ + 1717524240, + "52190.666666666664" + ], + [ + 1717524255, + "49489.2" + ], + [ + 1717524270, + "48092.86666666667" + ], + [ + 1717524285, + "48678.933333333334" + ], + [ + 1717524300, + "49354.23333333333" + ], + [ + 1717524315, + "49210.53333333333" + ], + [ + 1717524330, + "48527.36666666667" + ], + [ + 1717524345, + "48199.26666666667" + ], + [ + 1717524360, + "49155.46666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "43728.2" + ], + [ + 1717524075, + "43840" + ], + [ + 1717524090, + "43986.03333333333" + ], + [ + 1717524105, + "44110.36666666667" + ], + [ + 1717524120, + "44365.23333333333" + ], + [ + 1717524135, + "45153.433333333334" + ], + [ + 1717524150, + "44955.96666666667" + ], + [ + 1717524165, + "43422.333333333336" + ], + [ + 1717524180, + "43425.066666666666" + ], + [ + 1717524195, + "43919.4" + ], + [ + 1717524210, + "44327.2" + ], + [ + 1717524225, + "44966.5" + ], + [ + 1717524240, + "44717.03333333333" + ], + [ + 1717524255, + "43662.4" + ], + [ + 1717524270, + "43901.833333333336" + ], + [ + 1717524285, + "44464.73333333333" + ], + [ + 1717524300, + "43996.4" + ], + [ + 1717524315, + "43740.26666666667" + ], + [ + 1717524330, + "43732.566666666666" + ], + [ + 1717524345, + "44205.6" + ], + [ + 1717524360, + "44355.03333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524360, + "174.3" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "4930.6" + ], + [ + 1717524075, + "4812.333333333333" + ], + [ + 1717524090, + "4796.566666666667" + ], + [ + 1717524105, + "4828.833333333333" + ], + [ + 1717524120, + "4790.2" + ], + [ + 1717524135, + "4853.933333333333" + ], + [ + 1717524150, + "4952.7" + ], + [ + 1717524165, + "4865.033333333334" + ], + [ + 1717524180, + "4858.8" + ], + [ + 1717524195, + "4824.7" + ], + [ + 1717524210, + "4832.533333333334" + ], + [ + 1717524225, + "5503.766666666666" + ], + [ + 1717524240, + "5488.4" + ], + [ + 1717524255, + "4758.666666666667" + ], + [ + 1717524270, + "4748.966666666666" + ], + [ + 1717524285, + "4938.866666666667" + ], + [ + 1717524300, + "4911.733333333334" + ], + [ + 1717524315, + "4737.9" + ], + [ + 1717524330, + "4765.266666666666" + ], + [ + 1717524345, + "4922.666666666667" + ], + [ + 1717524360, + "5362.133333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "19604.766666666666" + ], + [ + 1717524075, + "20075.433333333334" + ], + [ + 1717524090, + "20032.1" + ], + [ + 1717524105, + "19431.466666666667" + ], + [ + 1717524120, + "19624.633333333335" + ], + [ + 1717524135, + "20344.4" + ], + [ + 1717524150, + "20239.433333333334" + ], + [ + 1717524165, + "19231.2" + ], + [ + 1717524180, + "18894.833333333332" + ], + [ + 1717524195, + "19782.2" + ], + [ + 1717524210, + "20243.9" + ], + [ + 1717524225, + "20016.166666666668" + ], + [ + 1717524240, + "19874.533333333333" + ], + [ + 1717524255, + "20100.966666666667" + ], + [ + 1717524270, + "20042.766666666666" + ], + [ + 1717524285, + "19427.066666666666" + ], + [ + 1717524300, + "20101.833333333332" + ], + [ + 1717524315, + "20670.066666666666" + ], + [ + 1717524330, + "19918.666666666668" + ], + [ + 1717524345, + "19412.4" + ], + [ + 1717524360, + "19493.533333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524360, + "692.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524360, + "692.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "123.8" + ], + [ + 1717524075, + "123.8" + ], + [ + 1717524090, + "123.8" + ], + [ + 1717524105, + "123.8" + ], + [ + 1717524120, + "123.8" + ], + [ + 1717524135, + "123.8" + ], + [ + 1717524150, + "123.8" + ], + [ + 1717524165, + "123.8" + ], + [ + 1717524180, + "123.8" + ], + [ + 1717524195, + "123.8" + ], + [ + 1717524210, + "123.8" + ], + [ + 1717524225, + "130.4" + ], + [ + 1717524240, + "130.4" + ], + [ + 1717524255, + "123.8" + ], + [ + 1717524270, + "123.8" + ], + [ + 1717524285, + "123.8" + ], + [ + 1717524300, + "123.8" + ], + [ + 1717524315, + "123.8" + ], + [ + 1717524330, + "123.8" + ], + [ + 1717524345, + "123.8" + ], + [ + 1717524360, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "123.8" + ], + [ + 1717524075, + "123.8" + ], + [ + 1717524090, + "123.8" + ], + [ + 1717524105, + "123.8" + ], + [ + 1717524120, + "123.8" + ], + [ + 1717524135, + "123.8" + ], + [ + 1717524150, + "123.8" + ], + [ + 1717524165, + "123.8" + ], + [ + 1717524180, + "123.8" + ], + [ + 1717524195, + "123.8" + ], + [ + 1717524210, + "123.8" + ], + [ + 1717524225, + "130.4" + ], + [ + 1717524240, + "130.4" + ], + [ + 1717524255, + "123.8" + ], + [ + 1717524270, + "123.8" + ], + [ + 1717524285, + "123.8" + ], + [ + 1717524300, + "123.8" + ], + [ + 1717524315, + "123.8" + ], + [ + 1717524330, + "123.8" + ], + [ + 1717524345, + "123.8" + ], + [ + 1717524360, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "128.6" + ], + [ + 1717524135, + "126.4" + ], + [ + 1717524150, + "126.4" + ], + [ + 1717524165, + "128.6" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "128.6" + ], + [ + 1717524225, + "129.03333333333333" + ], + [ + 1717524240, + "129.03333333333333" + ], + [ + 1717524255, + "128.6" + ], + [ + 1717524270, + "128.6" + ], + [ + 1717524285, + "128.6" + ], + [ + 1717524300, + "128.6" + ], + [ + 1717524315, + "128.6" + ], + [ + 1717524330, + "128.6" + ], + [ + 1717524345, + "128.6" + ], + [ + 1717524360, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524360, + "65.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "130.8" + ], + [ + 1717524135, + "130.8" + ], + [ + 1717524150, + "130.8" + ], + [ + 1717524165, + "130.8" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "130.8" + ], + [ + 1717524225, + "130.8" + ], + [ + 1717524240, + "130.8" + ], + [ + 1717524255, + "130.8" + ], + [ + 1717524270, + "130.8" + ], + [ + 1717524285, + "130.8" + ], + [ + 1717524300, + "130.8" + ], + [ + 1717524315, + "130.8" + ], + [ + 1717524330, + "130.8" + ], + [ + 1717524345, + "130.8" + ], + [ + 1717524360, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "607.7666666666667" + ], + [ + 1717524075, + "600.7333333333333" + ], + [ + 1717524090, + "598.5666666666667" + ], + [ + 1717524105, + "599.5333333333333" + ], + [ + 1717524120, + "601.7666666666667" + ], + [ + 1717524135, + "602.1333333333333" + ], + [ + 1717524150, + "600.4666666666667" + ], + [ + 1717524165, + "597.7" + ], + [ + 1717524180, + "588.7666666666667" + ], + [ + 1717524195, + "580.6333333333333" + ], + [ + 1717524210, + "577.7666666666667" + ], + [ + 1717524225, + "602.9666666666667" + ], + [ + 1717524240, + "626.5333333333333" + ], + [ + 1717524255, + "626.3333333333334" + ], + [ + 1717524270, + "634.4" + ], + [ + 1717524285, + "641.3333333333334" + ], + [ + 1717524300, + "640.3666666666667" + ], + [ + 1717524315, + "640.0333333333333" + ], + [ + 1717524330, + "641.4666666666667" + ], + [ + 1717524345, + "642.3" + ], + [ + 1717524360, + "644.2333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "482.4" + ], + [ + 1717524075, + "481.03333333333336" + ], + [ + 1717524090, + "483.93333333333334" + ], + [ + 1717524105, + "483.96666666666664" + ], + [ + 1717524120, + "482.43333333333334" + ], + [ + 1717524135, + "483.06666666666666" + ], + [ + 1717524150, + "483.6" + ], + [ + 1717524165, + "485.8666666666667" + ], + [ + 1717524180, + "486.73333333333335" + ], + [ + 1717524195, + "483.1333333333333" + ], + [ + 1717524210, + "481.26666666666665" + ], + [ + 1717524225, + "484.76666666666665" + ], + [ + 1717524240, + "487.6" + ], + [ + 1717524255, + "485.5" + ], + [ + 1717524270, + "483.5" + ], + [ + 1717524285, + "483.46666666666664" + ], + [ + 1717524300, + "486.1666666666667" + ], + [ + 1717524315, + "484.43333333333334" + ], + [ + 1717524330, + "480.96666666666664" + ], + [ + 1717524345, + "483.9" + ], + [ + 1717524360, + "486.93333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "475.26666666666665" + ], + [ + 1717524075, + "474.96666666666664" + ], + [ + 1717524090, + "475.5" + ], + [ + 1717524105, + "474.73333333333335" + ], + [ + 1717524120, + "472.53333333333336" + ], + [ + 1717524135, + "476.23333333333335" + ], + [ + 1717524150, + "476.1666666666667" + ], + [ + 1717524165, + "470.7" + ], + [ + 1717524180, + "473.4" + ], + [ + 1717524195, + "470.4" + ], + [ + 1717524210, + "464.8333333333333" + ], + [ + 1717524225, + "464.8333333333333" + ], + [ + 1717524240, + "470.5" + ], + [ + 1717524255, + "476.8" + ], + [ + 1717524270, + "478.43333333333334" + ], + [ + 1717524285, + "479.56666666666666" + ], + [ + 1717524300, + "479.06666666666666" + ], + [ + 1717524315, + "478.6666666666667" + ], + [ + 1717524330, + "478.46666666666664" + ], + [ + 1717524345, + "475.6" + ], + [ + 1717524360, + "475.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "427.7" + ], + [ + 1717524075, + "428.3" + ], + [ + 1717524090, + "426.56666666666666" + ], + [ + 1717524105, + "423.93333333333334" + ], + [ + 1717524120, + "425.3333333333333" + ], + [ + 1717524135, + "426.76666666666665" + ], + [ + 1717524150, + "426.43333333333334" + ], + [ + 1717524165, + "424.43333333333334" + ], + [ + 1717524180, + "421.9" + ], + [ + 1717524195, + "418" + ], + [ + 1717524210, + "413.6666666666667" + ], + [ + 1717524225, + "416.03333333333336" + ], + [ + 1717524240, + "416.3333333333333" + ], + [ + 1717524255, + "415.96666666666664" + ], + [ + 1717524270, + "417.8333333333333" + ], + [ + 1717524285, + "421.03333333333336" + ], + [ + 1717524300, + "424.7" + ], + [ + 1717524315, + "425.06666666666666" + ], + [ + 1717524330, + "422.23333333333335" + ], + [ + 1717524345, + "420.56666666666666" + ], + [ + 1717524360, + "421.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "147.9" + ], + [ + 1717524075, + "147.83333333333334" + ], + [ + 1717524090, + "147.83333333333334" + ], + [ + 1717524105, + "147.86666666666667" + ], + [ + 1717524120, + "147.96666666666667" + ], + [ + 1717524135, + "147.93333333333334" + ], + [ + 1717524150, + "147.9" + ], + [ + 1717524165, + "147.86666666666667" + ], + [ + 1717524180, + "147.83333333333334" + ], + [ + 1717524195, + "147.9" + ], + [ + 1717524210, + "148.03333333333333" + ], + [ + 1717524225, + "148.06666666666666" + ], + [ + 1717524240, + "147.96666666666667" + ], + [ + 1717524255, + "150.16666666666666" + ], + [ + 1717524270, + "150.26666666666668" + ], + [ + 1717524285, + "147.93333333333334" + ], + [ + 1717524300, + "147.9" + ], + [ + 1717524315, + "147.83333333333334" + ], + [ + 1717524330, + "147.86666666666667" + ], + [ + 1717524345, + "148" + ], + [ + 1717524360, + "147.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "309.23333333333335" + ], + [ + 1717524075, + "303.23333333333335" + ], + [ + 1717524090, + "303.1" + ], + [ + 1717524105, + "303.06666666666666" + ], + [ + 1717524120, + "304.96666666666664" + ], + [ + 1717524135, + "306.76666666666665" + ], + [ + 1717524150, + "306.96666666666664" + ], + [ + 1717524165, + "305.73333333333335" + ], + [ + 1717524180, + "303.43333333333334" + ], + [ + 1717524195, + "302.8666666666667" + ], + [ + 1717524210, + "304.56666666666666" + ], + [ + 1717524225, + "308.53333333333336" + ], + [ + 1717524240, + "309.96666666666664" + ], + [ + 1717524255, + "307.76666666666665" + ], + [ + 1717524270, + "306.53333333333336" + ], + [ + 1717524285, + "306.26666666666665" + ], + [ + 1717524300, + "307.9" + ], + [ + 1717524315, + "310.53333333333336" + ], + [ + 1717524330, + "311.3333333333333" + ], + [ + 1717524345, + "308.96666666666664" + ], + [ + 1717524360, + "309.06666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "532.9" + ], + [ + 1717524075, + "531.0666666666667" + ], + [ + 1717524090, + "519.3" + ], + [ + 1717524105, + "554.3333333333334" + ], + [ + 1717524120, + "553.3666666666667" + ], + [ + 1717524135, + "518.4333333333333" + ], + [ + 1717524150, + "530.6666666666666" + ], + [ + 1717524165, + "532.4666666666667" + ], + [ + 1717524180, + "521.7666666666667" + ], + [ + 1717524195, + "504.56666666666666" + ], + [ + 1717524210, + "498.06666666666666" + ], + [ + 1717524225, + "496.3666666666667" + ], + [ + 1717524240, + "509.3333333333333" + ], + [ + 1717524255, + "510.4" + ], + [ + 1717524270, + "498.53333333333336" + ], + [ + 1717524285, + "510.8333333333333" + ], + [ + 1717524300, + "510.5" + ], + [ + 1717524315, + "512.5" + ], + [ + 1717524330, + "516.1" + ], + [ + 1717524345, + "506.46666666666664" + ], + [ + 1717524360, + "517.7333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "162.4" + ], + [ + 1717524075, + "164.6" + ], + [ + 1717524090, + "166.8" + ], + [ + 1717524105, + "160.2" + ], + [ + 1717524120, + "157.56666666666666" + ], + [ + 1717524135, + "161.96666666666667" + ], + [ + 1717524150, + "161.96666666666667" + ], + [ + 1717524165, + "161.96666666666667" + ], + [ + 1717524180, + "168.56666666666666" + ], + [ + 1717524195, + "170.76666666666668" + ], + [ + 1717524210, + "173.4" + ], + [ + 1717524225, + "171.2" + ], + [ + 1717524240, + "166.36666666666667" + ], + [ + 1717524255, + "163.73333333333332" + ], + [ + 1717524270, + "165.93333333333334" + ], + [ + 1717524285, + "166.36666666666667" + ], + [ + 1717524300, + "161.96666666666667" + ], + [ + 1717524315, + "161.53333333333333" + ], + [ + 1717524330, + "163.73333333333332" + ], + [ + 1717524345, + "164.16666666666666" + ], + [ + 1717524360, + "161.96666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "260.2" + ], + [ + 1717524075, + "273.4" + ], + [ + 1717524090, + "277.8" + ], + [ + 1717524105, + "271.2" + ], + [ + 1717524120, + "277.8" + ], + [ + 1717524135, + "269" + ], + [ + 1717524150, + "255.8" + ], + [ + 1717524165, + "253.6" + ], + [ + 1717524180, + "266.8" + ], + [ + 1717524195, + "273.4" + ], + [ + 1717524210, + "264.6" + ], + [ + 1717524225, + "249.2" + ], + [ + 1717524240, + "253.6" + ], + [ + 1717524255, + "269" + ], + [ + 1717524270, + "269" + ], + [ + 1717524285, + "271.2" + ], + [ + 1717524300, + "284.4" + ], + [ + 1717524315, + "293.2" + ], + [ + 1717524330, + "291" + ], + [ + 1717524345, + "284.4" + ], + [ + 1717524360, + "291" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717524060, + "260.2" + ], + [ + 1717524075, + "273.4" + ], + [ + 1717524090, + "277.8" + ], + [ + 1717524105, + "271.2" + ], + [ + 1717524120, + "277.8" + ], + [ + 1717524135, + "269" + ], + [ + 1717524150, + "255.8" + ], + [ + 1717524165, + "253.6" + ], + [ + 1717524180, + "266.8" + ], + [ + 1717524195, + "273.4" + ], + [ + 1717524210, + "264.6" + ], + [ + 1717524225, + "249.2" + ], + [ + 1717524240, + "253.6" + ], + [ + 1717524255, + "269" + ], + [ + 1717524270, + "269" + ], + [ + 1717524285, + "271.2" + ], + [ + 1717524300, + "284.4" + ], + [ + 1717524315, + "293.2" + ], + [ + 1717524330, + "291" + ], + [ + 1717524345, + "284.4" + ], + [ + 1717524360, + "291" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717524060, + "130.8" + ], + [ + 1717524075, + "130.8" + ], + [ + 1717524090, + "130.8" + ], + [ + 1717524105, + "130.8" + ], + [ + 1717524120, + "130.8" + ], + [ + 1717524135, + "130.8" + ], + [ + 1717524150, + "130.8" + ], + [ + 1717524165, + "130.8" + ], + [ + 1717524180, + "130.8" + ], + [ + 1717524195, + "130.8" + ], + [ + 1717524210, + "130.8" + ], + [ + 1717524225, + "130.8" + ], + [ + 1717524240, + "130.8" + ], + [ + 1717524255, + "130.8" + ], + [ + 1717524270, + "130.8" + ], + [ + 1717524285, + "130.8" + ], + [ + 1717524300, + "130.8" + ], + [ + 1717524315, + "130.8" + ], + [ + 1717524330, + "130.8" + ], + [ + 1717524345, + "130.8" + ], + [ + 1717524360, + "130.8" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 11667, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 80, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.129709564, + "linesProcessedPerSecond": 0, + "queueTime": 2.726229989, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 6698, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 2585951, + "decompressedBytes": 10560325, + "decompressedLines": 14109, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1104651, + "headChunkLines": 1528, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 15637, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 143, + "totalChunksMatched": 105, + "totalLinesSent": 5346, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 85914171, + "execTime": 0.13577476, + "linesProcessedPerSecond": 115168, + "queueTime": 2.604323988, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 11664976, + "totalEntriesReturned": 53, + "totalLinesProcessed": 15637, + "totalPostFilterLines": 15637, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717524363 +} diff --git a/web/cypress/fixtures/flowmetrics/Owners.json b/web/cypress/fixtures/flowmetrics/Owners.json new file mode 100644 index 000000000..5a9f625e6 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/Owners.json @@ -0,0 +1,5190 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519455, + "40.06666666666667" + ], + [ + 1717519470, + "120.33333333333333" + ], + [ + 1717519485, + "96.36666666666666" + ], + [ + 1717519500, + "8.2" + ], + [ + 1717519515, + "81.4" + ], + [ + 1717519530, + "191.2" + ], + [ + 1717519545, + "109.8" + ], + [ + 1717519575, + "12.3" + ], + [ + 1717519590, + "14.5" + ], + [ + 1717519605, + "2.2" + ], + [ + 1717519620, + "103.2" + ], + [ + 1717519635, + "243" + ], + [ + 1717519650, + "261.6" + ], + [ + 1717519665, + "121.8" + ], + [ + 1717519680, + "5.7" + ], + [ + 1717519695, + "12.3" + ], + [ + 1717519710, + "8.8" + ], + [ + 1717519725, + "2.2" + ], + [ + 1717519740, + "5.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "202.2" + ], + [ + 1717519455, + "178.66666666666666" + ], + [ + 1717519470, + "180.86666666666667" + ], + [ + 1717519485, + "186.56666666666666" + ], + [ + 1717519500, + "188.76666666666668" + ], + [ + 1717519515, + "180.86666666666667" + ], + [ + 1717519530, + "183.06666666666666" + ], + [ + 1717519545, + "187.9" + ], + [ + 1717519560, + "183.5" + ], + [ + 1717519575, + "181.3" + ], + [ + 1717519590, + "182.16666666666666" + ], + [ + 1717519605, + "193.73333333333332" + ], + [ + 1717519620, + "195.5" + ], + [ + 1717519635, + "186.13333333333333" + ], + [ + 1717519650, + "185.7" + ], + [ + 1717519665, + "185.7" + ], + [ + 1717519680, + "187.9" + ], + [ + 1717519695, + "190.1" + ], + [ + 1717519710, + "190.53333333333333" + ], + [ + 1717519725, + "190.53333333333333" + ], + [ + 1717519740, + "188.33333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "130.8" + ], + [ + 1717519455, + "130.8" + ], + [ + 1717519470, + "130.8" + ], + [ + 1717519485, + "130.8" + ], + [ + 1717519500, + "130.8" + ], + [ + 1717519515, + "130.8" + ], + [ + 1717519530, + "130.8" + ], + [ + 1717519545, + "130.8" + ], + [ + 1717519560, + "130.8" + ], + [ + 1717519575, + "130.8" + ], + [ + 1717519590, + "130.8" + ], + [ + 1717519605, + "130.8" + ], + [ + 1717519620, + "130.8" + ], + [ + 1717519635, + "130.8" + ], + [ + 1717519650, + "130.8" + ], + [ + 1717519665, + "130.8" + ], + [ + 1717519680, + "130.8" + ], + [ + 1717519695, + "130.8" + ], + [ + 1717519710, + "130.8" + ], + [ + 1717519725, + "130.8" + ], + [ + 1717519740, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "4535.533333333334" + ], + [ + 1717519455, + "904.5333333333333" + ], + [ + 1717519470, + "908.9333333333333" + ], + [ + 1717519485, + "906.7333333333333" + ], + [ + 1717519500, + "906.7333333333333" + ], + [ + 1717519515, + "906.7333333333333" + ], + [ + 1717519530, + "906.7333333333333" + ], + [ + 1717519545, + "915.5333333333333" + ], + [ + 1717519560, + "911.1333333333333" + ], + [ + 1717519575, + "900.1333333333333" + ], + [ + 1717519590, + "900.1333333333333" + ], + [ + 1717519605, + "900.1333333333333" + ], + [ + 1717519620, + "904.5333333333333" + ], + [ + 1717519635, + "904.5333333333333" + ], + [ + 1717519650, + "900.1333333333333" + ], + [ + 1717519665, + "900.1333333333333" + ], + [ + 1717519680, + "900.1333333333333" + ], + [ + 1717519695, + "900.1333333333333" + ], + [ + 1717519710, + "900.1333333333333" + ], + [ + 1717519725, + "900.1333333333333" + ], + [ + 1717519740, + "900.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "4535.533333333334" + ], + [ + 1717519455, + "904.5333333333333" + ], + [ + 1717519470, + "908.9333333333333" + ], + [ + 1717519485, + "906.7333333333333" + ], + [ + 1717519500, + "906.7333333333333" + ], + [ + 1717519515, + "906.7333333333333" + ], + [ + 1717519530, + "906.7333333333333" + ], + [ + 1717519545, + "915.5333333333333" + ], + [ + 1717519560, + "911.1333333333333" + ], + [ + 1717519575, + "900.1333333333333" + ], + [ + 1717519590, + "900.1333333333333" + ], + [ + 1717519605, + "900.1333333333333" + ], + [ + 1717519620, + "908.9333333333333" + ], + [ + 1717519635, + "908.9333333333333" + ], + [ + 1717519650, + "900.1333333333333" + ], + [ + 1717519665, + "900.1333333333333" + ], + [ + 1717519680, + "900.1333333333333" + ], + [ + 1717519695, + "900.1333333333333" + ], + [ + 1717519710, + "900.1333333333333" + ], + [ + 1717519725, + "900.1333333333333" + ], + [ + 1717519740, + "900.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "464.8" + ], + [ + 1717519455, + "405.4" + ], + [ + 1717519470, + "407.6" + ], + [ + 1717519485, + "405.4" + ], + [ + 1717519500, + "418.6" + ], + [ + 1717519515, + "416.4" + ], + [ + 1717519530, + "427.4" + ], + [ + 1717519545, + "449.4" + ], + [ + 1717519560, + "438.4" + ], + [ + 1717519575, + "416.4" + ], + [ + 1717519590, + "414.2" + ], + [ + 1717519605, + "427.4" + ], + [ + 1717519620, + "420.8" + ], + [ + 1717519635, + "429.6" + ], + [ + 1717519650, + "425.2" + ], + [ + 1717519665, + "418.6" + ], + [ + 1717519680, + "431.8" + ], + [ + 1717519695, + "409.8" + ], + [ + 1717519710, + "407.6" + ], + [ + 1717519725, + "434" + ], + [ + 1717519740, + "449.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "464.8" + ], + [ + 1717519455, + "405.4" + ], + [ + 1717519470, + "407.6" + ], + [ + 1717519485, + "405.4" + ], + [ + 1717519500, + "418.6" + ], + [ + 1717519515, + "416.4" + ], + [ + 1717519530, + "427.4" + ], + [ + 1717519545, + "449.4" + ], + [ + 1717519560, + "438.4" + ], + [ + 1717519575, + "416.4" + ], + [ + 1717519590, + "414.2" + ], + [ + 1717519605, + "427.4" + ], + [ + 1717519620, + "420.8" + ], + [ + 1717519635, + "429.6" + ], + [ + 1717519650, + "425.2" + ], + [ + 1717519665, + "418.6" + ], + [ + 1717519680, + "431.8" + ], + [ + 1717519695, + "409.8" + ], + [ + 1717519710, + "407.6" + ], + [ + 1717519725, + "434" + ], + [ + 1717519740, + "449.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "164.13333333333333" + ], + [ + 1717519455, + "161.5" + ], + [ + 1717519470, + "161.5" + ], + [ + 1717519485, + "165.9" + ], + [ + 1717519500, + "165.9" + ], + [ + 1717519515, + "163.7" + ], + [ + 1717519530, + "163.7" + ], + [ + 1717519545, + "165.9" + ], + [ + 1717519560, + "165.9" + ], + [ + 1717519575, + "159.3" + ], + [ + 1717519590, + "158.86666666666667" + ], + [ + 1717519605, + "163.26666666666668" + ], + [ + 1717519620, + "163.26666666666668" + ], + [ + 1717519635, + "163.26666666666668" + ], + [ + 1717519650, + "163.7" + ], + [ + 1717519665, + "163.7" + ], + [ + 1717519680, + "161.5" + ], + [ + 1717519695, + "161.5" + ], + [ + 1717519710, + "161.5" + ], + [ + 1717519725, + "161.5" + ], + [ + 1717519740, + "161.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "628.6333333333333" + ], + [ + 1717519455, + "630.3" + ], + [ + 1717519470, + "631.3333333333334" + ], + [ + 1717519485, + "632.9" + ], + [ + 1717519500, + "630.2" + ], + [ + 1717519515, + "626.1666666666666" + ], + [ + 1717519530, + "629.2333333333333" + ], + [ + 1717519545, + "629.2333333333333" + ], + [ + 1717519560, + "627.2666666666667" + ], + [ + 1717519575, + "630.4" + ], + [ + 1717519590, + "637.5" + ], + [ + 1717519605, + "640.1666666666666" + ], + [ + 1717519620, + "611.5" + ], + [ + 1717519635, + "585.1" + ], + [ + 1717519650, + "588.3333333333334" + ], + [ + 1717519665, + "585.9666666666667" + ], + [ + 1717519680, + "583.6" + ], + [ + 1717519695, + "589.5333333333333" + ], + [ + 1717519710, + "590.1666666666666" + ], + [ + 1717519725, + "590.8666666666667" + ], + [ + 1717519740, + "588.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "479.6" + ], + [ + 1717519455, + "480.23333333333335" + ], + [ + 1717519470, + "480.1333333333333" + ], + [ + 1717519485, + "480.8666666666667" + ], + [ + 1717519500, + "480.73333333333335" + ], + [ + 1717519515, + "492.73333333333335" + ], + [ + 1717519530, + "482.1" + ], + [ + 1717519545, + "481.23333333333335" + ], + [ + 1717519560, + "492.56666666666666" + ], + [ + 1717519575, + "491.6666666666667" + ], + [ + 1717519590, + "492.1" + ], + [ + 1717519605, + "492.06666666666666" + ], + [ + 1717519620, + "490.3666666666667" + ], + [ + 1717519635, + "478.96666666666664" + ], + [ + 1717519650, + "467.46666666666664" + ], + [ + 1717519665, + "478.56666666666666" + ], + [ + 1717519680, + "479.26666666666665" + ], + [ + 1717519695, + "479.8333333333333" + ], + [ + 1717519710, + "491.3" + ], + [ + 1717519725, + "492.46666666666664" + ], + [ + 1717519740, + "482.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "470" + ], + [ + 1717519455, + "475.43333333333334" + ], + [ + 1717519470, + "473.7" + ], + [ + 1717519485, + "472.6" + ], + [ + 1717519500, + "472.8" + ], + [ + 1717519515, + "473.3" + ], + [ + 1717519530, + "476.23333333333335" + ], + [ + 1717519545, + "480.53333333333336" + ], + [ + 1717519560, + "478.26666666666665" + ], + [ + 1717519575, + "478.76666666666665" + ], + [ + 1717519590, + "480.9" + ], + [ + 1717519605, + "477.3" + ], + [ + 1717519620, + "477.9" + ], + [ + 1717519635, + "474.4" + ], + [ + 1717519650, + "470.8333333333333" + ], + [ + 1717519665, + "471.8333333333333" + ], + [ + 1717519680, + "469.06666666666666" + ], + [ + 1717519695, + "468.96666666666664" + ], + [ + 1717519710, + "471.96666666666664" + ], + [ + 1717519725, + "469.96666666666664" + ], + [ + 1717519740, + "466.9" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "400.7" + ], + [ + 1717519455, + "401.8666666666667" + ], + [ + 1717519470, + "407.26666666666665" + ], + [ + 1717519485, + "410.8666666666667" + ], + [ + 1717519500, + "412.1" + ], + [ + 1717519515, + "415.93333333333334" + ], + [ + 1717519530, + "413.23333333333335" + ], + [ + 1717519545, + "409.6" + ], + [ + 1717519560, + "410.2" + ], + [ + 1717519575, + "408.8666666666667" + ], + [ + 1717519590, + "410.1666666666667" + ], + [ + 1717519605, + "414.46666666666664" + ], + [ + 1717519620, + "409.96666666666664" + ], + [ + 1717519635, + "403.6666666666667" + ], + [ + 1717519650, + "407.46666666666664" + ], + [ + 1717519665, + "413.3666666666667" + ], + [ + 1717519680, + "412.23333333333335" + ], + [ + 1717519695, + "408.73333333333335" + ], + [ + 1717519710, + "409" + ], + [ + 1717519725, + "409.3333333333333" + ], + [ + 1717519740, + "408.53333333333336" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "147.36666666666667" + ], + [ + 1717519455, + "147.33333333333334" + ], + [ + 1717519470, + "147.26666666666668" + ], + [ + 1717519485, + "147.26666666666668" + ], + [ + 1717519500, + "147.33333333333334" + ], + [ + 1717519515, + "147.46666666666667" + ], + [ + 1717519530, + "147.33333333333334" + ], + [ + 1717519545, + "147.36666666666667" + ], + [ + 1717519560, + "147.4" + ], + [ + 1717519575, + "147.3" + ], + [ + 1717519590, + "147.33333333333334" + ], + [ + 1717519605, + "147.36666666666667" + ], + [ + 1717519620, + "147.46666666666667" + ], + [ + 1717519635, + "147.46666666666667" + ], + [ + 1717519650, + "147.4" + ], + [ + 1717519665, + "147.4" + ], + [ + 1717519680, + "147.36666666666667" + ], + [ + 1717519695, + "147.43333333333334" + ], + [ + 1717519710, + "147.43333333333334" + ], + [ + 1717519725, + "147.3" + ], + [ + 1717519740, + "147.33333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "304.03333333333336" + ], + [ + 1717519455, + "306.1666666666667" + ], + [ + 1717519470, + "306.6" + ], + [ + 1717519485, + "307" + ], + [ + 1717519500, + "309.23333333333335" + ], + [ + 1717519515, + "310.76666666666665" + ], + [ + 1717519530, + "308.6" + ], + [ + 1717519545, + "309.73333333333335" + ], + [ + 1717519560, + "309.43333333333334" + ], + [ + 1717519575, + "306.73333333333335" + ], + [ + 1717519590, + "307.26666666666665" + ], + [ + 1717519605, + "306.93333333333334" + ], + [ + 1717519620, + "307.03333333333336" + ], + [ + 1717519635, + "304.2" + ], + [ + 1717519650, + "300.46666666666664" + ], + [ + 1717519665, + "302.46666666666664" + ], + [ + 1717519680, + "301.73333333333335" + ], + [ + 1717519695, + "299.46666666666664" + ], + [ + 1717519710, + "302.06666666666666" + ], + [ + 1717519725, + "302.2" + ], + [ + 1717519740, + "299.9" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "489.46666666666664" + ], + [ + 1717519455, + "493.43333333333334" + ], + [ + 1717519470, + "491.7" + ], + [ + 1717519485, + "492.6333333333333" + ], + [ + 1717519500, + "494.1" + ], + [ + 1717519515, + "501.73333333333335" + ], + [ + 1717519530, + "509.8" + ], + [ + 1717519545, + "510.06666666666666" + ], + [ + 1717519560, + "507.23333333333335" + ], + [ + 1717519575, + "503.26666666666665" + ], + [ + 1717519590, + "506.9" + ], + [ + 1717519605, + "509.03333333333336" + ], + [ + 1717519620, + "504.46666666666664" + ], + [ + 1717519635, + "498.26666666666665" + ], + [ + 1717519650, + "497.8" + ], + [ + 1717519665, + "497.6333333333333" + ], + [ + 1717519680, + "498.5" + ], + [ + 1717519695, + "499.6333333333333" + ], + [ + 1717519710, + "500.1" + ], + [ + 1717519725, + "504.3333333333333" + ], + [ + 1717519740, + "504.3" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "258" + ], + [ + 1717519455, + "269" + ], + [ + 1717519470, + "262.4" + ], + [ + 1717519485, + "247" + ], + [ + 1717519500, + "255.8" + ], + [ + 1717519515, + "275.6" + ], + [ + 1717519530, + "269" + ], + [ + 1717519545, + "258" + ], + [ + 1717519560, + "260.2" + ], + [ + 1717519575, + "255.8" + ], + [ + 1717519590, + "264.6" + ], + [ + 1717519605, + "269" + ], + [ + 1717519620, + "275.6" + ], + [ + 1717519635, + "277.8" + ], + [ + 1717519650, + "255.8" + ], + [ + 1717519665, + "260.2" + ], + [ + 1717519680, + "260.2" + ], + [ + 1717519695, + "255.8" + ], + [ + 1717519710, + "269" + ], + [ + 1717519725, + "258" + ], + [ + 1717519740, + "236" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "258" + ], + [ + 1717519455, + "269" + ], + [ + 1717519470, + "262.4" + ], + [ + 1717519485, + "247" + ], + [ + 1717519500, + "255.8" + ], + [ + 1717519515, + "275.6" + ], + [ + 1717519530, + "269" + ], + [ + 1717519545, + "258" + ], + [ + 1717519560, + "260.2" + ], + [ + 1717519575, + "255.8" + ], + [ + 1717519590, + "264.6" + ], + [ + 1717519605, + "269" + ], + [ + 1717519620, + "275.6" + ], + [ + 1717519635, + "277.8" + ], + [ + 1717519650, + "255.8" + ], + [ + 1717519665, + "260.2" + ], + [ + 1717519680, + "260.2" + ], + [ + 1717519695, + "255.8" + ], + [ + 1717519710, + "269" + ], + [ + 1717519725, + "258" + ], + [ + 1717519740, + "236" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "130.8" + ], + [ + 1717519455, + "130.8" + ], + [ + 1717519470, + "130.8" + ], + [ + 1717519485, + "130.8" + ], + [ + 1717519500, + "130.8" + ], + [ + 1717519515, + "130.8" + ], + [ + 1717519530, + "130.8" + ], + [ + 1717519545, + "130.8" + ], + [ + 1717519560, + "130.8" + ], + [ + 1717519575, + "130.8" + ], + [ + 1717519590, + "130.8" + ], + [ + 1717519605, + "130.8" + ], + [ + 1717519620, + "130.8" + ], + [ + 1717519635, + "130.8" + ], + [ + 1717519650, + "130.8" + ], + [ + 1717519665, + "130.8" + ], + [ + 1717519680, + "130.8" + ], + [ + 1717519695, + "130.8" + ], + [ + 1717519710, + "130.8" + ], + [ + 1717519725, + "130.8" + ], + [ + 1717519740, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "130.8" + ], + [ + 1717519455, + "130.8" + ], + [ + 1717519470, + "130.8" + ], + [ + 1717519485, + "130.8" + ], + [ + 1717519500, + "130.8" + ], + [ + 1717519515, + "130.8" + ], + [ + 1717519530, + "130.8" + ], + [ + 1717519545, + "130.8" + ], + [ + 1717519560, + "130.8" + ], + [ + 1717519575, + "130.8" + ], + [ + 1717519590, + "130.8" + ], + [ + 1717519605, + "130.8" + ], + [ + 1717519620, + "130.8" + ], + [ + 1717519635, + "130.8" + ], + [ + 1717519650, + "130.8" + ], + [ + 1717519665, + "130.8" + ], + [ + 1717519680, + "130.8" + ], + [ + 1717519695, + "130.8" + ], + [ + 1717519710, + "130.8" + ], + [ + 1717519725, + "130.8" + ], + [ + 1717519740, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "123.46666666666667" + ], + [ + 1717519455, + "120.4" + ], + [ + 1717519470, + "117.76666666666667" + ], + [ + 1717519485, + "104.43333333333334" + ], + [ + 1717519500, + "132.83333333333334" + ], + [ + 1717519515, + "149.23333333333332" + ], + [ + 1717519530, + "118.63333333333334" + ], + [ + 1717519545, + "118.2" + ], + [ + 1717519560, + "123.03333333333333" + ], + [ + 1717519575, + "141.86666666666667" + ], + [ + 1717519590, + "141.43333333333334" + ], + [ + 1717519605, + "118.2" + ], + [ + 1717519620, + "121.83333333333333" + ], + [ + 1717519635, + "140.53333333333333" + ], + [ + 1717519650, + "139.96666666666667" + ], + [ + 1717519665, + "120.83333333333333" + ], + [ + 1717519680, + "118.63333333333334" + ], + [ + 1717519695, + "130.3" + ], + [ + 1717519710, + "127.23333333333333" + ], + [ + 1717519725, + "115.56666666666666" + ], + [ + 1717519740, + "123.16666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "407.6" + ], + [ + 1717519455, + "381.2" + ], + [ + 1717519470, + "363.6" + ], + [ + 1717519485, + "376.8" + ], + [ + 1717519500, + "392.2" + ], + [ + 1717519515, + "383.4" + ], + [ + 1717519530, + "405.4" + ], + [ + 1717519545, + "398.8" + ], + [ + 1717519560, + "374.6" + ], + [ + 1717519575, + "385.6" + ], + [ + 1717519590, + "387.8" + ], + [ + 1717519605, + "401" + ], + [ + 1717519620, + "416.4" + ], + [ + 1717519635, + "414.2" + ], + [ + 1717519650, + "407.6" + ], + [ + 1717519665, + "390" + ], + [ + 1717519680, + "392.2" + ], + [ + 1717519695, + "405.4" + ], + [ + 1717519710, + "401" + ], + [ + 1717519725, + "394.4" + ], + [ + 1717519740, + "398.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "407.6" + ], + [ + 1717519455, + "381.2" + ], + [ + 1717519470, + "363.6" + ], + [ + 1717519485, + "376.8" + ], + [ + 1717519500, + "392.2" + ], + [ + 1717519515, + "383.4" + ], + [ + 1717519530, + "405.4" + ], + [ + 1717519545, + "398.8" + ], + [ + 1717519560, + "374.6" + ], + [ + 1717519575, + "385.6" + ], + [ + 1717519590, + "387.8" + ], + [ + 1717519605, + "401" + ], + [ + 1717519620, + "416.4" + ], + [ + 1717519635, + "414.2" + ], + [ + 1717519650, + "407.6" + ], + [ + 1717519665, + "390" + ], + [ + 1717519680, + "392.2" + ], + [ + 1717519695, + "405.4" + ], + [ + 1717519710, + "401" + ], + [ + 1717519725, + "394.4" + ], + [ + 1717519740, + "398.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "130.8" + ], + [ + 1717519455, + "130.8" + ], + [ + 1717519470, + "130.8" + ], + [ + 1717519485, + "130.8" + ], + [ + 1717519500, + "130.8" + ], + [ + 1717519515, + "130.8" + ], + [ + 1717519530, + "130.8" + ], + [ + 1717519545, + "130.8" + ], + [ + 1717519560, + "130.8" + ], + [ + 1717519575, + "130.8" + ], + [ + 1717519590, + "130.8" + ], + [ + 1717519605, + "130.8" + ], + [ + 1717519620, + "130.8" + ], + [ + 1717519635, + "130.8" + ], + [ + 1717519650, + "130.8" + ], + [ + 1717519665, + "130.8" + ], + [ + 1717519680, + "130.8" + ], + [ + 1717519695, + "130.8" + ], + [ + 1717519710, + "130.8" + ], + [ + 1717519725, + "130.8" + ], + [ + 1717519740, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "359.2" + ], + [ + 1717519455, + "379" + ], + [ + 1717519470, + "372.4" + ], + [ + 1717519485, + "374.6" + ], + [ + 1717519500, + "385.6" + ], + [ + 1717519515, + "354.8" + ], + [ + 1717519530, + "346" + ], + [ + 1717519545, + "352.6" + ], + [ + 1717519560, + "361.4" + ], + [ + 1717519575, + "383.4" + ], + [ + 1717519590, + "394.4" + ], + [ + 1717519605, + "381.2" + ], + [ + 1717519620, + "390" + ], + [ + 1717519635, + "396.6" + ], + [ + 1717519650, + "392.2" + ], + [ + 1717519665, + "405.4" + ], + [ + 1717519680, + "383.4" + ], + [ + 1717519695, + "365.8" + ], + [ + 1717519710, + "365.8" + ], + [ + 1717519725, + "365.8" + ], + [ + 1717519740, + "372.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "359.2" + ], + [ + 1717519455, + "379" + ], + [ + 1717519470, + "372.4" + ], + [ + 1717519485, + "374.6" + ], + [ + 1717519500, + "385.6" + ], + [ + 1717519515, + "354.8" + ], + [ + 1717519530, + "346" + ], + [ + 1717519545, + "352.6" + ], + [ + 1717519560, + "361.4" + ], + [ + 1717519575, + "383.4" + ], + [ + 1717519590, + "394.4" + ], + [ + 1717519605, + "381.2" + ], + [ + 1717519620, + "390" + ], + [ + 1717519635, + "396.6" + ], + [ + 1717519650, + "392.2" + ], + [ + 1717519665, + "405.4" + ], + [ + 1717519680, + "383.4" + ], + [ + 1717519695, + "365.8" + ], + [ + 1717519710, + "365.8" + ], + [ + 1717519725, + "365.8" + ], + [ + 1717519740, + "372.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "144.33333333333334" + ], + [ + 1717519455, + "141.7" + ], + [ + 1717519470, + "148.96666666666667" + ], + [ + 1717519485, + "169.43333333333334" + ], + [ + 1717519500, + "180.86666666666667" + ], + [ + 1717519515, + "156.43333333333334" + ], + [ + 1717519530, + "131.13333333333333" + ], + [ + 1717519545, + "119.03333333333333" + ], + [ + 1717519560, + "148.86666666666667" + ], + [ + 1717519575, + "183.2" + ], + [ + 1717519590, + "157.76666666666668" + ], + [ + 1717519605, + "143.9" + ], + [ + 1717519620, + "146.53333333333333" + ], + [ + 1717519635, + "126.5" + ], + [ + 1717519650, + "142.13333333333333" + ], + [ + 1717519665, + "164.36666666666667" + ], + [ + 1717519680, + "164.36666666666667" + ], + [ + 1717519695, + "162.16666666666666" + ], + [ + 1717519710, + "159.96666666666667" + ], + [ + 1717519725, + "169.86666666666667" + ], + [ + 1717519740, + "153.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "70634.6" + ], + [ + 1717519455, + "54384.76666666667" + ], + [ + 1717519470, + "53801.166666666664" + ], + [ + 1717519485, + "55427" + ], + [ + 1717519500, + "55883.8" + ], + [ + 1717519515, + "54407.13333333333" + ], + [ + 1717519530, + "54625.13333333333" + ], + [ + 1717519545, + "54702.36666666667" + ], + [ + 1717519560, + "54085.96666666667" + ], + [ + 1717519575, + "53938.3" + ], + [ + 1717519590, + "55555.566666666666" + ], + [ + 1717519605, + "55778.13333333333" + ], + [ + 1717519620, + "54301.3" + ], + [ + 1717519635, + "54427.26666666667" + ], + [ + 1717519650, + "54834.566666666666" + ], + [ + 1717519665, + "54624.13333333333" + ], + [ + 1717519680, + "54417.76666666667" + ], + [ + 1717519695, + "54011.46666666667" + ], + [ + 1717519710, + "53880" + ], + [ + 1717519725, + "54388.03333333333" + ], + [ + 1717519740, + "54788.833333333336" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "20062.666666666668" + ], + [ + 1717519455, + "20050.8" + ], + [ + 1717519470, + "20129.2" + ], + [ + 1717519485, + "19754.366666666665" + ], + [ + 1717519500, + "20050.266666666666" + ], + [ + 1717519515, + "20175.166666666668" + ], + [ + 1717519530, + "19870.933333333334" + ], + [ + 1717519545, + "19700.933333333334" + ], + [ + 1717519560, + "19814.633333333335" + ], + [ + 1717519575, + "19852.7" + ], + [ + 1717519590, + "19654.533333333333" + ], + [ + 1717519605, + "19572.666666666668" + ], + [ + 1717519620, + "19820.233333333334" + ], + [ + 1717519635, + "20245.8" + ], + [ + 1717519650, + "20445.5" + ], + [ + 1717519665, + "20078.833333333332" + ], + [ + 1717519680, + "19797.033333333333" + ], + [ + 1717519695, + "19749.566666666666" + ], + [ + 1717519710, + "19430.733333333334" + ], + [ + 1717519725, + "19577.133333333335" + ], + [ + 1717519740, + "19802.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "50445.73333333333" + ], + [ + 1717519455, + "49032.53333333333" + ], + [ + 1717519470, + "47910.666666666664" + ], + [ + 1717519485, + "50058.6" + ], + [ + 1717519500, + "51157.46666666667" + ], + [ + 1717519515, + "53129.86666666667" + ], + [ + 1717519530, + "52625.86666666667" + ], + [ + 1717519545, + "49006.5" + ], + [ + 1717519560, + "48985.76666666667" + ], + [ + 1717519575, + "48977.3" + ], + [ + 1717519590, + "49154.066666666666" + ], + [ + 1717519605, + "48804.4" + ], + [ + 1717519620, + "49202.3" + ], + [ + 1717519635, + "51187.1" + ], + [ + 1717519650, + "51788.73333333333" + ], + [ + 1717519665, + "49751.166666666664" + ], + [ + 1717519680, + "49707.5" + ], + [ + 1717519695, + "49577.4" + ], + [ + 1717519710, + "48346.9" + ], + [ + 1717519725, + "48893.666666666664" + ], + [ + 1717519740, + "50159.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "44715.5" + ], + [ + 1717519455, + "43804.26666666667" + ], + [ + 1717519470, + "43536.566666666666" + ], + [ + 1717519485, + "44199.63333333333" + ], + [ + 1717519500, + "44913.9" + ], + [ + 1717519515, + "44819.76666666667" + ], + [ + 1717519530, + "44591.933333333334" + ], + [ + 1717519545, + "43882.6" + ], + [ + 1717519560, + "43313.666666666664" + ], + [ + 1717519575, + "43703.73333333333" + ], + [ + 1717519590, + "43809.26666666667" + ], + [ + 1717519605, + "43878.4" + ], + [ + 1717519620, + "44796.433333333334" + ], + [ + 1717519635, + "45657.46666666667" + ], + [ + 1717519650, + "45563" + ], + [ + 1717519665, + "44640.46666666667" + ], + [ + 1717519680, + "43876.96666666667" + ], + [ + 1717519695, + "43617.5" + ], + [ + 1717519710, + "43457.6" + ], + [ + 1717519725, + "43990.2" + ], + [ + 1717519740, + "44333.066666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "142.6" + ], + [ + 1717519455, + "35.2" + ], + [ + 1717519470, + "17.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "5915.533333333334" + ], + [ + 1717519455, + "5157.5" + ], + [ + 1717519470, + "4992.966666666666" + ], + [ + 1717519485, + "4962.6" + ], + [ + 1717519500, + "4957.8" + ], + [ + 1717519515, + "4996" + ], + [ + 1717519530, + "4974.933333333333" + ], + [ + 1717519545, + "4925.4" + ], + [ + 1717519560, + "4924.733333333334" + ], + [ + 1717519575, + "4816.9" + ], + [ + 1717519590, + "4682.933333333333" + ], + [ + 1717519605, + "4723.833333333333" + ], + [ + 1717519620, + "4774.6" + ], + [ + 1717519635, + "4896.733333333334" + ], + [ + 1717519650, + "4985.9" + ], + [ + 1717519665, + "4915.766666666666" + ], + [ + 1717519680, + "4828.233333333334" + ], + [ + 1717519695, + "4814.566666666667" + ], + [ + 1717519710, + "4809.466666666666" + ], + [ + 1717519725, + "4803.033333333334" + ], + [ + 1717519740, + "4802.733333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "21536.3" + ], + [ + 1717519455, + "22038.966666666667" + ], + [ + 1717519470, + "21123.1" + ], + [ + 1717519485, + "20425.4" + ], + [ + 1717519500, + "20791.7" + ], + [ + 1717519515, + "21647.9" + ], + [ + 1717519530, + "21649.633333333335" + ], + [ + 1717519545, + "20759.433333333334" + ], + [ + 1717519560, + "20354.066666666666" + ], + [ + 1717519575, + "20944.466666666667" + ], + [ + 1717519590, + "20992.533333333333" + ], + [ + 1717519605, + "20413.066666666666" + ], + [ + 1717519620, + "20629.066666666666" + ], + [ + 1717519635, + "21535.333333333332" + ], + [ + 1717519650, + "21690.133333333335" + ], + [ + 1717519665, + "20701.833333333332" + ], + [ + 1717519680, + "20468.033333333333" + ], + [ + 1717519695, + "21179.566666666666" + ], + [ + 1717519710, + "21651.633333333335" + ], + [ + 1717519725, + "21025" + ], + [ + 1717519740, + "20677.066666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "477.9" + ], + [ + 1717519455, + "26.4" + ], + [ + 1717519470, + "8.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "477.9" + ], + [ + 1717519455, + "26.4" + ], + [ + 1717519470, + "8.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "134.8" + ], + [ + 1717519455, + "123.8" + ], + [ + 1717519470, + "123.8" + ], + [ + 1717519485, + "123.8" + ], + [ + 1717519500, + "123.8" + ], + [ + 1717519515, + "123.8" + ], + [ + 1717519530, + "123.8" + ], + [ + 1717519545, + "123.8" + ], + [ + 1717519560, + "123.8" + ], + [ + 1717519575, + "123.8" + ], + [ + 1717519590, + "123.8" + ], + [ + 1717519605, + "123.8" + ], + [ + 1717519620, + "123.8" + ], + [ + 1717519635, + "123.8" + ], + [ + 1717519650, + "123.8" + ], + [ + 1717519665, + "123.8" + ], + [ + 1717519680, + "123.8" + ], + [ + 1717519695, + "123.8" + ], + [ + 1717519710, + "123.8" + ], + [ + 1717519725, + "123.8" + ], + [ + 1717519740, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "134.8" + ], + [ + 1717519455, + "123.8" + ], + [ + 1717519470, + "123.8" + ], + [ + 1717519485, + "123.8" + ], + [ + 1717519500, + "123.8" + ], + [ + 1717519515, + "123.8" + ], + [ + 1717519530, + "123.8" + ], + [ + 1717519545, + "123.8" + ], + [ + 1717519560, + "123.8" + ], + [ + 1717519575, + "123.8" + ], + [ + 1717519590, + "123.8" + ], + [ + 1717519605, + "123.8" + ], + [ + 1717519620, + "123.8" + ], + [ + 1717519635, + "123.8" + ], + [ + 1717519650, + "123.8" + ], + [ + 1717519665, + "123.8" + ], + [ + 1717519680, + "123.8" + ], + [ + 1717519695, + "123.8" + ], + [ + 1717519710, + "123.8" + ], + [ + 1717519725, + "123.8" + ], + [ + 1717519740, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "135.16666666666666" + ], + [ + 1717519455, + "135.16666666666666" + ], + [ + 1717519470, + "136.93333333333334" + ], + [ + 1717519485, + "139.13333333333333" + ], + [ + 1717519500, + "134.3" + ], + [ + 1717519515, + "134.3" + ], + [ + 1717519530, + "136.5" + ], + [ + 1717519545, + "138.7" + ], + [ + 1717519560, + "136.93333333333334" + ], + [ + 1717519575, + "132.53333333333333" + ], + [ + 1717519590, + "134.3" + ], + [ + 1717519605, + "136.5" + ], + [ + 1717519620, + "136.5" + ], + [ + 1717519635, + "136.5" + ], + [ + 1717519650, + "139.13333333333333" + ], + [ + 1717519665, + "138.7" + ], + [ + 1717519680, + "133.86666666666667" + ], + [ + 1717519695, + "132.1" + ], + [ + 1717519710, + "132.53333333333333" + ], + [ + 1717519725, + "134.73333333333332" + ], + [ + 1717519740, + "136.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "43.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "130.8" + ], + [ + 1717519455, + "130.8" + ], + [ + 1717519470, + "130.8" + ], + [ + 1717519485, + "130.8" + ], + [ + 1717519500, + "130.8" + ], + [ + 1717519515, + "130.8" + ], + [ + 1717519530, + "130.8" + ], + [ + 1717519545, + "130.8" + ], + [ + 1717519560, + "130.8" + ], + [ + 1717519575, + "130.8" + ], + [ + 1717519590, + "130.8" + ], + [ + 1717519605, + "130.8" + ], + [ + 1717519620, + "130.8" + ], + [ + 1717519635, + "130.8" + ], + [ + 1717519650, + "130.8" + ], + [ + 1717519665, + "130.8" + ], + [ + 1717519680, + "130.8" + ], + [ + 1717519695, + "130.8" + ], + [ + 1717519710, + "130.8" + ], + [ + 1717519725, + "130.8" + ], + [ + 1717519740, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "628.6333333333333" + ], + [ + 1717519455, + "630.3666666666667" + ], + [ + 1717519470, + "631.3333333333334" + ], + [ + 1717519485, + "630.5666666666667" + ], + [ + 1717519500, + "627.9" + ], + [ + 1717519515, + "628.3666666666667" + ], + [ + 1717519530, + "631.3" + ], + [ + 1717519545, + "631.5" + ], + [ + 1717519560, + "631.7666666666667" + ], + [ + 1717519575, + "632.6" + ], + [ + 1717519590, + "635.5666666666667" + ], + [ + 1717519605, + "638.2" + ], + [ + 1717519620, + "609.2333333333333" + ], + [ + 1717519635, + "584.9666666666667" + ], + [ + 1717519650, + "588.3666666666667" + ], + [ + 1717519665, + "585.9333333333333" + ], + [ + 1717519680, + "583.5" + ], + [ + 1717519695, + "587.2666666666667" + ], + [ + 1717519710, + "592.3" + ], + [ + 1717519725, + "593.1333333333333" + ], + [ + 1717519740, + "588.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "470.76666666666665" + ], + [ + 1717519455, + "473.53333333333336" + ], + [ + 1717519470, + "475.73333333333335" + ], + [ + 1717519485, + "474.46666666666664" + ], + [ + 1717519500, + "474.4" + ], + [ + 1717519515, + "477.5" + ], + [ + 1717519530, + "477.93333333333334" + ], + [ + 1717519545, + "474.6666666666667" + ], + [ + 1717519560, + "474.8" + ], + [ + 1717519575, + "474.1333333333333" + ], + [ + 1717519590, + "474.5" + ], + [ + 1717519605, + "472.2" + ], + [ + 1717519620, + "470.7" + ], + [ + 1717519635, + "472.6666666666667" + ], + [ + 1717519650, + "471.9" + ], + [ + 1717519665, + "474" + ], + [ + 1717519680, + "472.7" + ], + [ + 1717519695, + "471.26666666666665" + ], + [ + 1717519710, + "476.1" + ], + [ + 1717519725, + "474.8666666666667" + ], + [ + 1717519740, + "471.3333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "471.3666666666667" + ], + [ + 1717519455, + "476.1666666666667" + ], + [ + 1717519470, + "475.9" + ], + [ + 1717519485, + "473.46666666666664" + ], + [ + 1717519500, + "476.6" + ], + [ + 1717519515, + "477.2" + ], + [ + 1717519530, + "475.1" + ], + [ + 1717519545, + "475.8" + ], + [ + 1717519560, + "478.23333333333335" + ], + [ + 1717519575, + "476.6" + ], + [ + 1717519590, + "474.1333333333333" + ], + [ + 1717519605, + "475.6333333333333" + ], + [ + 1717519620, + "478.8333333333333" + ], + [ + 1717519635, + "470.96666666666664" + ], + [ + 1717519650, + "464.9" + ], + [ + 1717519665, + "468.26666666666665" + ], + [ + 1717519680, + "468.73333333333335" + ], + [ + 1717519695, + "468.23333333333335" + ], + [ + 1717519710, + "470.3666666666667" + ], + [ + 1717519725, + "470.6666666666667" + ], + [ + 1717519740, + "469.3666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "399.1" + ], + [ + 1717519455, + "397.1333333333333" + ], + [ + 1717519470, + "397.6333333333333" + ], + [ + 1717519485, + "402.6666666666667" + ], + [ + 1717519500, + "407.9" + ], + [ + 1717519515, + "405.6333333333333" + ], + [ + 1717519530, + "404.06666666666666" + ], + [ + 1717519545, + "405.93333333333334" + ], + [ + 1717519560, + "405.23333333333335" + ], + [ + 1717519575, + "405.3" + ], + [ + 1717519590, + "409.8333333333333" + ], + [ + 1717519605, + "410.9" + ], + [ + 1717519620, + "407.1333333333333" + ], + [ + 1717519635, + "406.3" + ], + [ + 1717519650, + "406.4" + ], + [ + 1717519665, + "405.26666666666665" + ], + [ + 1717519680, + "407.43333333333334" + ], + [ + 1717519695, + "407.8" + ], + [ + 1717519710, + "408.23333333333335" + ], + [ + 1717519725, + "408.3" + ], + [ + 1717519740, + "408.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "147.33333333333334" + ], + [ + 1717519455, + "147.5" + ], + [ + 1717519470, + "147.46666666666667" + ], + [ + 1717519485, + "149.43333333333334" + ], + [ + 1717519500, + "149.5" + ], + [ + 1717519515, + "149.53333333333333" + ], + [ + 1717519530, + "149.36666666666667" + ], + [ + 1717519545, + "147.3" + ], + [ + 1717519560, + "147.6" + ], + [ + 1717519575, + "147.43333333333334" + ], + [ + 1717519590, + "147.2" + ], + [ + 1717519605, + "147.26666666666668" + ], + [ + 1717519620, + "147.3" + ], + [ + 1717519635, + "147.33333333333334" + ], + [ + 1717519650, + "147.4" + ], + [ + 1717519665, + "147.36666666666667" + ], + [ + 1717519680, + "147.36666666666667" + ], + [ + 1717519695, + "147.3" + ], + [ + 1717519710, + "147.3" + ], + [ + 1717519725, + "147.2" + ], + [ + 1717519740, + "147.26666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "306.3" + ], + [ + 1717519455, + "308.73333333333335" + ], + [ + 1717519470, + "308.76666666666665" + ], + [ + 1717519485, + "306.8333333333333" + ], + [ + 1717519500, + "308.6333333333333" + ], + [ + 1717519515, + "308.5" + ], + [ + 1717519530, + "307.3666666666667" + ], + [ + 1717519545, + "307.4" + ], + [ + 1717519560, + "308.8" + ], + [ + 1717519575, + "311.1333333333333" + ], + [ + 1717519590, + "308.8" + ], + [ + 1717519605, + "307.06666666666666" + ], + [ + 1717519620, + "306.8" + ], + [ + 1717519635, + "303" + ], + [ + 1717519650, + "300.3333333333333" + ], + [ + 1717519665, + "299.8" + ], + [ + 1717519680, + "301.96666666666664" + ], + [ + 1717519695, + "301.9" + ], + [ + 1717519710, + "299.8333333333333" + ], + [ + 1717519725, + "300.06666666666666" + ], + [ + 1717519740, + "301.46666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "483.23333333333335" + ], + [ + 1717519455, + "486" + ], + [ + 1717519470, + "487.93333333333334" + ], + [ + 1717519485, + "489.46666666666664" + ], + [ + 1717519500, + "501.06666666666666" + ], + [ + 1717519515, + "500.9" + ], + [ + 1717519530, + "496.8" + ], + [ + 1717519545, + "515" + ], + [ + 1717519560, + "526.4" + ], + [ + 1717519575, + "514.2666666666667" + ], + [ + 1717519590, + "514.1" + ], + [ + 1717519605, + "525.2333333333333" + ], + [ + 1717519620, + "524.4333333333333" + ], + [ + 1717519635, + "520.7" + ], + [ + 1717519650, + "517.8666666666667" + ], + [ + 1717519665, + "507.6333333333333" + ], + [ + 1717519680, + "507.4" + ], + [ + 1717519695, + "518.3" + ], + [ + 1717519710, + "518.4666666666667" + ], + [ + 1717519725, + "521.6666666666666" + ], + [ + 1717519740, + "525.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "162.4" + ], + [ + 1717519455, + "164.6" + ], + [ + 1717519470, + "164.6" + ], + [ + 1717519485, + "164.6" + ], + [ + 1717519500, + "164.6" + ], + [ + 1717519515, + "164.6" + ], + [ + 1717519530, + "162.4" + ], + [ + 1717519545, + "160.2" + ], + [ + 1717519560, + "164.6" + ], + [ + 1717519575, + "166.8" + ], + [ + 1717519590, + "166.8" + ], + [ + 1717519605, + "178.36666666666667" + ], + [ + 1717519620, + "171.76666666666668" + ], + [ + 1717519635, + "160.2" + ], + [ + 1717519650, + "166.8" + ], + [ + 1717519665, + "171.2" + ], + [ + 1717519680, + "169" + ], + [ + 1717519695, + "164.6" + ], + [ + 1717519710, + "166.8" + ], + [ + 1717519725, + "166.8" + ], + [ + 1717519740, + "160.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "282.2" + ], + [ + 1717519455, + "295.4" + ], + [ + 1717519470, + "282.2" + ], + [ + 1717519485, + "269" + ], + [ + 1717519500, + "277.8" + ], + [ + 1717519515, + "284.4" + ], + [ + 1717519530, + "280" + ], + [ + 1717519545, + "282.2" + ], + [ + 1717519560, + "282.2" + ], + [ + 1717519575, + "269" + ], + [ + 1717519590, + "271.2" + ], + [ + 1717519605, + "277.8" + ], + [ + 1717519620, + "280" + ], + [ + 1717519635, + "302" + ], + [ + 1717519650, + "313" + ], + [ + 1717519665, + "308.6" + ], + [ + 1717519680, + "302" + ], + [ + 1717519695, + "284.4" + ], + [ + 1717519710, + "275.6" + ], + [ + 1717519725, + "277.8" + ], + [ + 1717519740, + "284.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717519440, + "282.2" + ], + [ + 1717519455, + "295.4" + ], + [ + 1717519470, + "282.2" + ], + [ + 1717519485, + "269" + ], + [ + 1717519500, + "277.8" + ], + [ + 1717519515, + "284.4" + ], + [ + 1717519530, + "280" + ], + [ + 1717519545, + "282.2" + ], + [ + 1717519560, + "282.2" + ], + [ + 1717519575, + "269" + ], + [ + 1717519590, + "271.2" + ], + [ + 1717519605, + "277.8" + ], + [ + 1717519620, + "280" + ], + [ + 1717519635, + "302" + ], + [ + 1717519650, + "313" + ], + [ + 1717519665, + "308.6" + ], + [ + 1717519680, + "302" + ], + [ + 1717519695, + "284.4" + ], + [ + 1717519710, + "275.6" + ], + [ + 1717519725, + "277.8" + ], + [ + 1717519740, + "284.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717519440, + "130.8" + ], + [ + 1717519455, + "130.8" + ], + [ + 1717519470, + "130.8" + ], + [ + 1717519485, + "130.8" + ], + [ + 1717519500, + "130.8" + ], + [ + 1717519515, + "130.8" + ], + [ + 1717519530, + "130.8" + ], + [ + 1717519545, + "130.8" + ], + [ + 1717519560, + "130.8" + ], + [ + 1717519575, + "130.8" + ], + [ + 1717519590, + "130.8" + ], + [ + 1717519605, + "130.8" + ], + [ + 1717519620, + "130.8" + ], + [ + 1717519635, + "130.8" + ], + [ + 1717519650, + "130.8" + ], + [ + 1717519665, + "130.8" + ], + [ + 1717519680, + "130.8" + ], + [ + 1717519695, + "130.8" + ], + [ + 1717519710, + "130.8" + ], + [ + 1717519725, + "130.8" + ], + [ + 1717519740, + "130.8" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 18513, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 80, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.118138153, + "linesProcessedPerSecond": 0, + "queueTime": 2.147335989, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 9167, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 2468354, + "decompressedBytes": 10467817, + "decompressedLines": 13973, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1184669, + "headChunkLines": 1662, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 15635, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 143, + "totalChunksMatched": 89, + "totalLinesSent": 5451, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 83883573, + "execTime": 0.138912609, + "linesProcessedPerSecond": 112552, + "queueTime": 2.472089988, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 11652486, + "totalEntriesReturned": 51, + "totalLinesProcessed": 15635, + "totalPostFilterLines": 15635, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717519752 +} diff --git a/web/cypress/fixtures/flowmetrics/cluster.json b/web/cypress/fixtures/flowmetrics/cluster.json new file mode 100644 index 000000000..b2e6fe353 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/cluster.json @@ -0,0 +1,284 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "K8S_ClusterName": "ad38ef0f-9b1a-4726-bec8-0d33cc2705b7" + }, + "values": [ + [ + 1717018455, + "1420577.1666666665" + ], + [ + 1717018470, + "8094927" + ], + [ + 1717018485, + "13609502.733333334" + ], + [ + 1717018500, + "11432935.500000002" + ], + [ + 1717018515, + "8320590.966666667" + ], + [ + 1717018530, + "7628518.300000001" + ], + [ + 1717018545, + "12671663.833333332" + ], + [ + 1717018560, + "11910932.366666665" + ], + [ + 1717018575, + "7070354.666666666" + ], + [ + 1717018590, + "6650378.366666666" + ], + [ + 1717018605, + "4751011.899999999" + ], + [ + 1717018620, + "4123859.0333333327" + ], + [ + 1717018635, + "4457885.566666666" + ], + [ + 1717018650, + "3750590.2" + ], + [ + 1717018665, + "3846644.0999999996" + ], + [ + 1717018680, + "4205515.233333333" + ], + [ + 1717018695, + "5485118.833333333" + ], + [ + 1717018710, + "5900340.066666666" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": false, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 8926, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 2480353, + "decompressedBytes": 9416872, + "decompressedLines": 15190, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1329356, + "headChunkLines": 2224, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 17414, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 11878683, + "totalChunksDownloaded": 18, + "totalChunksRef": 18 + }, + "totalBatches": 165, + "totalChunksMatched": 153, + "totalLinesSent": 7735, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 21173503, + "execTime": 0.507531879, + "linesProcessedPerSecond": 34311, + "queueTime": 12.577255988, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 10746228, + "totalEntriesReturned": 1, + "totalLinesProcessed": 17414, + "totalPostFilterLines": 17414, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 10864, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 34156160, + "decompressedBytes": 148105231, + "decompressedLines": 191186, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 37056224, + "headChunkLines": 49341, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 240527, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 6567639, + "totalChunksDownloaded": 19, + "totalChunksRef": 19 + }, + "totalBatches": 414, + "totalChunksMatched": 5608, + "totalLinesSent": 141242, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 348901913, + "execTime": 0.530697735, + "linesProcessedPerSecond": 453227, + "queueTime": 10.25607699, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 185161455, + "totalEntriesReturned": 1, + "totalLinesProcessed": 240527, + "totalPostFilterLines": 240527, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717018711 +} diff --git a/web/cypress/fixtures/flowmetrics/containing_drops.json b/web/cypress/fixtures/flowmetrics/containing_drops.json new file mode 100644 index 000000000..6ef6899ba --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/containing_drops.json @@ -0,0 +1,359 @@ +{ + "status": "success", + "data": { + "resultType": "streams", + "result": [ + { + "stream": { + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015489999872", + "{\"DstAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965015490,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"SrcPort\":56382,\"TimeReceived\":1696965016,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379,\"Proto\":6,\"Etype\":34525,\"Interface\":\"lo\",\"PktDropBytes\":32,\"IfDirection\":0,\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015490}" + ], + [ + "1696965015363000064", + "{\"PktDropPackets\":1,\"Etype\":34525,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":40764,\"SrcAddr\":\"::1\",\"Proto\":6,\"Flags\":16,\"TimeFlowStartMs\":1696965015363,\"TimeReceived\":1696965016,\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.14.70\",\"DstAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"DstPort\":2379,\"TimeFlowEndMs\":1696965015363}" + ], + [ + "1696965015363000064", + "{\"SrcPort\":8083,\"DstAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":34525,\"SrcAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965016,\"IfDirection\":0,\"TimeFlowStartMs\":1696965015363,\"Proto\":6,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965015363,\"PktDropLatestFlags\":16,\"DstPort\":33636,\"Flags\":16,\"Interface\":\"lo\",\"PktDropPackets\":1,\"AgentIP\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965015363000064", + "{\"PktDropPackets\":1,\"SrcAddr\":\"::1\",\"TimeFlowEndMs\":1696965015363,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"lo\",\"Flags\":16,\"TimeFlowStartMs\":1696965015363,\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcPort\":2379,\"Etype\":34525,\"DstAddr\":\"::1\",\"IfDirection\":0,\"AgentIP\":\"10.0.14.70\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"DstPort\":50900,\"TimeReceived\":1696965016,\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965015363000064", + "{\"DstPort\":2379,\"Interface\":\"lo\",\"TimeReceived\":1696965016,\"AgentIP\":\"10.0.14.70\",\"IfDirection\":0,\"DstAddr\":\"127.0.0.1\",\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965015363,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"127.0.0.1\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"PktDropBytes\":32,\"SrcPort\":44372,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowStartMs\":1696965015363,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965015361999872", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":34525,\"TimeReceived\":1696965016,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":56450,\"Interface\":\"lo\",\"DstPort\":2379,\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965015362,\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965015362,\"Proto\":6,\"Flags\":16,\"PktDropPackets\":1,\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.14.70\",\"SrcAddr\":\"::1\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965015361999872", + "{\"DstPort\":6443,\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965015362,\"TimeFlowEndMs\":1696965015362,\"DstAddr\":\"::1\",\"PktDropLatestFlags\":16,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":37168,\"Interface\":\"lo\",\"PktDropPackets\":1,\"IfDirection\":0,\"TimeReceived\":1696965016,\"Proto\":6,\"Etype\":34525,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"AgentIP\":\"10.0.14.70\"}" + ], + [ + "1696965015361999872", + "{\"Etype\":34525,\"DstPort\":2379,\"IfDirection\":0,\"TimeFlowEndMs\":1696965015362,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"Interface\":\"lo\",\"TimeReceived\":1696965016,\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":58466,\"SrcAddr\":\"::1\",\"TimeFlowStartMs\":1696965015362,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"PktDropLatestFlags\":16,\"DstAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.14.70\",\"Proto\":6}" + ], + [ + "1696965015361999872", + "{\"TimeReceived\":1696965016,\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"::1\",\"PktDropPackets\":1,\"DstPort\":2379,\"Proto\":6,\"TimeFlowStartMs\":1696965015362,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"lo\",\"AgentIP\":\"10.0.14.70\",\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965015362,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"Etype\":34525,\"SrcPort\":50750,\"PktDropLatestFlags\":16}" + ], + [ + "1696965015361999872", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":44374,\"DstAddr\":\"127.0.0.1\",\"PktDropPackets\":1,\"Etype\":2048,\"TimeFlowStartMs\":1696965015362,\"TimeFlowEndMs\":1696965015362,\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"Flags\":16,\"AgentIP\":\"10.0.14.70\",\"SrcAddr\":\"127.0.0.1\",\"IfDirection\":0,\"Interface\":\"lo\",\"Proto\":6,\"TimeReceived\":1696965016,\"DstPort\":2379,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965015099000064", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965015099,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965015099,\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":42092,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":2379}" + ], + [ + "1696965015099000064", + "{\"TimeFlowStartMs\":1696965015099,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":54416,\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"TimeReceived\":1696965015,\"Proto\":6,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965015099,\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965015099000064", + "{\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015099,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965015099,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcPort\":54968,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965015099000064", + "{\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965015099,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"DstPort\":55110,\"SrcPort\":2379,\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965015099,\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965015875000064", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965015875,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":47558,\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"AgentIP\":\"10.0.14.70\",\"DstMac\":\"00:00:00:00:00:00\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965015875,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeReceived\":1696965016,\"Proto\":6,\"Interface\":\"lo\",\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379}" + ], + [ + "1696965015875000064", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"SrcPort\":2379,\"PktDropPackets\":1,\"DstAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015875,\"Proto\":6,\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"DstK8S_HostIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965015875,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.14.70\",\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"PktDropLatestFlags\":16,\"TimeReceived\":1696965016,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":47550}" + ], + [ + "1696965015875000064", + "{\"DstAddr\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Interface\":\"lo\",\"SrcPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965015875,\"Flags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965015875,\"Etype\":2048,\"TimeReceived\":1696965016,\"AgentIP\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"DstPort\":47630,\"PktDropBytes\":32}" + ], + [ + "1696965015875000064", + "{\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.14.70\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"DstK8S_HostIP\":\"10.0.14.70\",\"DstPort\":52706,\"Proto\":6,\"TimeReceived\":1696965016,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.14.70\",\"PktDropBytes\":32,\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965015875,\"TimeFlowEndMs\":1696965015875,\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965015875000064", + "{\"TimeFlowStartMs\":1696965015875,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015875,\"Interface\":\"lo\",\"TimeReceived\":1696965016,\"DstK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.14.70\",\"DstPort\":2379,\"PktDropLatestFlags\":16,\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcPort\":47796,\"DstMac\":\"00:00:00:00:00:00\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropBytes\":32,\"DstAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\"}" + ], + [ + "1696965015875000064", + "{\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965016,\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965015875,\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015875,\"IfDirection\":0,\"SrcPort\":2379,\"PktDropBytes\":32,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstAddr\":\"10.0.14.70\",\"Etype\":2048,\"Proto\":6,\"Interface\":\"lo\",\"AgentIP\":\"10.0.14.70\",\"DstPort\":47524,\"Flags\":16}" + ], + [ + "1696965015875000064", + "{\"TimeFlowStartMs\":1696965015875,\"DstAddr\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965016,\"AgentIP\":\"10.0.14.70\",\"DstPort\":52674,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.14.70\",\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"PktDropPackets\":1,\"Flags\":16,\"SrcPort\":2379,\"DstMac\":\"00:00:00:00:00:00\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015875,\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965015875000064", + "{\"SrcAddr\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965015875,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"IfDirection\":0,\"SrcPort\":47564,\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965016,\"Flags\":16,\"Interface\":\"lo\",\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"TimeFlowEndMs\":1696965015875,\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965015875000064", + "{\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965016,\"AgentIP\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"PktDropPackets\":1,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965015875,\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":52622,\"TimeFlowStartMs\":1696965015875,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.14.70\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"IfDirection\":0,\"Interface\":\"lo\",\"SrcPort\":2379}" + ], + [ + "1696965015363000064", + "{\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015363,\"DstPort\":2379,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":47510,\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"PktDropPackets\":1,\"AgentIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965015363,\"SrcMac\":\"00:00:00:00:00:00\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965016,\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965015363000064", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"10.0.14.70\",\"TimeReceived\":1696965016,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965015363,\"DstAddr\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":2379,\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropPackets\":1,\"IfDirection\":0,\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"TimeFlowEndMs\":1696965015363,\"DstPort\":34978,\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.14.70\"}" + ], + [ + "1696965015363000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"00:00:00:00:00:00\",\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965015363,\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"AgentIP\":\"10.0.14.70\",\"PktDropBytes\":32,\"SrcPort\":59928,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965016,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"TimeFlowEndMs\":1696965015363,\"DstPort\":2379,\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"Proto\":6}" + ], + [ + "1696965015363000064", + "{\"DstK8S_HostIP\":\"10.0.14.70\",\"DstPort\":36452,\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015363,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":2379,\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestFlags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"IfDirection\":0,\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965015363,\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"Etype\":2048,\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965016,\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.14.70\"}" + ], + [ + "1696965015363000064", + "{\"AgentIP\":\"10.0.14.70\",\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015363,\"PktDropBytes\":32,\"TimeReceived\":1696965016,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"TimeFlowStartMs\":1696965015363,\"Proto\":6,\"Flags\":16,\"Interface\":\"lo\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.14.70\",\"SrcPort\":47612}" + ], + [ + "1696965015361999872", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"lo\",\"SrcPort\":2379,\"DstAddr\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015362,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965015362,\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"DstK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"IfDirection\":0,\"AgentIP\":\"10.0.14.70\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"10.0.14.70\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"TimeReceived\":1696965016,\"DstPort\":47564}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-oauth-apiserver", + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015363000064", + "{\"SrcK8S_Name\":\"apiserver-7c9977dbbc-6v6fj\",\"DstMac\":\"1A:50:2D:3E:A4:55\",\"PktDropBytes\":32,\"TimeReceived\":1696965016,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.14.70\",\"AgentIP\":\"10.0.14.70\",\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965015363,\"Interface\":\"ovn-k8s-mp0\",\"Etype\":2048,\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":45080,\"SrcK8S_OwnerType\":\"Deployment\",\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"0A:58:0A:80:00:01\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcAddr\":\"10.128.0.48\",\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015363,\"DstAddr\":\"10.0.14.70\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965016032999936", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965016033,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestFlags\":16,\"DstPort\":2379,\"DstAddr\":\"10.0.14.70\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965016033,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"PktDropPackets\":1,\"AgentIP\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":50406,\"TimeReceived\":1696965016,\"PktDropBytes\":32,\"SrcAddr\":\"10.0.89.254\"}" + ], + [ + "1696965016032999936", + "{\"Flags\":16,\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965016033,\"PktDropLatestFlags\":16,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965016,\"PktDropBytes\":32,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"AgentIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965016033,\"DstAddr\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"DstPort\":2379,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropPackets\":1,\"SrcPort\":52280,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048}" + ], + [ + "1696965015955000064", + "{\"TimeReceived\":1696965016,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":54176,\"DstMac\":\"02:29:9F:B8:88:C5\",\"Bytes\":66,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Packets\":1,\"TimeFlowStartMs\":1696965015948,\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965015955,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_RESET\",\"Proto\":6,\"PktDropBytes\":20,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":2380,\"PktDropLatestFlags\":4,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048}" + ], + [ + "1696965015521999872", + "{\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965015522,\"SrcPort\":47142,\"TimeFlowStartMs\":1696965015522,\"PktDropPackets\":1,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965016,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.0.89.254\",\"DstAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"br-ex\",\"Proto\":6,\"AgentIP\":\"10.0.14.70\",\"DstPort\":2379,\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\"}" + ], + [ + "1696965015520999936", + "{\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"DstK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965015521,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"PktDropBytes\":32,\"Interface\":\"br-ex\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965015521,\"DstPort\":33472,\"IfDirection\":0,\"PktDropLatestFlags\":16,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstAddr\":\"10.0.14.70\",\"Proto\":6,\"SrcPort\":2379,\"TimeReceived\":1696965016,\"AgentIP\":\"10.0.14.70\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965016123000064", + "{\"DstAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":2379,\"Etype\":2048,\"AgentIP\":\"10.0.14.70\",\"Flags\":16,\"TimeReceived\":1696965016,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965016123,\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965016123,\"SrcAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"DstMac\":\"02:29:9F:B8:88:C5\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Interface\":\"br-ex\",\"DstPort\":36980,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965016123000064", + "{\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"TimeFlowEndMs\":1696965016123,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"TimeFlowStartMs\":1696965016123,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"DstAddr\":\"10.0.14.70\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":60900,\"AgentIP\":\"10.0.14.70\",\"TimeReceived\":1696965016,\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"IfDirection\":0,\"DstMac\":\"02:29:9F:B8:88:C5\"}" + ], + [ + "1696965016123000064", + "{\"SrcMac\":\"02:E7:EA:46:6A:33\",\"Interface\":\"br-ex\",\"TimeReceived\":1696965016,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965016123,\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.14.70\",\"Etype\":2048,\"SrcPort\":2379,\"DstPort\":59934,\"Proto\":6,\"PktDropPackets\":1,\"AgentIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965016123,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965015747000064", + "{\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965016,\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965015747,\"DstMac\":\"02:29:9F:B8:88:C5\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.14.70\",\"SrcPort\":2380,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_NO_SOCKET\",\"TimeFlowStartMs\":1696965015747,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"PktDropLatestFlags\":512,\"Interface\":\"br-ex\",\"DstPort\":58442,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.14.70\",\"Flags\":512}" + ], + [ + "1696965015612000000", + "{\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcPort\":2379,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"PktDropPackets\":1,\"Proto\":6,\"DstAddr\":\"10.0.14.70\",\"DstPort\":51310,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965015612,\"TimeFlowStartMs\":1696965015612,\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965016,\"SrcAddr\":\"10.0.60.65\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965015612000000", + "{\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965015612,\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":2379,\"DstAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"TimeReceived\":1696965016,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":59862,\"TimeFlowEndMs\":1696965015612,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.14.70\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965015612000000", + "{\"TimeFlowEndMs\":1696965015612,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.14.70\",\"PktDropLatestFlags\":16,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965015612,\"Flags\":16,\"PktDropPackets\":1,\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.14.70\",\"TimeReceived\":1696965016,\"SrcAddr\":\"10.0.60.65\",\"DstPort\":59758,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"PktDropBytes\":32,\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"AgentIP\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\"}" + ], + [ + "1696965015611000064", + "{\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.14.70\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"Etype\":2048,\"PktDropPackets\":1,\"TimeReceived\":1696965016,\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965015611,\"Proto\":6,\"DstPort\":51002,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"SrcPort\":2379,\"TimeFlowStartMs\":1696965015611,\"DstAddr\":\"10.0.14.70\"}" + ], + [ + "1696965015099000064", + "{\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965016,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965015099,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"AgentIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.60.65\",\"SrcPort\":34342,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965015099,\"PktDropBytes\":32,\"IfDirection\":0,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.14.70\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Proto\":6}" + ], + [ + "1696965015099000064", + "{\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropPackets\":1,\"PktDropBytes\":32,\"TimeFlowStartMs\":1696965015099,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965015099,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965016,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.14.70\",\"DstPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":60896,\"IfDirection\":0,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.14.70\"}" + ], + [ + "1696965015099000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstAddr\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015099,\"IfDirection\":0,\"TimeFlowStartMs\":1696965015099,\"SrcPort\":2379,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"Proto\":6,\"PktDropBytes\":32,\"TimeReceived\":1696965016,\"DstPort\":40508,\"Etype\":2048}" + ], + [ + "1696965015099000064", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"br-ex\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965016,\"TimeFlowStartMs\":1696965015099,\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.0.60.65\",\"SrcPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"DstPort\":59832,\"TimeFlowEndMs\":1696965015099,\"Proto\":6,\"DstMac\":\"02:29:9F:B8:88:C5\",\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"Etype\":2048,\"DstAddr\":\"10.0.14.70\"}" + ], + [ + "1696965015099000064", + "{\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.14.70\",\"DstPort\":2379,\"IfDirection\":0,\"TimeFlowStartMs\":1696965015099,\"PktDropBytes\":32,\"DstMac\":\"02:29:9F:B8:88:C5\",\"SrcPort\":60950,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965016,\"TimeFlowEndMs\":1696965015099,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"Interface\":\"br-ex\",\"Etype\":2048,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-oauth-apiserver", + "DstK8S_OwnerName": "apiserver", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015547000064", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965015547,\"DstMac\":\"0A:58:0A:80:00:30\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"AgentIP\":\"10.0.14.70\",\"SrcAddr\":\"10.128.2.16\",\"Proto\":6,\"DstPort\":8443,\"DstAddr\":\"10.128.0.48\",\"Flags\":16,\"Interface\":\"ens5\",\"DstK8S_OwnerType\":\"Deployment\",\"PktDropPackets\":1,\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965015547,\"SrcK8S_Name\":\"prometheus-k8s-0\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcPort\":58584,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965016,\"SrcMac\":\"0A:58:0A:80:00:01\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_Name\":\"apiserver-7c9977dbbc-6v6fj\",\"IfDirection\":0}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-machine-api", + "DstK8S_OwnerName": "machine-api-controllers", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "prometheus-k8s", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015428999936", + "{\"SrcMac\":\"0A:58:0A:80:00:01\",\"DstAddr\":\"10.128.0.12\",\"DstK8S_OwnerType\":\"Deployment\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.131.0.16\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965015429,\"DstMac\":\"0A:58:0A:80:00:0C\",\"PktDropPackets\":1,\"AgentIP\":\"10.0.14.70\",\"SrcK8S_Name\":\"prometheus-k8s-1\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"DstPort\":8444,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"TimeFlowStartMs\":1696965015429,\"TimeReceived\":1696965016,\"Etype\":2048,\"DstK8S_Name\":\"machine-api-controllers-79b5d795d6-rlk4s\",\"SrcPort\":40384,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\"}" + ] + ] + } + ], + "stats": { + "summary": { + "bytesProcessedPerSecond": 209186886, + "linesProcessedPerSecond": 268123, + "totalBytesProcessed": 9281113, + "totalLinesProcessed": 11896, + "execTime": 0.044367566, + "queueTime": 0.229026803, + "subqueries": 1, + "totalEntriesReturned": 50 + }, + "querier": { + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + }, + "ingester": { + "totalReached": 16, + "totalChunksMatched": 702, + "totalBatches": 16, + "totalLinesSent": 626, + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 3357613, + "headChunkLines": 4478, + "decompressedBytes": 5923500, + "decompressedLines": 7418, + "compressedBytes": 1149482, + "totalDuplicates": 0 + } + } + } + } + } +} diff --git a/web/cypress/fixtures/flowmetrics/fully_dropped.json b/web/cypress/fixtures/flowmetrics/fully_dropped.json new file mode 100644 index 000000000..056607363 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/fully_dropped.json @@ -0,0 +1,67 @@ +{ + "status": "success", + "data": { + "resultType": "streams", + "result": [ + { + "stream": { + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015489999872", + "{\"DstAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965015490,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"SrcPort\":56382,\"TimeReceived\":1696965016,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379,\"Proto\":6,\"Etype\":34525,\"Interface\":\"lo\",\"PktDropBytes\":32,\"IfDirection\":0,\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015490}" + ] + ] + } + ], + "stats": { + "summary": { + "bytesProcessedPerSecond": 0, + "linesProcessedPerSecond": 0, + "totalBytesProcessed": 0, + "totalLinesProcessed": 0, + "execTime": 0.76474218, + "queueTime": 16.713512855, + "subqueries": 61, + "totalEntriesReturned": 0 + }, + "querier": { + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + }, + "ingester": { + "totalReached": 976, + "totalChunksMatched": 0, + "totalBatches": 0, + "totalLinesSent": 0, + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + } + } + } +} diff --git a/web/cypress/fixtures/flowmetrics/hosts.json b/web/cypress/fixtures/flowmetrics/hosts.json new file mode 100644 index 000000000..d79ad9f14 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/hosts.json @@ -0,0 +1,5254 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "110.5" + ], + [ + 1717522155, + "109.2" + ], + [ + 1717522170, + "6.6" + ], + [ + 1717522185, + "10.1" + ], + [ + 1717522200, + "65.3" + ], + [ + 1717522215, + "206" + ], + [ + 1717522230, + "167.2" + ], + [ + 1717522245, + "80.8" + ], + [ + 1717522260, + "117.4" + ], + [ + 1717522275, + "57.4" + ], + [ + 1717522290, + "114.8" + ], + [ + 1717522305, + "112.6" + ], + [ + 1717522320, + "14.833333333333334" + ], + [ + 1717522335, + "22.6" + ], + [ + 1717522380, + "36.46666666666667" + ], + [ + 1717522395, + "81.5" + ], + [ + 1717522410, + "50.733333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "195.06666666666666" + ], + [ + 1717522155, + "185.83333333333334" + ], + [ + 1717522170, + "176.03333333333333" + ], + [ + 1717522185, + "174.7" + ], + [ + 1717522200, + "179.53333333333333" + ], + [ + 1717522215, + "179.53333333333333" + ], + [ + 1717522230, + "170.3" + ], + [ + 1717522245, + "174.26666666666668" + ], + [ + 1717522260, + "181.73333333333332" + ], + [ + 1717522275, + "187.43333333333334" + ], + [ + 1717522290, + "185.23333333333332" + ], + [ + 1717522305, + "184.36666666666667" + ], + [ + 1717522320, + "179.53333333333333" + ], + [ + 1717522335, + "170.73333333333332" + ], + [ + 1717522350, + "177.33333333333334" + ], + [ + 1717522365, + "183.93333333333334" + ], + [ + 1717522380, + "177.33333333333334" + ], + [ + 1717522395, + "172.93333333333334" + ], + [ + 1717522410, + "179.53333333333333" + ], + [ + 1717522425, + "193.4" + ], + [ + 1717522440, + "192.96666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "130.8" + ], + [ + 1717522155, + "130.8" + ], + [ + 1717522170, + "130.8" + ], + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "456.6666666666667" + ], + [ + 1717522155, + "456.6666666666667" + ], + [ + 1717522170, + "456.6666666666667" + ], + [ + 1717522185, + "456.6666666666667" + ], + [ + 1717522200, + "456.6666666666667" + ], + [ + 1717522215, + "461.06666666666666" + ], + [ + 1717522230, + "461.06666666666666" + ], + [ + 1717522245, + "452.26666666666665" + ], + [ + 1717522260, + "452.26666666666665" + ], + [ + 1717522275, + "454.46666666666664" + ], + [ + 1717522290, + "454.46666666666664" + ], + [ + 1717522305, + "454.46666666666664" + ], + [ + 1717522320, + "454.46666666666664" + ], + [ + 1717522335, + "454.46666666666664" + ], + [ + 1717522350, + "1094.1" + ], + [ + 1717522365, + "1094.1" + ], + [ + 1717522380, + "458.8666666666667" + ], + [ + 1717522395, + "1017.2333333333333" + ], + [ + 1717522410, + "1015.0333333333333" + ], + [ + 1717522425, + "2291.0333333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "456.6666666666667" + ], + [ + 1717522155, + "456.6666666666667" + ], + [ + 1717522170, + "456.6666666666667" + ], + [ + 1717522185, + "456.6666666666667" + ], + [ + 1717522200, + "456.6666666666667" + ], + [ + 1717522215, + "461.06666666666666" + ], + [ + 1717522230, + "467.6666666666667" + ], + [ + 1717522245, + "467.6666666666667" + ], + [ + 1717522260, + "467.6666666666667" + ], + [ + 1717522275, + "467.6666666666667" + ], + [ + 1717522290, + "467.6666666666667" + ], + [ + 1717522305, + "467.6666666666667" + ], + [ + 1717522320, + "467.6666666666667" + ], + [ + 1717522335, + "467.6666666666667" + ], + [ + 1717522350, + "1107.3" + ], + [ + 1717522365, + "1109.5" + ], + [ + 1717522380, + "474.26666666666665" + ], + [ + 1717522395, + "1030.4333333333334" + ], + [ + 1717522410, + "1028.2333333333333" + ], + [ + 1717522425, + "2297.633333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "425.2" + ], + [ + 1717522155, + "430.8" + ], + [ + 1717522170, + "424.2" + ], + [ + 1717522185, + "434" + ], + [ + 1717522200, + "423" + ], + [ + 1717522215, + "429.6" + ], + [ + 1717522230, + "438.4" + ], + [ + 1717522245, + "407.6" + ], + [ + 1717522260, + "398.8" + ], + [ + 1717522275, + "416.4" + ], + [ + 1717522290, + "412" + ], + [ + 1717522305, + "396.6" + ], + [ + 1717522320, + "405.4" + ], + [ + 1717522335, + "414.2" + ], + [ + 1717522350, + "418.6" + ], + [ + 1717522365, + "405.4" + ], + [ + 1717522380, + "418.6" + ], + [ + 1717522395, + "440.6" + ], + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "425.2" + ], + [ + 1717522155, + "430.8" + ], + [ + 1717522170, + "424.2" + ], + [ + 1717522185, + "434" + ], + [ + 1717522200, + "423" + ], + [ + 1717522215, + "429.6" + ], + [ + 1717522230, + "438.4" + ], + [ + 1717522245, + "407.6" + ], + [ + 1717522260, + "398.8" + ], + [ + 1717522275, + "416.4" + ], + [ + 1717522290, + "412" + ], + [ + 1717522305, + "396.6" + ], + [ + 1717522320, + "405.4" + ], + [ + 1717522335, + "414.2" + ], + [ + 1717522350, + "418.6" + ], + [ + 1717522365, + "405.4" + ], + [ + 1717522380, + "418.6" + ], + [ + 1717522395, + "440.6" + ], + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "161.5" + ], + [ + 1717522155, + "163.7" + ], + [ + 1717522170, + "161.06666666666666" + ], + [ + 1717522185, + "158.86666666666667" + ], + [ + 1717522200, + "161.06666666666666" + ], + [ + 1717522215, + "165.9" + ], + [ + 1717522230, + "164.13333333333333" + ], + [ + 1717522245, + "159.3" + ], + [ + 1717522260, + "161.5" + ], + [ + 1717522275, + "164.13333333333333" + ], + [ + 1717522290, + "161.93333333333334" + ], + [ + 1717522305, + "161.5" + ], + [ + 1717522320, + "165.9" + ], + [ + 1717522335, + "163.7" + ], + [ + 1717522350, + "158.86666666666667" + ], + [ + 1717522365, + "161.06666666666666" + ], + [ + 1717522380, + "161.5" + ], + [ + 1717522395, + "161.5" + ], + [ + 1717522410, + "167.66666666666666" + ], + [ + 1717522425, + "165.9" + ], + [ + 1717522440, + "161.93333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "623.2" + ], + [ + 1717522155, + "622.3333333333334" + ], + [ + 1717522170, + "623.3" + ], + [ + 1717522185, + "621.4" + ], + [ + 1717522200, + "619.7666666666667" + ], + [ + 1717522215, + "621.0333333333333" + ], + [ + 1717522230, + "623.0666666666667" + ], + [ + 1717522245, + "621.1" + ], + [ + 1717522260, + "606.0666666666667" + ], + [ + 1717522275, + "593.3" + ], + [ + 1717522290, + "595.2666666666667" + ], + [ + 1717522305, + "597.7" + ], + [ + 1717522320, + "600.8" + ], + [ + 1717522335, + "597.3333333333334" + ], + [ + 1717522350, + "592.6666666666666" + ], + [ + 1717522365, + "597.6333333333333" + ], + [ + 1717522380, + "595.7333333333333" + ], + [ + 1717522395, + "590.8" + ], + [ + 1717522410, + "593.3333333333334" + ], + [ + 1717522425, + "616" + ], + [ + 1717522440, + "640" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "498.06666666666666" + ], + [ + 1717522155, + "488.06666666666666" + ], + [ + 1717522170, + "477" + ], + [ + 1717522185, + "489.1666666666667" + ], + [ + 1717522200, + "499.8666666666667" + ], + [ + 1717522215, + "500.2" + ], + [ + 1717522230, + "502.8" + ], + [ + 1717522245, + "502.8666666666667" + ], + [ + 1717522260, + "490.8666666666667" + ], + [ + 1717522275, + "479.76666666666665" + ], + [ + 1717522290, + "480.2" + ], + [ + 1717522305, + "479.93333333333334" + ], + [ + 1717522320, + "490.8" + ], + [ + 1717522335, + "490.4" + ], + [ + 1717522350, + "479.43333333333334" + ], + [ + 1717522365, + "479.46666666666664" + ], + [ + 1717522380, + "490.8" + ], + [ + 1717522395, + "502.2" + ], + [ + 1717522410, + "502.2" + ], + [ + 1717522425, + "502.6" + ], + [ + 1717522440, + "492.26666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "472.1" + ], + [ + 1717522155, + "468.93333333333334" + ], + [ + 1717522170, + "472.2" + ], + [ + 1717522185, + "475.6333333333333" + ], + [ + 1717522200, + "476.06666666666666" + ], + [ + 1717522215, + "477.6666666666667" + ], + [ + 1717522230, + "475.5" + ], + [ + 1717522245, + "473.3666666666667" + ], + [ + 1717522260, + "472.8" + ], + [ + 1717522275, + "476.46666666666664" + ], + [ + 1717522290, + "479.06666666666666" + ], + [ + 1717522305, + "475.1" + ], + [ + 1717522320, + "474.46666666666664" + ], + [ + 1717522335, + "474.1333333333333" + ], + [ + 1717522350, + "474.4" + ], + [ + 1717522365, + "476.53333333333336" + ], + [ + 1717522380, + "476.76666666666665" + ], + [ + 1717522395, + "473" + ], + [ + 1717522410, + "469.3666666666667" + ], + [ + 1717522425, + "470.06666666666666" + ], + [ + 1717522440, + "476.9" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "421.3" + ], + [ + 1717522155, + "418.46666666666664" + ], + [ + 1717522170, + "418.3666666666667" + ], + [ + 1717522185, + "418.6" + ], + [ + 1717522200, + "421.4" + ], + [ + 1717522215, + "424.43333333333334" + ], + [ + 1717522230, + "427.73333333333335" + ], + [ + 1717522245, + "428.3666666666667" + ], + [ + 1717522260, + "430.2" + ], + [ + 1717522275, + "431.1" + ], + [ + 1717522290, + "426.53333333333336" + ], + [ + 1717522305, + "423.76666666666665" + ], + [ + 1717522320, + "425" + ], + [ + 1717522335, + "425.6666666666667" + ], + [ + 1717522350, + "421.8333333333333" + ], + [ + 1717522365, + "420.53333333333336" + ], + [ + 1717522380, + "423.1" + ], + [ + 1717522395, + "415.96666666666664" + ], + [ + 1717522410, + "409.1666666666667" + ], + [ + 1717522425, + "410.8333333333333" + ], + [ + 1717522440, + "409.46666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "147.5" + ], + [ + 1717522155, + "147.6" + ], + [ + 1717522170, + "147.7" + ], + [ + 1717522185, + "147.66666666666666" + ], + [ + 1717522200, + "147.6" + ], + [ + 1717522215, + "147.63333333333333" + ], + [ + 1717522230, + "147.73333333333332" + ], + [ + 1717522245, + "147.66666666666666" + ], + [ + 1717522260, + "147.66666666666666" + ], + [ + 1717522275, + "147.73333333333332" + ], + [ + 1717522290, + "147.66666666666666" + ], + [ + 1717522305, + "147.66666666666666" + ], + [ + 1717522320, + "147.76666666666668" + ], + [ + 1717522335, + "147.73333333333332" + ], + [ + 1717522350, + "147.83333333333334" + ], + [ + 1717522365, + "148" + ], + [ + 1717522380, + "147.96666666666667" + ], + [ + 1717522395, + "147.96666666666667" + ], + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.96666666666667" + ], + [ + 1717522440, + "147.66666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "309.8333333333333" + ], + [ + 1717522155, + "307.7" + ], + [ + 1717522170, + "309.73333333333335" + ], + [ + 1717522185, + "309.6" + ], + [ + 1717522200, + "309.8666666666667" + ], + [ + 1717522215, + "310.23333333333335" + ], + [ + 1717522230, + "308" + ], + [ + 1717522245, + "307.76666666666665" + ], + [ + 1717522260, + "357.8" + ], + [ + 1717522275, + "355.6333333333333" + ], + [ + 1717522290, + "303.46666666666664" + ], + [ + 1717522305, + "311.56666666666666" + ], + [ + 1717522320, + "314.3333333333333" + ], + [ + 1717522335, + "304.53333333333336" + ], + [ + 1717522350, + "302.23333333333335" + ], + [ + 1717522365, + "306.93333333333334" + ], + [ + 1717522380, + "311.06666666666666" + ], + [ + 1717522395, + "307.6333333333333" + ], + [ + 1717522410, + "306.8333333333333" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "309.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "495.7" + ], + [ + 1717522155, + "498.46666666666664" + ], + [ + 1717522170, + "504.06666666666666" + ], + [ + 1717522185, + "507.23333333333335" + ], + [ + 1717522200, + "506" + ], + [ + 1717522215, + "512.1666666666666" + ], + [ + 1717522230, + "521.7333333333333" + ], + [ + 1717522245, + "518.6666666666666" + ], + [ + 1717522260, + "517.0333333333333" + ], + [ + 1717522275, + "516.1333333333333" + ], + [ + 1717522290, + "515.5333333333333" + ], + [ + 1717522305, + "516.8" + ], + [ + 1717522320, + "516.5333333333333" + ], + [ + 1717522335, + "514" + ], + [ + 1717522350, + "510.93333333333334" + ], + [ + 1717522365, + "515.7333333333333" + ], + [ + 1717522380, + "519.0666666666667" + ], + [ + 1717522395, + "506.7" + ], + [ + 1717522410, + "493.7" + ], + [ + 1717522425, + "496.53333333333336" + ], + [ + 1717522440, + "501.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "253.6" + ], + [ + 1717522155, + "262.4" + ], + [ + 1717522170, + "271.2" + ], + [ + 1717522185, + "269" + ], + [ + 1717522200, + "266.8" + ], + [ + 1717522215, + "273.4" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "266.8" + ], + [ + 1717522260, + "264.6" + ], + [ + 1717522275, + "273.4" + ], + [ + 1717522290, + "273.4" + ], + [ + 1717522305, + "258" + ], + [ + 1717522320, + "251.4" + ], + [ + 1717522335, + "260.2" + ], + [ + 1717522350, + "266.8" + ], + [ + 1717522365, + "264.6" + ], + [ + 1717522380, + "271.2" + ], + [ + 1717522395, + "275.6" + ], + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "253.6" + ], + [ + 1717522155, + "262.4" + ], + [ + 1717522170, + "271.2" + ], + [ + 1717522185, + "269" + ], + [ + 1717522200, + "266.8" + ], + [ + 1717522215, + "273.4" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "266.8" + ], + [ + 1717522260, + "264.6" + ], + [ + 1717522275, + "273.4" + ], + [ + 1717522290, + "273.4" + ], + [ + 1717522305, + "258" + ], + [ + 1717522320, + "251.4" + ], + [ + 1717522335, + "260.2" + ], + [ + 1717522350, + "266.8" + ], + [ + 1717522365, + "264.6" + ], + [ + 1717522380, + "271.2" + ], + [ + 1717522395, + "275.6" + ], + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "130.8" + ], + [ + 1717522155, + "130.8" + ], + [ + 1717522170, + "130.8" + ], + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "130.8" + ], + [ + 1717522155, + "130.8" + ], + [ + 1717522170, + "130.8" + ], + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "152.6" + ], + [ + 1717522290, + "152.6" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "132.5" + ], + [ + 1717522155, + "109.06666666666666" + ], + [ + 1717522170, + "120.96666666666667" + ], + [ + 1717522185, + "146.16666666666666" + ], + [ + 1717522200, + "122.6" + ], + [ + 1717522215, + "139.53333333333333" + ], + [ + 1717522230, + "139.53333333333333" + ], + [ + 1717522245, + "121.26666666666667" + ], + [ + 1717522260, + "168.33333333333334" + ], + [ + 1717522275, + "272.6" + ], + [ + 1717522290, + "217.2" + ], + [ + 1717522305, + "100.2" + ], + [ + 1717522320, + "95.8" + ], + [ + 1717522335, + "95.8" + ], + [ + 1717522350, + "100.2" + ], + [ + 1717522365, + "102.4" + ], + [ + 1717522380, + "100.2" + ], + [ + 1717522395, + "100.2" + ], + [ + 1717522410, + "102.4" + ], + [ + 1717522425, + "120.66666666666667" + ], + [ + 1717522440, + "120.66666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "383.4" + ], + [ + 1717522155, + "383.4" + ], + [ + 1717522170, + "407.6" + ], + [ + 1717522185, + "414.2" + ], + [ + 1717522200, + "405.4" + ], + [ + 1717522215, + "412" + ], + [ + 1717522230, + "401" + ], + [ + 1717522245, + "385.6" + ], + [ + 1717522260, + "480.2" + ], + [ + 1717522275, + "626.2333333333333" + ], + [ + 1717522290, + "555.8333333333334" + ], + [ + 1717522305, + "425.2" + ], + [ + 1717522320, + "430" + ], + [ + 1717522335, + "419" + ], + [ + 1717522350, + "379" + ], + [ + 1717522365, + "370.2" + ], + [ + 1717522380, + "390" + ], + [ + 1717522395, + "403.2" + ], + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "383.4" + ], + [ + 1717522155, + "383.4" + ], + [ + 1717522170, + "407.6" + ], + [ + 1717522185, + "414.2" + ], + [ + 1717522200, + "405.4" + ], + [ + 1717522215, + "412" + ], + [ + 1717522230, + "401" + ], + [ + 1717522245, + "385.6" + ], + [ + 1717522260, + "480.2" + ], + [ + 1717522275, + "626.2333333333333" + ], + [ + 1717522290, + "555.8333333333334" + ], + [ + 1717522305, + "425.2" + ], + [ + 1717522320, + "430" + ], + [ + 1717522335, + "419" + ], + [ + 1717522350, + "379" + ], + [ + 1717522365, + "370.2" + ], + [ + 1717522380, + "390" + ], + [ + 1717522395, + "403.2" + ], + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "130.8" + ], + [ + 1717522155, + "130.8" + ], + [ + 1717522170, + "130.8" + ], + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "381.2" + ], + [ + 1717522155, + "383.4" + ], + [ + 1717522170, + "365.8" + ], + [ + 1717522185, + "385.6" + ], + [ + 1717522200, + "403.2" + ], + [ + 1717522215, + "372.4" + ], + [ + 1717522230, + "363.6" + ], + [ + 1717522245, + "374.6" + ], + [ + 1717522260, + "383.4" + ], + [ + 1717522275, + "363.6" + ], + [ + 1717522290, + "357" + ], + [ + 1717522305, + "357" + ], + [ + 1717522320, + "363.6" + ], + [ + 1717522335, + "383.4" + ], + [ + 1717522350, + "372.4" + ], + [ + 1717522365, + "372.4" + ], + [ + 1717522380, + "372.4" + ], + [ + 1717522395, + "361.4" + ], + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "381.2" + ], + [ + 1717522155, + "383.4" + ], + [ + 1717522170, + "365.8" + ], + [ + 1717522185, + "385.6" + ], + [ + 1717522200, + "403.2" + ], + [ + 1717522215, + "372.4" + ], + [ + 1717522230, + "363.6" + ], + [ + 1717522245, + "374.6" + ], + [ + 1717522260, + "383.4" + ], + [ + 1717522275, + "363.6" + ], + [ + 1717522290, + "357" + ], + [ + 1717522305, + "357" + ], + [ + 1717522320, + "363.6" + ], + [ + 1717522335, + "383.4" + ], + [ + 1717522350, + "372.4" + ], + [ + 1717522365, + "372.4" + ], + [ + 1717522380, + "372.4" + ], + [ + 1717522395, + "361.4" + ], + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "151.16666666666666" + ], + [ + 1717522155, + "146.76666666666668" + ], + [ + 1717522170, + "135.53333333333333" + ], + [ + 1717522185, + "126.06666666666666" + ], + [ + 1717522200, + "141.7" + ], + [ + 1717522215, + "156" + ], + [ + 1717522230, + "135.53333333333333" + ], + [ + 1717522245, + "149.4" + ], + [ + 1717522260, + "156" + ], + [ + 1717522275, + "151.5" + ], + [ + 1717522290, + "165.36666666666667" + ], + [ + 1717522305, + "157.76666666666668" + ], + [ + 1717522320, + "164.8" + ], + [ + 1717522335, + "181.3" + ], + [ + 1717522350, + "160.4" + ], + [ + 1717522365, + "130.03333333333333" + ], + [ + 1717522380, + "143.9" + ], + [ + 1717522395, + "159.96666666666667" + ], + [ + 1717522410, + "150.5" + ], + [ + 1717522425, + "162.6" + ], + [ + 1717522440, + "156" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "53435.066666666666" + ], + [ + 1717522155, + "53272.2" + ], + [ + 1717522170, + "53723.666666666664" + ], + [ + 1717522185, + "54236.066666666666" + ], + [ + 1717522200, + "54007.2" + ], + [ + 1717522215, + "53513.9" + ], + [ + 1717522230, + "53328" + ], + [ + 1717522245, + "53515" + ], + [ + 1717522260, + "55568.4" + ], + [ + 1717522275, + "57426.96666666667" + ], + [ + 1717522290, + "57000.46666666667" + ], + [ + 1717522305, + "54836.53333333333" + ], + [ + 1717522320, + "52796.666666666664" + ], + [ + 1717522335, + "52566.5" + ], + [ + 1717522350, + "53205.76666666667" + ], + [ + 1717522365, + "53859.76666666667" + ], + [ + 1717522380, + "53928.36666666667" + ], + [ + 1717522395, + "54082.26666666667" + ], + [ + 1717522410, + "54233.76666666667" + ], + [ + 1717522425, + "70221.2" + ], + [ + 1717522440, + "69814.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "19810.7" + ], + [ + 1717522155, + "19763.466666666667" + ], + [ + 1717522170, + "19510.533333333333" + ], + [ + 1717522185, + "19597.533333333333" + ], + [ + 1717522200, + "20046.766666666666" + ], + [ + 1717522215, + "20343.733333333334" + ], + [ + 1717522230, + "19992" + ], + [ + 1717522245, + "19846.266666666666" + ], + [ + 1717522260, + "19983.5" + ], + [ + 1717522275, + "19892.2" + ], + [ + 1717522290, + "20058.2" + ], + [ + 1717522305, + "19772.5" + ], + [ + 1717522320, + "19725.733333333334" + ], + [ + 1717522335, + "19951.233333333334" + ], + [ + 1717522350, + "19424.4" + ], + [ + 1717522365, + "19495.166666666668" + ], + [ + 1717522380, + "20059.366666666665" + ], + [ + 1717522395, + "19909.8" + ], + [ + 1717522410, + "19336" + ], + [ + 1717522425, + "19844.266666666666" + ], + [ + 1717522440, + "20264.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "49754.46666666667" + ], + [ + 1717522155, + "49317.36666666667" + ], + [ + 1717522170, + "48973.53333333333" + ], + [ + 1717522185, + "49085.666666666664" + ], + [ + 1717522200, + "49540.7" + ], + [ + 1717522215, + "50052" + ], + [ + 1717522230, + "49698.96666666667" + ], + [ + 1717522245, + "49913.066666666666" + ], + [ + 1717522260, + "88001.83333333333" + ], + [ + 1717522275, + "140105.66666666666" + ], + [ + 1717522290, + "102356.06666666667" + ], + [ + 1717522305, + "49321.9" + ], + [ + 1717522320, + "51174.433333333334" + ], + [ + 1717522335, + "51061.36666666667" + ], + [ + 1717522350, + "48251.933333333334" + ], + [ + 1717522365, + "48818.4" + ], + [ + 1717522380, + "49711.166666666664" + ], + [ + 1717522395, + "49589.566666666666" + ], + [ + 1717522410, + "49641.333333333336" + ], + [ + 1717522425, + "51774.1" + ], + [ + 1717522440, + "51269.23333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "44455.46666666667" + ], + [ + 1717522155, + "44097.933333333334" + ], + [ + 1717522170, + "43638.6" + ], + [ + 1717522185, + "44565.433333333334" + ], + [ + 1717522200, + "44782.166666666664" + ], + [ + 1717522215, + "44450.3" + ], + [ + 1717522230, + "44409.066666666666" + ], + [ + 1717522245, + "44801.4" + ], + [ + 1717522260, + "45087.2" + ], + [ + 1717522275, + "44921.166666666664" + ], + [ + 1717522290, + "44497.86666666667" + ], + [ + 1717522305, + "43993.96666666667" + ], + [ + 1717522320, + "43647.6" + ], + [ + 1717522335, + "43722.36666666667" + ], + [ + 1717522350, + "43622.36666666667" + ], + [ + 1717522365, + "43390.566666666666" + ], + [ + 1717522380, + "43911.13333333333" + ], + [ + 1717522395, + "44253.7" + ], + [ + 1717522410, + "44163.666666666664" + ], + [ + 1717522425, + "44837.6" + ], + [ + 1717522440, + "44507.833333333336" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "8.8" + ], + [ + 1717522350, + "49.5" + ], + [ + 1717522365, + "58.3" + ], + [ + 1717522380, + "17.6" + ], + [ + 1717522395, + "58.3" + ], + [ + 1717522410, + "58.3" + ], + [ + 1717522425, + "75.7" + ], + [ + 1717522440, + "75.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "4913.866666666667" + ], + [ + 1717522155, + "4950.5" + ], + [ + 1717522170, + "4884.633333333333" + ], + [ + 1717522185, + "4795.2" + ], + [ + 1717522200, + "4810.233333333334" + ], + [ + 1717522215, + "4835" + ], + [ + 1717522230, + "4862.933333333333" + ], + [ + 1717522245, + "4804.033333333334" + ], + [ + 1717522260, + "4779.766666666666" + ], + [ + 1717522275, + "4759.033333333334" + ], + [ + 1717522290, + "4877.3" + ], + [ + 1717522305, + "4812.633333333333" + ], + [ + 1717522320, + "4710.533333333334" + ], + [ + 1717522335, + "4763.233333333334" + ], + [ + 1717522350, + "5021.066666666667" + ], + [ + 1717522365, + "5026.7" + ], + [ + 1717522380, + "4967.066666666667" + ], + [ + 1717522395, + "5154.633333333333" + ], + [ + 1717522410, + "5068.366666666667" + ], + [ + 1717522425, + "5616.233333333334" + ], + [ + 1717522440, + "5618.933333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "20177.633333333335" + ], + [ + 1717522155, + "20832.533333333333" + ], + [ + 1717522170, + "20190.133333333335" + ], + [ + 1717522185, + "19934.566666666666" + ], + [ + 1717522200, + "20136.933333333334" + ], + [ + 1717522215, + "21101" + ], + [ + 1717522230, + "20823.8" + ], + [ + 1717522245, + "19487.666666666668" + ], + [ + 1717522260, + "19773.833333333332" + ], + [ + 1717522275, + "20607.233333333334" + ], + [ + 1717522290, + "20507.866666666665" + ], + [ + 1717522305, + "19407.766666666666" + ], + [ + 1717522320, + "19226.9" + ], + [ + 1717522335, + "20183.233333333334" + ], + [ + 1717522350, + "20075.433333333334" + ], + [ + 1717522365, + "19281.366666666665" + ], + [ + 1717522380, + "19376.2" + ], + [ + 1717522395, + "20102.166666666668" + ], + [ + 1717522410, + "20736.666666666668" + ], + [ + 1717522425, + "20371.8" + ], + [ + 1717522440, + "19829.233333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "4.4" + ], + [ + 1717522350, + "121.33333333333333" + ], + [ + 1717522365, + "130.13333333333333" + ], + [ + 1717522380, + "13.2" + ], + [ + 1717522395, + "125.23333333333333" + ], + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "4.4" + ], + [ + 1717522350, + "121.33333333333333" + ], + [ + 1717522365, + "130.13333333333333" + ], + [ + 1717522380, + "13.2" + ], + [ + 1717522395, + "125.23333333333333" + ], + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "123.8" + ], + [ + 1717522155, + "123.8" + ], + [ + 1717522170, + "123.8" + ], + [ + 1717522185, + "123.8" + ], + [ + 1717522200, + "123.8" + ], + [ + 1717522215, + "123.8" + ], + [ + 1717522230, + "123.8" + ], + [ + 1717522245, + "123.8" + ], + [ + 1717522260, + "123.8" + ], + [ + 1717522275, + "123.8" + ], + [ + 1717522290, + "123.8" + ], + [ + 1717522305, + "123.8" + ], + [ + 1717522320, + "123.8" + ], + [ + 1717522335, + "123.8" + ], + [ + 1717522350, + "126" + ], + [ + 1717522365, + "126" + ], + [ + 1717522380, + "123.8" + ], + [ + 1717522395, + "126" + ], + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "123.8" + ], + [ + 1717522155, + "123.8" + ], + [ + 1717522170, + "123.8" + ], + [ + 1717522185, + "123.8" + ], + [ + 1717522200, + "123.8" + ], + [ + 1717522215, + "123.8" + ], + [ + 1717522230, + "123.8" + ], + [ + 1717522245, + "123.8" + ], + [ + 1717522260, + "123.8" + ], + [ + 1717522275, + "123.8" + ], + [ + 1717522290, + "123.8" + ], + [ + 1717522305, + "123.8" + ], + [ + 1717522320, + "123.8" + ], + [ + 1717522335, + "123.8" + ], + [ + 1717522350, + "126" + ], + [ + 1717522365, + "126" + ], + [ + 1717522380, + "123.8" + ], + [ + 1717522395, + "126" + ], + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "136.93333333333334" + ], + [ + 1717522155, + "134.3" + ], + [ + 1717522170, + "132.1" + ], + [ + 1717522185, + "132.1" + ], + [ + 1717522200, + "134.3" + ], + [ + 1717522215, + "129.9" + ], + [ + 1717522230, + "132.53333333333333" + ], + [ + 1717522245, + "139.13333333333333" + ], + [ + 1717522260, + "136.5" + ], + [ + 1717522275, + "134.3" + ], + [ + 1717522290, + "136.93333333333334" + ], + [ + 1717522305, + "139.13333333333333" + ], + [ + 1717522320, + "132.1" + ], + [ + 1717522335, + "129.9" + ], + [ + 1717522350, + "139.13333333333333" + ], + [ + 1717522365, + "138.7" + ], + [ + 1717522380, + "136.06666666666666" + ], + [ + 1717522395, + "138.7" + ], + [ + 1717522410, + "136.5" + ], + [ + 1717522425, + "139.13333333333333" + ], + [ + 1717522440, + "141.33333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "21.8" + ], + [ + 1717522365, + "21.8" + ], + [ + 1717522425, + "21.8" + ], + [ + 1717522440, + "21.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "130.8" + ], + [ + 1717522155, + "130.8" + ], + [ + 1717522170, + "130.8" + ], + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "616.4666666666667" + ], + [ + 1717522155, + "620.1" + ], + [ + 1717522170, + "618.7666666666667" + ], + [ + 1717522185, + "616.8666666666667" + ], + [ + 1717522200, + "619.8" + ], + [ + 1717522215, + "621.0666666666667" + ], + [ + 1717522230, + "620.6" + ], + [ + 1717522245, + "618.5333333333333" + ], + [ + 1717522260, + "605.8666666666667" + ], + [ + 1717522275, + "597.6333333333333" + ], + [ + 1717522290, + "599.6" + ], + [ + 1717522305, + "595.4" + ], + [ + 1717522320, + "594.2333333333333" + ], + [ + 1717522335, + "592.8" + ], + [ + 1717522350, + "596.8666666666667" + ], + [ + 1717522365, + "599.9" + ], + [ + 1717522380, + "593.6" + ], + [ + 1717522395, + "590.9666666666667" + ], + [ + 1717522410, + "591.1666666666666" + ], + [ + 1717522425, + "613.5" + ], + [ + 1717522440, + "637.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "613.6" + ], + [ + 1717522155, + "479.43333333333334" + ], + [ + 1717522170, + "479.46666666666664" + ], + [ + 1717522185, + "482.53333333333336" + ], + [ + 1717522200, + "484.03333333333336" + ], + [ + 1717522215, + "482.43333333333334" + ], + [ + 1717522230, + "485.3666666666667" + ], + [ + 1717522245, + "485.3666666666667" + ], + [ + 1717522260, + "484.2" + ], + [ + 1717522275, + "483.8666666666667" + ], + [ + 1717522290, + "484.43333333333334" + ], + [ + 1717522305, + "484.3" + ], + [ + 1717522320, + "484.1666666666667" + ], + [ + 1717522335, + "486" + ], + [ + 1717522350, + "486.1" + ], + [ + 1717522365, + "483.9" + ], + [ + 1717522380, + "484.1" + ], + [ + 1717522395, + "484.5" + ], + [ + 1717522410, + "484.53333333333336" + ], + [ + 1717522425, + "487.1" + ], + [ + 1717522440, + "485.56666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "474.26666666666665" + ], + [ + 1717522155, + "472.6" + ], + [ + 1717522170, + "473.43333333333334" + ], + [ + 1717522185, + "473.76666666666665" + ], + [ + 1717522200, + "471.73333333333335" + ], + [ + 1717522215, + "472.06666666666666" + ], + [ + 1717522230, + "469.53333333333336" + ], + [ + 1717522245, + "470.7" + ], + [ + 1717522260, + "473.1" + ], + [ + 1717522275, + "473.1666666666667" + ], + [ + 1717522290, + "472.46666666666664" + ], + [ + 1717522305, + "472.6333333333333" + ], + [ + 1717522320, + "473" + ], + [ + 1717522335, + "472.73333333333335" + ], + [ + 1717522350, + "473.03333333333336" + ], + [ + 1717522365, + "473.5" + ], + [ + 1717522380, + "473.3333333333333" + ], + [ + 1717522395, + "477.2" + ], + [ + 1717522410, + "481.2" + ], + [ + 1717522425, + "478.8" + ], + [ + 1717522440, + "477.43333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "417.93333333333334" + ], + [ + 1717522155, + "413.03333333333336" + ], + [ + 1717522170, + "408.43333333333334" + ], + [ + 1717522185, + "417.93333333333334" + ], + [ + 1717522200, + "424.7" + ], + [ + 1717522215, + "422.5" + ], + [ + 1717522230, + "423.3" + ], + [ + 1717522245, + "423.53333333333336" + ], + [ + 1717522260, + "422.8" + ], + [ + 1717522275, + "424.93333333333334" + ], + [ + 1717522290, + "428.3" + ], + [ + 1717522305, + "422.9" + ], + [ + 1717522320, + "416.9" + ], + [ + 1717522335, + "419.3" + ], + [ + 1717522350, + "420.1" + ], + [ + 1717522365, + "418.4" + ], + [ + 1717522380, + "418.73333333333335" + ], + [ + 1717522395, + "413.3333333333333" + ], + [ + 1717522410, + "408.1333333333333" + ], + [ + 1717522425, + "406.46666666666664" + ], + [ + 1717522440, + "407.3333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "147.7" + ], + [ + 1717522155, + "147.6" + ], + [ + 1717522170, + "147.46666666666667" + ], + [ + 1717522185, + "147.6" + ], + [ + 1717522200, + "147.7" + ], + [ + 1717522215, + "147.6" + ], + [ + 1717522230, + "149.83333333333334" + ], + [ + 1717522245, + "149.86666666666667" + ], + [ + 1717522260, + "147.63333333333333" + ], + [ + 1717522275, + "147.66666666666666" + ], + [ + 1717522290, + "147.83333333333334" + ], + [ + 1717522305, + "147.9" + ], + [ + 1717522320, + "147.73333333333332" + ], + [ + 1717522335, + "147.73333333333332" + ], + [ + 1717522350, + "147.8" + ], + [ + 1717522365, + "147.8" + ], + [ + 1717522380, + "147.7" + ], + [ + 1717522395, + "147.83333333333334" + ], + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.86666666666667" + ], + [ + 1717522440, + "147.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "307.46666666666664" + ], + [ + 1717522155, + "307.3333333333333" + ], + [ + 1717522170, + "305.3666666666667" + ], + [ + 1717522185, + "305.46666666666664" + ], + [ + 1717522200, + "315.8333333333333" + ], + [ + 1717522215, + "316.1" + ], + [ + 1717522230, + "305.8666666666667" + ], + [ + 1717522245, + "307.53333333333336" + ], + [ + 1717522260, + "307.3666666666667" + ], + [ + 1717522275, + "303.56666666666666" + ], + [ + 1717522290, + "303.8333333333333" + ], + [ + 1717522305, + "304.1" + ], + [ + 1717522320, + "302.2" + ], + [ + 1717522335, + "304.43333333333334" + ], + [ + 1717522350, + "307.03333333333336" + ], + [ + 1717522365, + "308.9" + ], + [ + 1717522380, + "307.56666666666666" + ], + [ + 1717522395, + "304.56666666666666" + ], + [ + 1717522410, + "304.7" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "313.53333333333336" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "493.76666666666665" + ], + [ + 1717522155, + "506.9" + ], + [ + 1717522170, + "519.8666666666667" + ], + [ + 1717522185, + "509.9" + ], + [ + 1717522200, + "501.3666666666667" + ], + [ + 1717522215, + "501.96666666666664" + ], + [ + 1717522230, + "507.8333333333333" + ], + [ + 1717522245, + "516.5" + ], + [ + 1717522260, + "517.4" + ], + [ + 1717522275, + "523.6" + ], + [ + 1717522290, + "532.4" + ], + [ + 1717522305, + "522.6666666666666" + ], + [ + 1717522320, + "510.6666666666667" + ], + [ + 1717522335, + "511.1666666666667" + ], + [ + 1717522350, + "511.5" + ], + [ + 1717522365, + "511.73333333333335" + ], + [ + 1717522380, + "512.1666666666666" + ], + [ + 1717522395, + "502.26666666666665" + ], + [ + 1717522410, + "492.3666666666667" + ], + [ + 1717522425, + "494.2" + ], + [ + 1717522440, + "498.06666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "164.6" + ], + [ + 1717522155, + "160.2" + ], + [ + 1717522170, + "159.76666666666668" + ], + [ + 1717522185, + "166.36666666666667" + ], + [ + 1717522200, + "169" + ], + [ + 1717522215, + "164.6" + ], + [ + 1717522230, + "157.56666666666666" + ], + [ + 1717522245, + "161.96666666666667" + ], + [ + 1717522260, + "163.73333333333332" + ], + [ + 1717522275, + "159.33333333333334" + ], + [ + 1717522290, + "161.96666666666667" + ], + [ + 1717522305, + "161.53333333333333" + ], + [ + 1717522320, + "163.73333333333332" + ], + [ + 1717522335, + "161.53333333333333" + ], + [ + 1717522350, + "159.33333333333334" + ], + [ + 1717522365, + "165.93333333333334" + ], + [ + 1717522380, + "166.36666666666667" + ], + [ + 1717522395, + "160.2" + ], + [ + 1717522410, + "164.16666666666666" + ], + [ + 1717522425, + "166.36666666666667" + ], + [ + 1717522440, + "164.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "275.6" + ], + [ + 1717522155, + "269" + ], + [ + 1717522170, + "286.6" + ], + [ + 1717522185, + "286.6" + ], + [ + 1717522200, + "286.6" + ], + [ + 1717522215, + "291" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "262.4" + ], + [ + 1717522260, + "273.4" + ], + [ + 1717522275, + "275.6" + ], + [ + 1717522290, + "255.8" + ], + [ + 1717522305, + "244.8" + ], + [ + 1717522320, + "260.2" + ], + [ + 1717522335, + "286.6" + ], + [ + 1717522350, + "284.4" + ], + [ + 1717522365, + "266.8" + ], + [ + 1717522380, + "260.2" + ], + [ + 1717522395, + "269" + ], + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522140, + "275.6" + ], + [ + 1717522155, + "269" + ], + [ + 1717522170, + "286.6" + ], + [ + 1717522185, + "286.6" + ], + [ + 1717522200, + "286.6" + ], + [ + 1717522215, + "291" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "262.4" + ], + [ + 1717522260, + "273.4" + ], + [ + 1717522275, + "275.6" + ], + [ + 1717522290, + "255.8" + ], + [ + 1717522305, + "244.8" + ], + [ + 1717522320, + "260.2" + ], + [ + 1717522335, + "286.6" + ], + [ + 1717522350, + "284.4" + ], + [ + 1717522365, + "266.8" + ], + [ + 1717522380, + "260.2" + ], + [ + 1717522395, + "269" + ], + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522140, + "130.8" + ], + [ + 1717522155, + "130.8" + ], + [ + 1717522170, + "130.8" + ], + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 11390, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 80, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.123255235, + "linesProcessedPerSecond": 0, + "queueTime": 2.59191099, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 6639, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 1579893, + "decompressedBytes": 6844768, + "decompressedLines": 9365, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1492307, + "headChunkLines": 2060, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 11425, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 148, + "totalChunksMatched": 105, + "totalLinesSent": 5444, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 64599164, + "execTime": 0.129058558, + "linesProcessedPerSecond": 88525, + "queueTime": 2.541723991, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 8337075, + "totalEntriesReturned": 51, + "totalLinesProcessed": 11425, + "totalPostFilterLines": 11425, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717522446 +} diff --git a/web/cypress/fixtures/flowmetrics/hostsNS.json b/web/cypress/fixtures/flowmetrics/hostsNS.json new file mode 100644 index 000000000..3c6d6dd3b --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/hostsNS.json @@ -0,0 +1,5278 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "10.1" + ], + [ + 1717522200, + "65.3" + ], + [ + 1717522215, + "206" + ], + [ + 1717522230, + "167.2" + ], + [ + 1717522245, + "80.8" + ], + [ + 1717522260, + "117.4" + ], + [ + 1717522275, + "57.4" + ], + [ + 1717522290, + "114.8" + ], + [ + 1717522305, + "112.6" + ], + [ + 1717522320, + "14.833333333333334" + ], + [ + 1717522335, + "22.6" + ], + [ + 1717522380, + "36.46666666666667" + ], + [ + 1717522395, + "81.5" + ], + [ + 1717522410, + "50.733333333333334" + ], + [ + 1717522485, + "2.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "174.7" + ], + [ + 1717522200, + "179.53333333333333" + ], + [ + 1717522215, + "179.53333333333333" + ], + [ + 1717522230, + "170.3" + ], + [ + 1717522245, + "174.26666666666668" + ], + [ + 1717522260, + "181.73333333333332" + ], + [ + 1717522275, + "187.43333333333334" + ], + [ + 1717522290, + "185.23333333333332" + ], + [ + 1717522305, + "184.36666666666667" + ], + [ + 1717522320, + "179.53333333333333" + ], + [ + 1717522335, + "170.73333333333332" + ], + [ + 1717522350, + "177.33333333333334" + ], + [ + 1717522365, + "183.93333333333334" + ], + [ + 1717522380, + "177.33333333333334" + ], + [ + 1717522395, + "172.93333333333334" + ], + [ + 1717522410, + "179.53333333333333" + ], + [ + 1717522425, + "193.4" + ], + [ + 1717522440, + "192.96666666666667" + ], + [ + 1717522455, + "176.46666666666667" + ], + [ + 1717522470, + "178.66666666666666" + ], + [ + 1717522485, + "185.26666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "456.6666666666667" + ], + [ + 1717522200, + "456.6666666666667" + ], + [ + 1717522215, + "461.06666666666666" + ], + [ + 1717522230, + "461.06666666666666" + ], + [ + 1717522245, + "452.26666666666665" + ], + [ + 1717522260, + "452.26666666666665" + ], + [ + 1717522275, + "454.46666666666664" + ], + [ + 1717522290, + "454.46666666666664" + ], + [ + 1717522305, + "454.46666666666664" + ], + [ + 1717522320, + "454.46666666666664" + ], + [ + 1717522335, + "454.46666666666664" + ], + [ + 1717522350, + "1094.1" + ], + [ + 1717522365, + "1094.1" + ], + [ + 1717522380, + "458.8666666666667" + ], + [ + 1717522395, + "1017.2333333333333" + ], + [ + 1717522410, + "1015.0333333333333" + ], + [ + 1717522425, + "2291.0333333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ], + [ + 1717522455, + "2287.733333333333" + ], + [ + 1717522470, + "2289.9333333333334" + ], + [ + 1717522485, + "461.06666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "456.6666666666667" + ], + [ + 1717522200, + "456.6666666666667" + ], + [ + 1717522215, + "461.06666666666666" + ], + [ + 1717522230, + "467.6666666666667" + ], + [ + 1717522245, + "467.6666666666667" + ], + [ + 1717522260, + "467.6666666666667" + ], + [ + 1717522275, + "467.6666666666667" + ], + [ + 1717522290, + "467.6666666666667" + ], + [ + 1717522305, + "467.6666666666667" + ], + [ + 1717522320, + "467.6666666666667" + ], + [ + 1717522335, + "467.6666666666667" + ], + [ + 1717522350, + "1107.3" + ], + [ + 1717522365, + "1109.5" + ], + [ + 1717522380, + "474.26666666666665" + ], + [ + 1717522395, + "1030.4333333333334" + ], + [ + 1717522410, + "1028.2333333333333" + ], + [ + 1717522425, + "2297.633333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ], + [ + 1717522455, + "2287.733333333333" + ], + [ + 1717522470, + "2296.5333333333333" + ], + [ + 1717522485, + "474.26666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "434" + ], + [ + 1717522200, + "423" + ], + [ + 1717522215, + "429.6" + ], + [ + 1717522230, + "438.4" + ], + [ + 1717522245, + "407.6" + ], + [ + 1717522260, + "398.8" + ], + [ + 1717522275, + "416.4" + ], + [ + 1717522290, + "412" + ], + [ + 1717522305, + "396.6" + ], + [ + 1717522320, + "405.4" + ], + [ + 1717522335, + "414.2" + ], + [ + 1717522350, + "418.6" + ], + [ + 1717522365, + "405.4" + ], + [ + 1717522380, + "418.6" + ], + [ + 1717522395, + "440.6" + ], + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ], + [ + 1717522455, + "416.4" + ], + [ + 1717522470, + "392.2" + ], + [ + 1717522485, + "407.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "434" + ], + [ + 1717522200, + "423" + ], + [ + 1717522215, + "429.6" + ], + [ + 1717522230, + "438.4" + ], + [ + 1717522245, + "407.6" + ], + [ + 1717522260, + "398.8" + ], + [ + 1717522275, + "416.4" + ], + [ + 1717522290, + "412" + ], + [ + 1717522305, + "396.6" + ], + [ + 1717522320, + "405.4" + ], + [ + 1717522335, + "414.2" + ], + [ + 1717522350, + "418.6" + ], + [ + 1717522365, + "405.4" + ], + [ + 1717522380, + "418.6" + ], + [ + 1717522395, + "440.6" + ], + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ], + [ + 1717522455, + "416.4" + ], + [ + 1717522470, + "392.2" + ], + [ + 1717522485, + "407.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "158.86666666666667" + ], + [ + 1717522200, + "161.06666666666666" + ], + [ + 1717522215, + "165.9" + ], + [ + 1717522230, + "164.13333333333333" + ], + [ + 1717522245, + "159.3" + ], + [ + 1717522260, + "161.5" + ], + [ + 1717522275, + "164.13333333333333" + ], + [ + 1717522290, + "161.93333333333334" + ], + [ + 1717522305, + "161.5" + ], + [ + 1717522320, + "165.9" + ], + [ + 1717522335, + "163.7" + ], + [ + 1717522350, + "158.86666666666667" + ], + [ + 1717522365, + "161.06666666666666" + ], + [ + 1717522380, + "161.5" + ], + [ + 1717522395, + "161.5" + ], + [ + 1717522410, + "167.66666666666666" + ], + [ + 1717522425, + "165.9" + ], + [ + 1717522440, + "161.93333333333334" + ], + [ + 1717522455, + "170.86666666666667" + ], + [ + 1717522470, + "172.63333333333333" + ], + [ + 1717522485, + "163.26666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "621.4" + ], + [ + 1717522200, + "619.7666666666667" + ], + [ + 1717522215, + "621.0333333333333" + ], + [ + 1717522230, + "623.0666666666667" + ], + [ + 1717522245, + "621.1" + ], + [ + 1717522260, + "606.0666666666667" + ], + [ + 1717522275, + "593.3" + ], + [ + 1717522290, + "595.2666666666667" + ], + [ + 1717522305, + "597.7" + ], + [ + 1717522320, + "600.8" + ], + [ + 1717522335, + "597.3333333333334" + ], + [ + 1717522350, + "592.6666666666666" + ], + [ + 1717522365, + "597.6333333333333" + ], + [ + 1717522380, + "595.7333333333333" + ], + [ + 1717522395, + "590.8" + ], + [ + 1717522410, + "593.3333333333334" + ], + [ + 1717522425, + "616" + ], + [ + 1717522440, + "640" + ], + [ + 1717522455, + "648.7666666666667" + ], + [ + 1717522470, + "654.0666666666667" + ], + [ + 1717522485, + "649.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "489.1666666666667" + ], + [ + 1717522200, + "499.8666666666667" + ], + [ + 1717522215, + "500.2" + ], + [ + 1717522230, + "502.8" + ], + [ + 1717522245, + "502.8666666666667" + ], + [ + 1717522260, + "490.8666666666667" + ], + [ + 1717522275, + "479.76666666666665" + ], + [ + 1717522290, + "480.2" + ], + [ + 1717522305, + "479.93333333333334" + ], + [ + 1717522320, + "490.8" + ], + [ + 1717522335, + "490.4" + ], + [ + 1717522350, + "479.43333333333334" + ], + [ + 1717522365, + "479.46666666666664" + ], + [ + 1717522380, + "490.8" + ], + [ + 1717522395, + "502.2" + ], + [ + 1717522410, + "502.2" + ], + [ + 1717522425, + "502.6" + ], + [ + 1717522440, + "492.26666666666665" + ], + [ + 1717522455, + "493.4" + ], + [ + 1717522470, + "504.3666666666667" + ], + [ + 1717522485, + "503.76666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "475.6333333333333" + ], + [ + 1717522200, + "476.06666666666666" + ], + [ + 1717522215, + "477.6666666666667" + ], + [ + 1717522230, + "475.5" + ], + [ + 1717522245, + "473.3666666666667" + ], + [ + 1717522260, + "472.8" + ], + [ + 1717522275, + "476.46666666666664" + ], + [ + 1717522290, + "479.06666666666666" + ], + [ + 1717522305, + "475.1" + ], + [ + 1717522320, + "474.46666666666664" + ], + [ + 1717522335, + "474.1333333333333" + ], + [ + 1717522350, + "474.4" + ], + [ + 1717522365, + "476.53333333333336" + ], + [ + 1717522380, + "476.76666666666665" + ], + [ + 1717522395, + "473" + ], + [ + 1717522410, + "469.3666666666667" + ], + [ + 1717522425, + "470.06666666666666" + ], + [ + 1717522440, + "476.9" + ], + [ + 1717522455, + "483.1666666666667" + ], + [ + 1717522470, + "486.3333333333333" + ], + [ + 1717522485, + "487.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "418.6" + ], + [ + 1717522200, + "421.4" + ], + [ + 1717522215, + "424.43333333333334" + ], + [ + 1717522230, + "427.73333333333335" + ], + [ + 1717522245, + "428.3666666666667" + ], + [ + 1717522260, + "430.2" + ], + [ + 1717522275, + "431.1" + ], + [ + 1717522290, + "426.53333333333336" + ], + [ + 1717522305, + "423.76666666666665" + ], + [ + 1717522320, + "425" + ], + [ + 1717522335, + "425.6666666666667" + ], + [ + 1717522350, + "421.8333333333333" + ], + [ + 1717522365, + "420.53333333333336" + ], + [ + 1717522380, + "423.1" + ], + [ + 1717522395, + "415.96666666666664" + ], + [ + 1717522410, + "409.1666666666667" + ], + [ + 1717522425, + "410.8333333333333" + ], + [ + 1717522440, + "409.46666666666664" + ], + [ + 1717522455, + "409.1666666666667" + ], + [ + 1717522470, + "417.23333333333335" + ], + [ + 1717522485, + "421.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "147.66666666666666" + ], + [ + 1717522200, + "147.6" + ], + [ + 1717522215, + "147.63333333333333" + ], + [ + 1717522230, + "147.73333333333332" + ], + [ + 1717522245, + "147.66666666666666" + ], + [ + 1717522260, + "147.66666666666666" + ], + [ + 1717522275, + "147.73333333333332" + ], + [ + 1717522290, + "147.66666666666666" + ], + [ + 1717522305, + "147.66666666666666" + ], + [ + 1717522320, + "147.76666666666668" + ], + [ + 1717522335, + "147.73333333333332" + ], + [ + 1717522350, + "147.83333333333334" + ], + [ + 1717522365, + "148" + ], + [ + 1717522380, + "147.96666666666667" + ], + [ + 1717522395, + "147.96666666666667" + ], + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.96666666666667" + ], + [ + 1717522440, + "147.66666666666666" + ], + [ + 1717522455, + "147.83333333333334" + ], + [ + 1717522470, + "147.96666666666667" + ], + [ + 1717522485, + "148.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "309.6" + ], + [ + 1717522200, + "309.8666666666667" + ], + [ + 1717522215, + "310.23333333333335" + ], + [ + 1717522230, + "308" + ], + [ + 1717522245, + "307.76666666666665" + ], + [ + 1717522260, + "357.8" + ], + [ + 1717522275, + "355.6333333333333" + ], + [ + 1717522290, + "303.46666666666664" + ], + [ + 1717522305, + "311.56666666666666" + ], + [ + 1717522320, + "314.3333333333333" + ], + [ + 1717522335, + "304.53333333333336" + ], + [ + 1717522350, + "302.23333333333335" + ], + [ + 1717522365, + "306.93333333333334" + ], + [ + 1717522380, + "311.06666666666666" + ], + [ + 1717522395, + "307.6333333333333" + ], + [ + 1717522410, + "306.8333333333333" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "309.5" + ], + [ + 1717522455, + "309.06666666666666" + ], + [ + 1717522470, + "311.1" + ], + [ + 1717522485, + "313.56666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "507.23333333333335" + ], + [ + 1717522200, + "506" + ], + [ + 1717522215, + "512.1666666666666" + ], + [ + 1717522230, + "521.7333333333333" + ], + [ + 1717522245, + "518.6666666666666" + ], + [ + 1717522260, + "517.0333333333333" + ], + [ + 1717522275, + "516.1333333333333" + ], + [ + 1717522290, + "515.5333333333333" + ], + [ + 1717522305, + "516.8" + ], + [ + 1717522320, + "516.5333333333333" + ], + [ + 1717522335, + "514" + ], + [ + 1717522350, + "510.93333333333334" + ], + [ + 1717522365, + "515.7333333333333" + ], + [ + 1717522380, + "519.0666666666667" + ], + [ + 1717522395, + "506.7" + ], + [ + 1717522410, + "493.7" + ], + [ + 1717522425, + "496.53333333333336" + ], + [ + 1717522440, + "501.7" + ], + [ + 1717522455, + "500.26666666666665" + ], + [ + 1717522470, + "501.8333333333333" + ], + [ + 1717522485, + "502" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "269" + ], + [ + 1717522200, + "266.8" + ], + [ + 1717522215, + "273.4" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "266.8" + ], + [ + 1717522260, + "264.6" + ], + [ + 1717522275, + "273.4" + ], + [ + 1717522290, + "273.4" + ], + [ + 1717522305, + "258" + ], + [ + 1717522320, + "251.4" + ], + [ + 1717522335, + "260.2" + ], + [ + 1717522350, + "266.8" + ], + [ + 1717522365, + "264.6" + ], + [ + 1717522380, + "271.2" + ], + [ + 1717522395, + "275.6" + ], + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ], + [ + 1717522455, + "249.2" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "275.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "269" + ], + [ + 1717522200, + "266.8" + ], + [ + 1717522215, + "273.4" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "266.8" + ], + [ + 1717522260, + "264.6" + ], + [ + 1717522275, + "273.4" + ], + [ + 1717522290, + "273.4" + ], + [ + 1717522305, + "258" + ], + [ + 1717522320, + "251.4" + ], + [ + 1717522335, + "260.2" + ], + [ + 1717522350, + "266.8" + ], + [ + 1717522365, + "264.6" + ], + [ + 1717522380, + "271.2" + ], + [ + 1717522395, + "275.6" + ], + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ], + [ + 1717522455, + "249.2" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "275.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "152.6" + ], + [ + 1717522290, + "152.6" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "146.16666666666666" + ], + [ + 1717522200, + "122.6" + ], + [ + 1717522215, + "139.53333333333333" + ], + [ + 1717522230, + "139.53333333333333" + ], + [ + 1717522245, + "121.26666666666667" + ], + [ + 1717522260, + "168.33333333333334" + ], + [ + 1717522275, + "272.6" + ], + [ + 1717522290, + "217.2" + ], + [ + 1717522305, + "100.2" + ], + [ + 1717522320, + "95.8" + ], + [ + 1717522335, + "95.8" + ], + [ + 1717522350, + "100.2" + ], + [ + 1717522365, + "102.4" + ], + [ + 1717522380, + "100.2" + ], + [ + 1717522395, + "100.2" + ], + [ + 1717522410, + "102.4" + ], + [ + 1717522425, + "120.66666666666667" + ], + [ + 1717522440, + "120.66666666666667" + ], + [ + 1717522455, + "106.8" + ], + [ + 1717522470, + "106.8" + ], + [ + 1717522485, + "106.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "414.2" + ], + [ + 1717522200, + "405.4" + ], + [ + 1717522215, + "412" + ], + [ + 1717522230, + "401" + ], + [ + 1717522245, + "385.6" + ], + [ + 1717522260, + "480.2" + ], + [ + 1717522275, + "626.2333333333333" + ], + [ + 1717522290, + "555.8333333333334" + ], + [ + 1717522305, + "425.2" + ], + [ + 1717522320, + "430" + ], + [ + 1717522335, + "419" + ], + [ + 1717522350, + "379" + ], + [ + 1717522365, + "370.2" + ], + [ + 1717522380, + "390" + ], + [ + 1717522395, + "403.2" + ], + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ], + [ + 1717522455, + "401" + ], + [ + 1717522470, + "403.2" + ], + [ + 1717522485, + "414.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "414.2" + ], + [ + 1717522200, + "405.4" + ], + [ + 1717522215, + "412" + ], + [ + 1717522230, + "401" + ], + [ + 1717522245, + "385.6" + ], + [ + 1717522260, + "480.2" + ], + [ + 1717522275, + "626.2333333333333" + ], + [ + 1717522290, + "555.8333333333334" + ], + [ + 1717522305, + "425.2" + ], + [ + 1717522320, + "430" + ], + [ + 1717522335, + "419" + ], + [ + 1717522350, + "379" + ], + [ + 1717522365, + "370.2" + ], + [ + 1717522380, + "390" + ], + [ + 1717522395, + "403.2" + ], + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ], + [ + 1717522455, + "401" + ], + [ + 1717522470, + "403.2" + ], + [ + 1717522485, + "414.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "385.6" + ], + [ + 1717522200, + "403.2" + ], + [ + 1717522215, + "372.4" + ], + [ + 1717522230, + "363.6" + ], + [ + 1717522245, + "374.6" + ], + [ + 1717522260, + "383.4" + ], + [ + 1717522275, + "363.6" + ], + [ + 1717522290, + "357" + ], + [ + 1717522305, + "357" + ], + [ + 1717522320, + "363.6" + ], + [ + 1717522335, + "383.4" + ], + [ + 1717522350, + "372.4" + ], + [ + 1717522365, + "372.4" + ], + [ + 1717522380, + "372.4" + ], + [ + 1717522395, + "361.4" + ], + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ], + [ + 1717522455, + "381.2" + ], + [ + 1717522470, + "359.2" + ], + [ + 1717522485, + "343.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "385.6" + ], + [ + 1717522200, + "403.2" + ], + [ + 1717522215, + "372.4" + ], + [ + 1717522230, + "363.6" + ], + [ + 1717522245, + "374.6" + ], + [ + 1717522260, + "383.4" + ], + [ + 1717522275, + "363.6" + ], + [ + 1717522290, + "357" + ], + [ + 1717522305, + "357" + ], + [ + 1717522320, + "363.6" + ], + [ + 1717522335, + "383.4" + ], + [ + 1717522350, + "372.4" + ], + [ + 1717522365, + "372.4" + ], + [ + 1717522380, + "372.4" + ], + [ + 1717522395, + "361.4" + ], + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ], + [ + 1717522455, + "381.2" + ], + [ + 1717522470, + "359.2" + ], + [ + 1717522485, + "343.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "126.06666666666666" + ], + [ + 1717522200, + "141.7" + ], + [ + 1717522215, + "156" + ], + [ + 1717522230, + "135.53333333333333" + ], + [ + 1717522245, + "149.4" + ], + [ + 1717522260, + "156" + ], + [ + 1717522275, + "151.5" + ], + [ + 1717522290, + "165.36666666666667" + ], + [ + 1717522305, + "157.76666666666668" + ], + [ + 1717522320, + "164.8" + ], + [ + 1717522335, + "181.3" + ], + [ + 1717522350, + "160.4" + ], + [ + 1717522365, + "130.03333333333333" + ], + [ + 1717522380, + "143.9" + ], + [ + 1717522395, + "159.96666666666667" + ], + [ + 1717522410, + "150.5" + ], + [ + 1717522425, + "162.6" + ], + [ + 1717522440, + "156" + ], + [ + 1717522455, + "159.96666666666667" + ], + [ + 1717522470, + "166.56666666666666" + ], + [ + 1717522485, + "159.96666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "54236.066666666666" + ], + [ + 1717522200, + "54007.2" + ], + [ + 1717522215, + "53513.9" + ], + [ + 1717522230, + "53328" + ], + [ + 1717522245, + "53515" + ], + [ + 1717522260, + "55568.4" + ], + [ + 1717522275, + "57426.96666666667" + ], + [ + 1717522290, + "57000.46666666667" + ], + [ + 1717522305, + "54836.53333333333" + ], + [ + 1717522320, + "52796.666666666664" + ], + [ + 1717522335, + "52566.5" + ], + [ + 1717522350, + "53205.76666666667" + ], + [ + 1717522365, + "53859.76666666667" + ], + [ + 1717522380, + "53928.36666666667" + ], + [ + 1717522395, + "54082.26666666667" + ], + [ + 1717522410, + "54233.76666666667" + ], + [ + 1717522425, + "70221.2" + ], + [ + 1717522440, + "69814.4" + ], + [ + 1717522455, + "53250.36666666667" + ], + [ + 1717522470, + "53189.5" + ], + [ + 1717522485, + "53358.13333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "19597.533333333333" + ], + [ + 1717522200, + "20046.766666666666" + ], + [ + 1717522215, + "20343.733333333334" + ], + [ + 1717522230, + "19992" + ], + [ + 1717522245, + "19846.266666666666" + ], + [ + 1717522260, + "19983.5" + ], + [ + 1717522275, + "19892.2" + ], + [ + 1717522290, + "20058.2" + ], + [ + 1717522305, + "19772.5" + ], + [ + 1717522320, + "19725.733333333334" + ], + [ + 1717522335, + "19951.233333333334" + ], + [ + 1717522350, + "19424.4" + ], + [ + 1717522365, + "19495.166666666668" + ], + [ + 1717522380, + "20059.366666666665" + ], + [ + 1717522395, + "19909.8" + ], + [ + 1717522410, + "19336" + ], + [ + 1717522425, + "19844.266666666666" + ], + [ + 1717522440, + "20264.7" + ], + [ + 1717522455, + "19824.566666666666" + ], + [ + 1717522470, + "19576.466666666667" + ], + [ + 1717522485, + "19795.333333333332" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "49085.666666666664" + ], + [ + 1717522200, + "49540.7" + ], + [ + 1717522215, + "50052" + ], + [ + 1717522230, + "49698.96666666667" + ], + [ + 1717522245, + "49913.066666666666" + ], + [ + 1717522260, + "88001.83333333333" + ], + [ + 1717522275, + "140105.66666666666" + ], + [ + 1717522290, + "102356.06666666667" + ], + [ + 1717522305, + "49321.9" + ], + [ + 1717522320, + "51174.433333333334" + ], + [ + 1717522335, + "51061.36666666667" + ], + [ + 1717522350, + "48251.933333333334" + ], + [ + 1717522365, + "48818.4" + ], + [ + 1717522380, + "49711.166666666664" + ], + [ + 1717522395, + "49589.566666666666" + ], + [ + 1717522410, + "49641.333333333336" + ], + [ + 1717522425, + "51774.1" + ], + [ + 1717522440, + "51269.23333333333" + ], + [ + 1717522455, + "49014.76666666667" + ], + [ + 1717522470, + "48593.23333333333" + ], + [ + 1717522485, + "48844.933333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "44565.433333333334" + ], + [ + 1717522200, + "44782.166666666664" + ], + [ + 1717522215, + "44450.3" + ], + [ + 1717522230, + "44409.066666666666" + ], + [ + 1717522245, + "44801.4" + ], + [ + 1717522260, + "45087.2" + ], + [ + 1717522275, + "44921.166666666664" + ], + [ + 1717522290, + "44497.86666666667" + ], + [ + 1717522305, + "43993.96666666667" + ], + [ + 1717522320, + "43647.6" + ], + [ + 1717522335, + "43722.36666666667" + ], + [ + 1717522350, + "43622.36666666667" + ], + [ + 1717522365, + "43390.566666666666" + ], + [ + 1717522380, + "43911.13333333333" + ], + [ + 1717522395, + "44253.7" + ], + [ + 1717522410, + "44163.666666666664" + ], + [ + 1717522425, + "44837.6" + ], + [ + 1717522440, + "44507.833333333336" + ], + [ + 1717522455, + "43731.1" + ], + [ + 1717522470, + "43525.1" + ], + [ + 1717522485, + "43703.86666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "49.5" + ], + [ + 1717522365, + "58.3" + ], + [ + 1717522380, + "17.6" + ], + [ + 1717522395, + "58.3" + ], + [ + 1717522410, + "58.3" + ], + [ + 1717522425, + "75.7" + ], + [ + 1717522440, + "75.7" + ], + [ + 1717522455, + "75.7" + ], + [ + 1717522470, + "75.7" + ], + [ + 1717522485, + "17.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "4795.2" + ], + [ + 1717522200, + "4810.233333333334" + ], + [ + 1717522215, + "4835" + ], + [ + 1717522230, + "4862.933333333333" + ], + [ + 1717522245, + "4804.033333333334" + ], + [ + 1717522260, + "4779.766666666666" + ], + [ + 1717522275, + "4759.033333333334" + ], + [ + 1717522290, + "4877.3" + ], + [ + 1717522305, + "4812.633333333333" + ], + [ + 1717522320, + "4710.533333333334" + ], + [ + 1717522335, + "4763.233333333334" + ], + [ + 1717522350, + "5021.066666666667" + ], + [ + 1717522365, + "5026.7" + ], + [ + 1717522380, + "4967.066666666667" + ], + [ + 1717522395, + "5154.633333333333" + ], + [ + 1717522410, + "5068.366666666667" + ], + [ + 1717522425, + "5616.233333333334" + ], + [ + 1717522440, + "5618.933333333333" + ], + [ + 1717522455, + "5222.533333333334" + ], + [ + 1717522470, + "5195.7" + ], + [ + 1717522485, + "4885.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "19934.566666666666" + ], + [ + 1717522200, + "20136.933333333334" + ], + [ + 1717522215, + "21101" + ], + [ + 1717522230, + "20823.8" + ], + [ + 1717522245, + "19487.666666666668" + ], + [ + 1717522260, + "19773.833333333332" + ], + [ + 1717522275, + "20607.233333333334" + ], + [ + 1717522290, + "20507.866666666665" + ], + [ + 1717522305, + "19407.766666666666" + ], + [ + 1717522320, + "19226.9" + ], + [ + 1717522335, + "20183.233333333334" + ], + [ + 1717522350, + "20075.433333333334" + ], + [ + 1717522365, + "19281.366666666665" + ], + [ + 1717522380, + "19376.2" + ], + [ + 1717522395, + "20102.166666666668" + ], + [ + 1717522410, + "20736.666666666668" + ], + [ + 1717522425, + "20371.8" + ], + [ + 1717522440, + "19829.233333333334" + ], + [ + 1717522455, + "20092.3" + ], + [ + 1717522470, + "19940.3" + ], + [ + 1717522485, + "19290.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "121.33333333333333" + ], + [ + 1717522365, + "130.13333333333333" + ], + [ + 1717522380, + "13.2" + ], + [ + 1717522395, + "125.23333333333333" + ], + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ], + [ + 1717522455, + "244.93333333333334" + ], + [ + 1717522470, + "244.93333333333334" + ], + [ + 1717522485, + "13.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522350, + "121.33333333333333" + ], + [ + 1717522365, + "130.13333333333333" + ], + [ + 1717522380, + "13.2" + ], + [ + 1717522395, + "125.23333333333333" + ], + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ], + [ + 1717522455, + "244.93333333333334" + ], + [ + 1717522470, + "244.93333333333334" + ], + [ + 1717522485, + "13.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "123.8" + ], + [ + 1717522200, + "123.8" + ], + [ + 1717522215, + "123.8" + ], + [ + 1717522230, + "123.8" + ], + [ + 1717522245, + "123.8" + ], + [ + 1717522260, + "123.8" + ], + [ + 1717522275, + "123.8" + ], + [ + 1717522290, + "123.8" + ], + [ + 1717522305, + "123.8" + ], + [ + 1717522320, + "123.8" + ], + [ + 1717522335, + "123.8" + ], + [ + 1717522350, + "126" + ], + [ + 1717522365, + "126" + ], + [ + 1717522380, + "123.8" + ], + [ + 1717522395, + "126" + ], + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ], + [ + 1717522455, + "126" + ], + [ + 1717522470, + "126" + ], + [ + 1717522485, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "123.8" + ], + [ + 1717522200, + "123.8" + ], + [ + 1717522215, + "123.8" + ], + [ + 1717522230, + "123.8" + ], + [ + 1717522245, + "123.8" + ], + [ + 1717522260, + "123.8" + ], + [ + 1717522275, + "123.8" + ], + [ + 1717522290, + "123.8" + ], + [ + 1717522305, + "123.8" + ], + [ + 1717522320, + "123.8" + ], + [ + 1717522335, + "123.8" + ], + [ + 1717522350, + "126" + ], + [ + 1717522365, + "126" + ], + [ + 1717522380, + "123.8" + ], + [ + 1717522395, + "126" + ], + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ], + [ + 1717522455, + "126" + ], + [ + 1717522470, + "126" + ], + [ + 1717522485, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "132.1" + ], + [ + 1717522200, + "134.3" + ], + [ + 1717522215, + "129.9" + ], + [ + 1717522230, + "132.53333333333333" + ], + [ + 1717522245, + "139.13333333333333" + ], + [ + 1717522260, + "136.5" + ], + [ + 1717522275, + "134.3" + ], + [ + 1717522290, + "136.93333333333334" + ], + [ + 1717522305, + "139.13333333333333" + ], + [ + 1717522320, + "132.1" + ], + [ + 1717522335, + "129.9" + ], + [ + 1717522350, + "139.13333333333333" + ], + [ + 1717522365, + "138.7" + ], + [ + 1717522380, + "136.06666666666666" + ], + [ + 1717522395, + "138.7" + ], + [ + 1717522410, + "136.5" + ], + [ + 1717522425, + "139.13333333333333" + ], + [ + 1717522440, + "141.33333333333334" + ], + [ + 1717522455, + "139.13333333333333" + ], + [ + 1717522470, + "141.76666666666668" + ], + [ + 1717522485, + "141.33333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522350, + "21.8" + ], + [ + 1717522365, + "21.8" + ], + [ + 1717522425, + "21.8" + ], + [ + 1717522440, + "21.8" + ], + [ + 1717522455, + "21.8" + ], + [ + 1717522470, + "21.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "616.8666666666667" + ], + [ + 1717522200, + "619.8" + ], + [ + 1717522215, + "621.0666666666667" + ], + [ + 1717522230, + "620.6" + ], + [ + 1717522245, + "618.5333333333333" + ], + [ + 1717522260, + "605.8666666666667" + ], + [ + 1717522275, + "597.6333333333333" + ], + [ + 1717522290, + "599.6" + ], + [ + 1717522305, + "595.4" + ], + [ + 1717522320, + "594.2333333333333" + ], + [ + 1717522335, + "592.8" + ], + [ + 1717522350, + "596.8666666666667" + ], + [ + 1717522365, + "599.9" + ], + [ + 1717522380, + "593.6" + ], + [ + 1717522395, + "590.9666666666667" + ], + [ + 1717522410, + "591.1666666666666" + ], + [ + 1717522425, + "613.5" + ], + [ + 1717522440, + "637.6333333333333" + ], + [ + 1717522455, + "642" + ], + [ + 1717522470, + "645.2333333333333" + ], + [ + 1717522485, + "643.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "482.53333333333336" + ], + [ + 1717522200, + "484.03333333333336" + ], + [ + 1717522215, + "482.43333333333334" + ], + [ + 1717522230, + "485.3666666666667" + ], + [ + 1717522245, + "485.3666666666667" + ], + [ + 1717522260, + "484.2" + ], + [ + 1717522275, + "483.8666666666667" + ], + [ + 1717522290, + "484.43333333333334" + ], + [ + 1717522305, + "484.3" + ], + [ + 1717522320, + "484.1666666666667" + ], + [ + 1717522335, + "486" + ], + [ + 1717522350, + "486.1" + ], + [ + 1717522365, + "483.9" + ], + [ + 1717522380, + "484.1" + ], + [ + 1717522395, + "484.5" + ], + [ + 1717522410, + "484.53333333333336" + ], + [ + 1717522425, + "487.1" + ], + [ + 1717522440, + "485.56666666666666" + ], + [ + 1717522455, + "484.3666666666667" + ], + [ + 1717522470, + "484.3" + ], + [ + 1717522485, + "486.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "473.76666666666665" + ], + [ + 1717522200, + "471.73333333333335" + ], + [ + 1717522215, + "472.06666666666666" + ], + [ + 1717522230, + "469.53333333333336" + ], + [ + 1717522245, + "470.7" + ], + [ + 1717522260, + "473.1" + ], + [ + 1717522275, + "473.1666666666667" + ], + [ + 1717522290, + "472.46666666666664" + ], + [ + 1717522305, + "472.6333333333333" + ], + [ + 1717522320, + "473" + ], + [ + 1717522335, + "472.73333333333335" + ], + [ + 1717522350, + "473.03333333333336" + ], + [ + 1717522365, + "473.5" + ], + [ + 1717522380, + "473.3333333333333" + ], + [ + 1717522395, + "477.2" + ], + [ + 1717522410, + "481.2" + ], + [ + 1717522425, + "478.8" + ], + [ + 1717522440, + "477.43333333333334" + ], + [ + 1717522455, + "479.76666666666665" + ], + [ + 1717522470, + "480.96666666666664" + ], + [ + 1717522485, + "480.8333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "417.93333333333334" + ], + [ + 1717522200, + "424.7" + ], + [ + 1717522215, + "422.5" + ], + [ + 1717522230, + "423.3" + ], + [ + 1717522245, + "423.53333333333336" + ], + [ + 1717522260, + "422.8" + ], + [ + 1717522275, + "424.93333333333334" + ], + [ + 1717522290, + "428.3" + ], + [ + 1717522305, + "422.9" + ], + [ + 1717522320, + "416.9" + ], + [ + 1717522335, + "419.3" + ], + [ + 1717522350, + "420.1" + ], + [ + 1717522365, + "418.4" + ], + [ + 1717522380, + "418.73333333333335" + ], + [ + 1717522395, + "413.3333333333333" + ], + [ + 1717522410, + "408.1333333333333" + ], + [ + 1717522425, + "406.46666666666664" + ], + [ + 1717522440, + "407.3333333333333" + ], + [ + 1717522455, + "407.1666666666667" + ], + [ + 1717522470, + "404.53333333333336" + ], + [ + 1717522485, + "409.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "147.6" + ], + [ + 1717522200, + "147.7" + ], + [ + 1717522215, + "147.6" + ], + [ + 1717522230, + "149.83333333333334" + ], + [ + 1717522245, + "149.86666666666667" + ], + [ + 1717522260, + "147.63333333333333" + ], + [ + 1717522275, + "147.66666666666666" + ], + [ + 1717522290, + "147.83333333333334" + ], + [ + 1717522305, + "147.9" + ], + [ + 1717522320, + "147.73333333333332" + ], + [ + 1717522335, + "147.73333333333332" + ], + [ + 1717522350, + "147.8" + ], + [ + 1717522365, + "147.8" + ], + [ + 1717522380, + "147.7" + ], + [ + 1717522395, + "147.83333333333334" + ], + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.86666666666667" + ], + [ + 1717522440, + "147.5" + ], + [ + 1717522455, + "147.73333333333332" + ], + [ + 1717522470, + "147.86666666666667" + ], + [ + 1717522485, + "150" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "305.46666666666664" + ], + [ + 1717522200, + "315.8333333333333" + ], + [ + 1717522215, + "316.1" + ], + [ + 1717522230, + "305.8666666666667" + ], + [ + 1717522245, + "307.53333333333336" + ], + [ + 1717522260, + "307.3666666666667" + ], + [ + 1717522275, + "303.56666666666666" + ], + [ + 1717522290, + "303.8333333333333" + ], + [ + 1717522305, + "304.1" + ], + [ + 1717522320, + "302.2" + ], + [ + 1717522335, + "304.43333333333334" + ], + [ + 1717522350, + "307.03333333333336" + ], + [ + 1717522365, + "308.9" + ], + [ + 1717522380, + "307.56666666666666" + ], + [ + 1717522395, + "304.56666666666666" + ], + [ + 1717522410, + "304.7" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "313.53333333333336" + ], + [ + 1717522455, + "313.5" + ], + [ + 1717522470, + "311.53333333333336" + ], + [ + 1717522485, + "309.26666666666665" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "509.9" + ], + [ + 1717522200, + "501.3666666666667" + ], + [ + 1717522215, + "501.96666666666664" + ], + [ + 1717522230, + "507.8333333333333" + ], + [ + 1717522245, + "516.5" + ], + [ + 1717522260, + "517.4" + ], + [ + 1717522275, + "523.6" + ], + [ + 1717522290, + "532.4" + ], + [ + 1717522305, + "522.6666666666666" + ], + [ + 1717522320, + "510.6666666666667" + ], + [ + 1717522335, + "511.1666666666667" + ], + [ + 1717522350, + "511.5" + ], + [ + 1717522365, + "511.73333333333335" + ], + [ + 1717522380, + "512.1666666666666" + ], + [ + 1717522395, + "502.26666666666665" + ], + [ + 1717522410, + "492.3666666666667" + ], + [ + 1717522425, + "494.2" + ], + [ + 1717522440, + "498.06666666666666" + ], + [ + 1717522455, + "510.1333333333333" + ], + [ + 1717522470, + "521.7" + ], + [ + 1717522485, + "522.3" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "166.36666666666667" + ], + [ + 1717522200, + "169" + ], + [ + 1717522215, + "164.6" + ], + [ + 1717522230, + "157.56666666666666" + ], + [ + 1717522245, + "161.96666666666667" + ], + [ + 1717522260, + "163.73333333333332" + ], + [ + 1717522275, + "159.33333333333334" + ], + [ + 1717522290, + "161.96666666666667" + ], + [ + 1717522305, + "161.53333333333333" + ], + [ + 1717522320, + "163.73333333333332" + ], + [ + 1717522335, + "161.53333333333333" + ], + [ + 1717522350, + "159.33333333333334" + ], + [ + 1717522365, + "165.93333333333334" + ], + [ + 1717522380, + "166.36666666666667" + ], + [ + 1717522395, + "160.2" + ], + [ + 1717522410, + "164.16666666666666" + ], + [ + 1717522425, + "166.36666666666667" + ], + [ + 1717522440, + "164.6" + ], + [ + 1717522455, + "161.96666666666667" + ], + [ + 1717522470, + "161.53333333333333" + ], + [ + 1717522485, + "166.36666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "286.6" + ], + [ + 1717522200, + "286.6" + ], + [ + 1717522215, + "291" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "262.4" + ], + [ + 1717522260, + "273.4" + ], + [ + 1717522275, + "275.6" + ], + [ + 1717522290, + "255.8" + ], + [ + 1717522305, + "244.8" + ], + [ + 1717522320, + "260.2" + ], + [ + 1717522335, + "286.6" + ], + [ + 1717522350, + "284.4" + ], + [ + 1717522365, + "266.8" + ], + [ + 1717522380, + "260.2" + ], + [ + 1717522395, + "269" + ], + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ], + [ + 1717522455, + "275.6" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "247" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522185, + "286.6" + ], + [ + 1717522200, + "286.6" + ], + [ + 1717522215, + "291" + ], + [ + 1717522230, + "277.8" + ], + [ + 1717522245, + "262.4" + ], + [ + 1717522260, + "273.4" + ], + [ + 1717522275, + "275.6" + ], + [ + 1717522290, + "255.8" + ], + [ + 1717522305, + "244.8" + ], + [ + 1717522320, + "260.2" + ], + [ + 1717522335, + "286.6" + ], + [ + 1717522350, + "284.4" + ], + [ + 1717522365, + "266.8" + ], + [ + 1717522380, + "260.2" + ], + [ + 1717522395, + "269" + ], + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ], + [ + 1717522455, + "275.6" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "247" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522185, + "130.8" + ], + [ + 1717522200, + "130.8" + ], + [ + 1717522215, + "130.8" + ], + [ + 1717522230, + "130.8" + ], + [ + 1717522245, + "130.8" + ], + [ + 1717522260, + "130.8" + ], + [ + 1717522275, + "130.8" + ], + [ + 1717522290, + "130.8" + ], + [ + 1717522305, + "130.8" + ], + [ + 1717522320, + "130.8" + ], + [ + 1717522335, + "130.8" + ], + [ + 1717522350, + "130.8" + ], + [ + 1717522365, + "130.8" + ], + [ + 1717522380, + "130.8" + ], + [ + 1717522395, + "130.8" + ], + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 661, + "bytesSent": 0, + "downloadTime": 6789, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 0, + "requests": 1 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 80, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.172921956, + "linesProcessedPerSecond": 0, + "queueTime": 3.1618759929999998, + "shards": 80, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 46987, + "bytesSent": 0, + "downloadTime": 11517, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 0, + "requests": 1 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 1538028, + "decompressedBytes": 6285672, + "decompressedLines": 8564, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1393758, + "headChunkLines": 1939, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 10503, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 149, + "totalChunksMatched": 105, + "totalLinesSent": 5287, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 42586787, + "execTime": 0.180324239, + "linesProcessedPerSecond": 58245, + "queueTime": 3.450989989, + "shards": 80, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 7679430, + "totalEntriesReturned": 51, + "totalLinesProcessed": 10503, + "totalPostFilterLines": 10503, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717522498 +} diff --git a/web/cypress/fixtures/flowmetrics/hostsOwners.json b/web/cypress/fixtures/flowmetrics/hostsOwners.json new file mode 100644 index 000000000..e4683cc32 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/hostsOwners.json @@ -0,0 +1,5374 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "50.733333333333334" + ], + [ + 1717522485, + "2.2" + ], + [ + 1717522515, + "67.8" + ], + [ + 1717522530, + "120.8" + ], + [ + 1717522545, + "143.4" + ], + [ + 1717522560, + "90.4" + ], + [ + 1717522590, + "4.4" + ], + [ + 1717522635, + "6.6" + ], + [ + 1717522650, + "17.033333333333335" + ], + [ + 1717522665, + "14.833333333333334" + ], + [ + 1717522680, + "4.4" + ], + [ + 1717522695, + "23.6" + ], + [ + 1717522710, + "53.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "179.53333333333333" + ], + [ + 1717522425, + "193.4" + ], + [ + 1717522440, + "192.96666666666667" + ], + [ + 1717522455, + "176.46666666666667" + ], + [ + 1717522470, + "178.66666666666666" + ], + [ + 1717522485, + "185.26666666666668" + ], + [ + 1717522500, + "178.66666666666666" + ], + [ + 1717522515, + "174.26666666666668" + ], + [ + 1717522530, + "173.83333333333334" + ], + [ + 1717522545, + "176.03333333333333" + ], + [ + 1717522560, + "188.46666666666667" + ], + [ + 1717522575, + "188.46666666666667" + ], + [ + 1717522590, + "178.66666666666666" + ], + [ + 1717522605, + "179.1" + ], + [ + 1717522620, + "181.3" + ], + [ + 1717522635, + "180.86666666666667" + ], + [ + 1717522650, + "176.46666666666667" + ], + [ + 1717522665, + "176.46666666666667" + ], + [ + 1717522680, + "179.1" + ], + [ + 1717522695, + "174.7" + ], + [ + 1717522710, + "186.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ], + [ + 1717522560, + "130.8" + ], + [ + 1717522575, + "130.8" + ], + [ + 1717522590, + "130.8" + ], + [ + 1717522605, + "130.8" + ], + [ + 1717522620, + "130.8" + ], + [ + 1717522635, + "130.8" + ], + [ + 1717522650, + "130.8" + ], + [ + 1717522665, + "130.8" + ], + [ + 1717522680, + "130.8" + ], + [ + 1717522695, + "130.8" + ], + [ + 1717522710, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "1015.0333333333333" + ], + [ + 1717522425, + "2291.0333333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ], + [ + 1717522455, + "2287.733333333333" + ], + [ + 1717522470, + "2289.9333333333334" + ], + [ + 1717522485, + "461.06666666666666" + ], + [ + 1717522500, + "4138.6" + ], + [ + 1717522515, + "4134.2" + ], + [ + 1717522530, + "2297.266666666667" + ], + [ + 1717522545, + "2310.3333333333335" + ], + [ + 1717522560, + "2320.9666666666667" + ], + [ + 1717522575, + "2307.9" + ], + [ + 1717522590, + "456.6666666666667" + ], + [ + 1717522605, + "2311.366666666667" + ], + [ + 1717522620, + "2309.1666666666665" + ], + [ + 1717522635, + "456.6666666666667" + ], + [ + 1717522650, + "456.6666666666667" + ], + [ + 1717522665, + "456.6666666666667" + ], + [ + 1717522680, + "456.6666666666667" + ], + [ + 1717522695, + "456.6666666666667" + ], + [ + 1717522710, + "2314.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "1028.2333333333333" + ], + [ + 1717522425, + "2297.633333333333" + ], + [ + 1717522440, + "2288.8333333333335" + ], + [ + 1717522455, + "2287.733333333333" + ], + [ + 1717522470, + "2296.5333333333333" + ], + [ + 1717522485, + "474.26666666666665" + ], + [ + 1717522500, + "4147.4" + ], + [ + 1717522515, + "4136.4" + ], + [ + 1717522530, + "2297.266666666667" + ], + [ + 1717522545, + "2314.733333333333" + ], + [ + 1717522560, + "2325.366666666667" + ], + [ + 1717522575, + "2307.9" + ], + [ + 1717522590, + "456.6666666666667" + ], + [ + 1717522605, + "2317.9666666666667" + ], + [ + 1717522620, + "2315.766666666667" + ], + [ + 1717522635, + "456.6666666666667" + ], + [ + 1717522650, + "456.6666666666667" + ], + [ + 1717522665, + "456.6666666666667" + ], + [ + 1717522680, + "456.6666666666667" + ], + [ + 1717522695, + "456.6666666666667" + ], + [ + 1717522710, + "2314.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ], + [ + 1717522455, + "416.4" + ], + [ + 1717522470, + "392.2" + ], + [ + 1717522485, + "407.6" + ], + [ + 1717522500, + "420.8" + ], + [ + 1717522515, + "423" + ], + [ + 1717522530, + "438.4" + ], + [ + 1717522545, + "416.4" + ], + [ + 1717522560, + "414.2" + ], + [ + 1717522575, + "436.2" + ], + [ + 1717522590, + "420.8" + ], + [ + 1717522605, + "420.8" + ], + [ + 1717522620, + "431.8" + ], + [ + 1717522635, + "421.4" + ], + [ + 1717522650, + "421.4" + ], + [ + 1717522665, + "436.2" + ], + [ + 1717522680, + "429.6" + ], + [ + 1717522695, + "392.2" + ], + [ + 1717522710, + "387.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "429.6" + ], + [ + 1717522425, + "486.8" + ], + [ + 1717522440, + "489" + ], + [ + 1717522455, + "416.4" + ], + [ + 1717522470, + "392.2" + ], + [ + 1717522485, + "407.6" + ], + [ + 1717522500, + "420.8" + ], + [ + 1717522515, + "423" + ], + [ + 1717522530, + "438.4" + ], + [ + 1717522545, + "416.4" + ], + [ + 1717522560, + "414.2" + ], + [ + 1717522575, + "436.2" + ], + [ + 1717522590, + "420.8" + ], + [ + 1717522605, + "420.8" + ], + [ + 1717522620, + "431.8" + ], + [ + 1717522635, + "421.4" + ], + [ + 1717522650, + "421.4" + ], + [ + 1717522665, + "436.2" + ], + [ + 1717522680, + "429.6" + ], + [ + 1717522695, + "392.2" + ], + [ + 1717522710, + "387.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "167.66666666666666" + ], + [ + 1717522425, + "165.9" + ], + [ + 1717522440, + "161.93333333333334" + ], + [ + 1717522455, + "170.86666666666667" + ], + [ + 1717522470, + "172.63333333333333" + ], + [ + 1717522485, + "163.26666666666668" + ], + [ + 1717522500, + "158.86666666666667" + ], + [ + 1717522515, + "158.86666666666667" + ], + [ + 1717522530, + "161.06666666666666" + ], + [ + 1717522545, + "161.06666666666666" + ], + [ + 1717522560, + "161.06666666666666" + ], + [ + 1717522575, + "161.06666666666666" + ], + [ + 1717522590, + "163.7" + ], + [ + 1717522605, + "163.7" + ], + [ + 1717522620, + "157.1" + ], + [ + 1717522635, + "159.3" + ], + [ + 1717522650, + "161.5" + ], + [ + 1717522665, + "165.9" + ], + [ + 1717522680, + "168.1" + ], + [ + 1717522695, + "163.7" + ], + [ + 1717522710, + "163.26666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "593.3333333333334" + ], + [ + 1717522425, + "616" + ], + [ + 1717522440, + "640" + ], + [ + 1717522455, + "648.7666666666667" + ], + [ + 1717522470, + "654.0666666666667" + ], + [ + 1717522485, + "649.6333333333333" + ], + [ + 1717522500, + "649.3666666666667" + ], + [ + 1717522515, + "649.9333333333333" + ], + [ + 1717522530, + "647.0333333333333" + ], + [ + 1717522545, + "646.8" + ], + [ + 1717522560, + "647" + ], + [ + 1717522575, + "647.1" + ], + [ + 1717522590, + "646.6666666666666" + ], + [ + 1717522605, + "649.7" + ], + [ + 1717522620, + "621.8333333333334" + ], + [ + 1717522635, + "589.8666666666667" + ], + [ + 1717522650, + "591.8" + ], + [ + 1717522665, + "595.8" + ], + [ + 1717522680, + "596.2" + ], + [ + 1717522695, + "596.9" + ], + [ + 1717522710, + "598.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "502.2" + ], + [ + 1717522425, + "502.6" + ], + [ + 1717522440, + "492.26666666666665" + ], + [ + 1717522455, + "493.4" + ], + [ + 1717522470, + "504.3666666666667" + ], + [ + 1717522485, + "503.76666666666665" + ], + [ + 1717522500, + "493" + ], + [ + 1717522515, + "480.8333333333333" + ], + [ + 1717522530, + "479.1333333333333" + ], + [ + 1717522545, + "479.26666666666665" + ], + [ + 1717522560, + "479.6333333333333" + ], + [ + 1717522575, + "491.06666666666666" + ], + [ + 1717522590, + "501.56666666666666" + ], + [ + 1717522605, + "489.8666666666667" + ], + [ + 1717522620, + "490.1333333333333" + ], + [ + 1717522635, + "489.8333333333333" + ], + [ + 1717522650, + "478.26666666666665" + ], + [ + 1717522665, + "477.76666666666665" + ], + [ + 1717522680, + "632.2666666666667" + ], + [ + 1717522695, + "633.3666666666667" + ], + [ + 1717522710, + "479.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "469.3666666666667" + ], + [ + 1717522425, + "470.06666666666666" + ], + [ + 1717522440, + "476.9" + ], + [ + 1717522455, + "483.1666666666667" + ], + [ + 1717522470, + "486.3333333333333" + ], + [ + 1717522485, + "487.4" + ], + [ + 1717522500, + "486.46666666666664" + ], + [ + 1717522515, + "482" + ], + [ + 1717522530, + "476.3333333333333" + ], + [ + 1717522545, + "476.3" + ], + [ + 1717522560, + "477.03333333333336" + ], + [ + 1717522575, + "476.7" + ], + [ + 1717522590, + "476.5" + ], + [ + 1717522605, + "476.1666666666667" + ], + [ + 1717522620, + "476.6" + ], + [ + 1717522635, + "472.46666666666664" + ], + [ + 1717522650, + "467.6" + ], + [ + 1717522665, + "468.6" + ], + [ + 1717522680, + "468.76666666666665" + ], + [ + 1717522695, + "473.6666666666667" + ], + [ + 1717522710, + "476.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "409.1666666666667" + ], + [ + 1717522425, + "410.8333333333333" + ], + [ + 1717522440, + "409.46666666666664" + ], + [ + 1717522455, + "409.1666666666667" + ], + [ + 1717522470, + "417.23333333333335" + ], + [ + 1717522485, + "421.1333333333333" + ], + [ + 1717522500, + "418.3666666666667" + ], + [ + 1717522515, + "418.03333333333336" + ], + [ + 1717522530, + "420.5" + ], + [ + 1717522545, + "421.6333333333333" + ], + [ + 1717522560, + "420.76666666666665" + ], + [ + 1717522575, + "420.93333333333334" + ], + [ + 1717522590, + "419.5" + ], + [ + 1717522605, + "421.23333333333335" + ], + [ + 1717522620, + "423.76666666666665" + ], + [ + 1717522635, + "420.1666666666667" + ], + [ + 1717522650, + "418.3" + ], + [ + 1717522665, + "420.3333333333333" + ], + [ + 1717522680, + "419.8333333333333" + ], + [ + 1717522695, + "415.3666666666667" + ], + [ + 1717522710, + "415.1666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.96666666666667" + ], + [ + 1717522440, + "147.66666666666666" + ], + [ + 1717522455, + "147.83333333333334" + ], + [ + 1717522470, + "147.96666666666667" + ], + [ + 1717522485, + "148.1" + ], + [ + 1717522500, + "147.93333333333334" + ], + [ + 1717522515, + "147.6" + ], + [ + 1717522530, + "147.7" + ], + [ + 1717522545, + "148.03333333333333" + ], + [ + 1717522560, + "148.26666666666668" + ], + [ + 1717522575, + "148.1" + ], + [ + 1717522590, + "147.9" + ], + [ + 1717522605, + "147.93333333333334" + ], + [ + 1717522620, + "147.93333333333334" + ], + [ + 1717522635, + "147.76666666666668" + ], + [ + 1717522650, + "147.66666666666666" + ], + [ + 1717522665, + "147.53333333333333" + ], + [ + 1717522680, + "147.5" + ], + [ + 1717522695, + "147.66666666666666" + ], + [ + 1717522710, + "147.83333333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "306.8333333333333" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "309.5" + ], + [ + 1717522455, + "309.06666666666666" + ], + [ + 1717522470, + "311.1" + ], + [ + 1717522485, + "313.56666666666666" + ], + [ + 1717522500, + "311.3333333333333" + ], + [ + 1717522515, + "309.06666666666666" + ], + [ + 1717522530, + "309.8666666666667" + ], + [ + 1717522545, + "312.6666666666667" + ], + [ + 1717522560, + "314.7" + ], + [ + 1717522575, + "314.5" + ], + [ + 1717522590, + "311.76666666666665" + ], + [ + 1717522605, + "311.76666666666665" + ], + [ + 1717522620, + "314.8666666666667" + ], + [ + 1717522635, + "313.6" + ], + [ + 1717522650, + "308.73333333333335" + ], + [ + 1717522665, + "308.1666666666667" + ], + [ + 1717522680, + "308.9" + ], + [ + 1717522695, + "306.6666666666667" + ], + [ + 1717522710, + "306.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "493.7" + ], + [ + 1717522425, + "496.53333333333336" + ], + [ + 1717522440, + "501.7" + ], + [ + 1717522455, + "500.26666666666665" + ], + [ + 1717522470, + "501.8333333333333" + ], + [ + 1717522485, + "502" + ], + [ + 1717522500, + "504.46666666666664" + ], + [ + 1717522515, + "503.4" + ], + [ + 1717522530, + "500.1666666666667" + ], + [ + 1717522545, + "505" + ], + [ + 1717522560, + "503.3" + ], + [ + 1717522575, + "498.9" + ], + [ + 1717522590, + "500.93333333333334" + ], + [ + 1717522605, + "502.6333333333333" + ], + [ + 1717522620, + "501.1333333333333" + ], + [ + 1717522635, + "496.56666666666666" + ], + [ + 1717522650, + "493.6666666666667" + ], + [ + 1717522665, + "494.06666666666666" + ], + [ + 1717522680, + "496.23333333333335" + ], + [ + 1717522695, + "501.23333333333335" + ], + [ + 1717522710, + "501.3666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ], + [ + 1717522455, + "249.2" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "275.6" + ], + [ + 1717522500, + "262.4" + ], + [ + 1717522515, + "249.2" + ], + [ + 1717522530, + "247" + ], + [ + 1717522545, + "247" + ], + [ + 1717522560, + "247" + ], + [ + 1717522575, + "262.4" + ], + [ + 1717522590, + "273.4" + ], + [ + 1717522605, + "264.6" + ], + [ + 1717522620, + "260.2" + ], + [ + 1717522635, + "258" + ], + [ + 1717522650, + "262.4" + ], + [ + 1717522665, + "264.6" + ], + [ + 1717522680, + "255.8" + ], + [ + 1717522695, + "266.8" + ], + [ + 1717522710, + "269" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "258" + ], + [ + 1717522425, + "247" + ], + [ + 1717522440, + "247" + ], + [ + 1717522455, + "249.2" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "275.6" + ], + [ + 1717522500, + "262.4" + ], + [ + 1717522515, + "249.2" + ], + [ + 1717522530, + "247" + ], + [ + 1717522545, + "247" + ], + [ + 1717522560, + "247" + ], + [ + 1717522575, + "262.4" + ], + [ + 1717522590, + "273.4" + ], + [ + 1717522605, + "264.6" + ], + [ + 1717522620, + "260.2" + ], + [ + 1717522635, + "258" + ], + [ + 1717522650, + "262.4" + ], + [ + 1717522665, + "264.6" + ], + [ + 1717522680, + "255.8" + ], + [ + 1717522695, + "266.8" + ], + [ + 1717522710, + "269" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ], + [ + 1717522560, + "130.8" + ], + [ + 1717522575, + "130.8" + ], + [ + 1717522590, + "130.8" + ], + [ + 1717522605, + "130.8" + ], + [ + 1717522620, + "130.8" + ], + [ + 1717522635, + "130.8" + ], + [ + 1717522650, + "130.8" + ], + [ + 1717522665, + "130.8" + ], + [ + 1717522680, + "130.8" + ], + [ + 1717522695, + "130.8" + ], + [ + 1717522710, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ], + [ + 1717522560, + "130.8" + ], + [ + 1717522575, + "130.8" + ], + [ + 1717522590, + "130.8" + ], + [ + 1717522605, + "130.8" + ], + [ + 1717522620, + "130.8" + ], + [ + 1717522635, + "130.8" + ], + [ + 1717522650, + "130.8" + ], + [ + 1717522665, + "130.8" + ], + [ + 1717522680, + "130.8" + ], + [ + 1717522695, + "130.8" + ], + [ + 1717522710, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "102.4" + ], + [ + 1717522425, + "120.66666666666667" + ], + [ + 1717522440, + "120.66666666666667" + ], + [ + 1717522455, + "106.8" + ], + [ + 1717522470, + "106.8" + ], + [ + 1717522485, + "106.8" + ], + [ + 1717522500, + "116.16666666666667" + ], + [ + 1717522515, + "120.56666666666666" + ], + [ + 1717522530, + "117.8" + ], + [ + 1717522545, + "111.2" + ], + [ + 1717522560, + "106.8" + ], + [ + 1717522575, + "125.06666666666666" + ], + [ + 1717522590, + "125.63333333333334" + ], + [ + 1717522605, + "109.56666666666666" + ], + [ + 1717522620, + "104.6" + ], + [ + 1717522635, + "114.06666666666666" + ], + [ + 1717522650, + "118.46666666666667" + ], + [ + 1717522665, + "106.8" + ], + [ + 1717522680, + "106.8" + ], + [ + 1717522695, + "111.2" + ], + [ + 1717522710, + "129.46666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ], + [ + 1717522455, + "401" + ], + [ + 1717522470, + "403.2" + ], + [ + 1717522485, + "414.2" + ], + [ + 1717522500, + "414.2" + ], + [ + 1717522515, + "385.6" + ], + [ + 1717522530, + "385.6" + ], + [ + 1717522545, + "401" + ], + [ + 1717522560, + "394.8" + ], + [ + 1717522575, + "366.2" + ], + [ + 1717522590, + "365.8" + ], + [ + 1717522605, + "370.2" + ], + [ + 1717522620, + "381.2" + ], + [ + 1717522635, + "401" + ], + [ + 1717522650, + "381.2" + ], + [ + 1717522665, + "372.4" + ], + [ + 1717522680, + "392.2" + ], + [ + 1717522695, + "394.4" + ], + [ + 1717522710, + "385.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "403.2" + ], + [ + 1717522425, + "420.8" + ], + [ + 1717522440, + "407.6" + ], + [ + 1717522455, + "401" + ], + [ + 1717522470, + "403.2" + ], + [ + 1717522485, + "414.2" + ], + [ + 1717522500, + "414.2" + ], + [ + 1717522515, + "385.6" + ], + [ + 1717522530, + "385.6" + ], + [ + 1717522545, + "401" + ], + [ + 1717522560, + "394.8" + ], + [ + 1717522575, + "366.2" + ], + [ + 1717522590, + "365.8" + ], + [ + 1717522605, + "370.2" + ], + [ + 1717522620, + "381.2" + ], + [ + 1717522635, + "401" + ], + [ + 1717522650, + "381.2" + ], + [ + 1717522665, + "372.4" + ], + [ + 1717522680, + "392.2" + ], + [ + 1717522695, + "394.4" + ], + [ + 1717522710, + "385.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ], + [ + 1717522560, + "130.8" + ], + [ + 1717522575, + "130.8" + ], + [ + 1717522590, + "130.8" + ], + [ + 1717522605, + "130.8" + ], + [ + 1717522620, + "130.8" + ], + [ + 1717522635, + "130.8" + ], + [ + 1717522650, + "130.8" + ], + [ + 1717522665, + "130.8" + ], + [ + 1717522680, + "130.8" + ], + [ + 1717522695, + "130.8" + ], + [ + 1717522710, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ], + [ + 1717522455, + "381.2" + ], + [ + 1717522470, + "359.2" + ], + [ + 1717522485, + "343.8" + ], + [ + 1717522500, + "350.4" + ], + [ + 1717522515, + "365.8" + ], + [ + 1717522530, + "359.2" + ], + [ + 1717522545, + "359.2" + ], + [ + 1717522560, + "379" + ], + [ + 1717522575, + "383.4" + ], + [ + 1717522590, + "390" + ], + [ + 1717522605, + "383.4" + ], + [ + 1717522620, + "379" + ], + [ + 1717522635, + "352.6" + ], + [ + 1717522650, + "357" + ], + [ + 1717522665, + "396.6" + ], + [ + 1717522680, + "387.8" + ], + [ + 1717522695, + "374.6" + ], + [ + 1717522710, + "365.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "359.2" + ], + [ + 1717522425, + "363.6" + ], + [ + 1717522440, + "379" + ], + [ + 1717522455, + "381.2" + ], + [ + 1717522470, + "359.2" + ], + [ + 1717522485, + "343.8" + ], + [ + 1717522500, + "350.4" + ], + [ + 1717522515, + "365.8" + ], + [ + 1717522530, + "359.2" + ], + [ + 1717522545, + "359.2" + ], + [ + 1717522560, + "379" + ], + [ + 1717522575, + "383.4" + ], + [ + 1717522590, + "390" + ], + [ + 1717522605, + "383.4" + ], + [ + 1717522620, + "379" + ], + [ + 1717522635, + "352.6" + ], + [ + 1717522650, + "357" + ], + [ + 1717522665, + "396.6" + ], + [ + 1717522680, + "387.8" + ], + [ + 1717522695, + "374.6" + ], + [ + 1717522710, + "365.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "150.5" + ], + [ + 1717522425, + "162.6" + ], + [ + 1717522440, + "156" + ], + [ + 1717522455, + "159.96666666666667" + ], + [ + 1717522470, + "166.56666666666666" + ], + [ + 1717522485, + "159.96666666666667" + ], + [ + 1717522500, + "155.56666666666666" + ], + [ + 1717522515, + "160.4" + ], + [ + 1717522530, + "162.6" + ], + [ + 1717522545, + "141.7" + ], + [ + 1717522560, + "142.13333333333333" + ], + [ + 1717522575, + "160.4" + ], + [ + 1717522590, + "152.93333333333334" + ], + [ + 1717522605, + "118.6" + ], + [ + 1717522620, + "148.3" + ], + [ + 1717522635, + "148.3" + ], + [ + 1717522650, + "136.86666666666667" + ], + [ + 1717522665, + "155.13333333333333" + ], + [ + 1717522680, + "139.93333333333334" + ], + [ + 1717522695, + "135.53333333333333" + ], + [ + 1717522710, + "132.9" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "54233.76666666667" + ], + [ + 1717522425, + "70221.2" + ], + [ + 1717522440, + "69814.4" + ], + [ + 1717522455, + "53250.36666666667" + ], + [ + 1717522470, + "53189.5" + ], + [ + 1717522485, + "53358.13333333333" + ], + [ + 1717522500, + "53375.9" + ], + [ + 1717522515, + "53572.5" + ], + [ + 1717522530, + "53124.53333333333" + ], + [ + 1717522545, + "52812.3" + ], + [ + 1717522560, + "53434.76666666667" + ], + [ + 1717522575, + "52912.933333333334" + ], + [ + 1717522590, + "52466.333333333336" + ], + [ + 1717522605, + "52893.1" + ], + [ + 1717522620, + "53304.63333333333" + ], + [ + 1717522635, + "53926.066666666666" + ], + [ + 1717522650, + "53510.7" + ], + [ + 1717522665, + "53138.96666666667" + ], + [ + 1717522680, + "53357.566666666666" + ], + [ + 1717522695, + "53153.76666666667" + ], + [ + 1717522710, + "54639.63333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "19336" + ], + [ + 1717522425, + "19844.266666666666" + ], + [ + 1717522440, + "20264.7" + ], + [ + 1717522455, + "19824.566666666666" + ], + [ + 1717522470, + "19576.466666666667" + ], + [ + 1717522485, + "19795.333333333332" + ], + [ + 1717522500, + "20086.966666666667" + ], + [ + 1717522515, + "19965.166666666668" + ], + [ + 1717522530, + "19765.5" + ], + [ + 1717522545, + "19651.133333333335" + ], + [ + 1717522560, + "19728.233333333334" + ], + [ + 1717522575, + "19542.8" + ], + [ + 1717522590, + "19361.133333333335" + ], + [ + 1717522605, + "19517.1" + ], + [ + 1717522620, + "19720.333333333332" + ], + [ + 1717522635, + "19751.633333333335" + ], + [ + 1717522650, + "19555.066666666666" + ], + [ + 1717522665, + "19520.2" + ], + [ + 1717522680, + "19716.3" + ], + [ + 1717522695, + "19770.3" + ], + [ + 1717522710, + "19562.333333333332" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "49641.333333333336" + ], + [ + 1717522425, + "51774.1" + ], + [ + 1717522440, + "51269.23333333333" + ], + [ + 1717522455, + "49014.76666666667" + ], + [ + 1717522470, + "48593.23333333333" + ], + [ + 1717522485, + "48844.933333333334" + ], + [ + 1717522500, + "49199.433333333334" + ], + [ + 1717522515, + "49024.76666666667" + ], + [ + 1717522530, + "48459.833333333336" + ], + [ + 1717522545, + "49501.46666666667" + ], + [ + 1717522560, + "50220.1" + ], + [ + 1717522575, + "48663.76666666667" + ], + [ + 1717522590, + "47987.8" + ], + [ + 1717522605, + "48126" + ], + [ + 1717522620, + "49061.96666666667" + ], + [ + 1717522635, + "49451.3" + ], + [ + 1717522650, + "48658.933333333334" + ], + [ + 1717522665, + "48682.5" + ], + [ + 1717522680, + "49911.6" + ], + [ + 1717522695, + "53873.933333333334" + ], + [ + 1717522710, + "54769.666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "44163.666666666664" + ], + [ + 1717522425, + "44837.6" + ], + [ + 1717522440, + "44507.833333333336" + ], + [ + 1717522455, + "43731.1" + ], + [ + 1717522470, + "43525.1" + ], + [ + 1717522485, + "43703.86666666667" + ], + [ + 1717522500, + "43938.53333333333" + ], + [ + 1717522515, + "44052.666666666664" + ], + [ + 1717522530, + "43759.3" + ], + [ + 1717522545, + "43736.8" + ], + [ + 1717522560, + "44137.36666666667" + ], + [ + 1717522575, + "43903.7" + ], + [ + 1717522590, + "43640.333333333336" + ], + [ + 1717522605, + "43454.03333333333" + ], + [ + 1717522620, + "43497.666666666664" + ], + [ + 1717522635, + "43956.8" + ], + [ + 1717522650, + "44008.4" + ], + [ + 1717522665, + "44049.1" + ], + [ + 1717522680, + "44514.76666666667" + ], + [ + 1717522695, + "44087.433333333334" + ], + [ + 1717522710, + "44235.933333333334" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "58.3" + ], + [ + 1717522425, + "75.7" + ], + [ + 1717522440, + "75.7" + ], + [ + 1717522455, + "75.7" + ], + [ + 1717522470, + "75.7" + ], + [ + 1717522485, + "17.6" + ], + [ + 1717522500, + "125" + ], + [ + 1717522515, + "133.8" + ], + [ + 1717522530, + "93.3" + ], + [ + 1717522545, + "84.5" + ], + [ + 1717522560, + "75.7" + ], + [ + 1717522575, + "75.7" + ], + [ + 1717522590, + "17.6" + ], + [ + 1717522605, + "66.9" + ], + [ + 1717522620, + "66.9" + ], + [ + 1717522635, + "17.6" + ], + [ + 1717522650, + "8.8" + ], + [ + 1717522710, + "58.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "5068.366666666667" + ], + [ + 1717522425, + "5616.233333333334" + ], + [ + 1717522440, + "5618.933333333333" + ], + [ + 1717522455, + "5222.533333333334" + ], + [ + 1717522470, + "5195.7" + ], + [ + 1717522485, + "4885.1" + ], + [ + 1717522500, + "5003" + ], + [ + 1717522515, + "5402.9" + ], + [ + 1717522530, + "5597.366666666667" + ], + [ + 1717522545, + "5396.5" + ], + [ + 1717522560, + "5249.8" + ], + [ + 1717522575, + "5006.4" + ], + [ + 1717522590, + "4909.5" + ], + [ + 1717522605, + "5129.966666666666" + ], + [ + 1717522620, + "4975.866666666667" + ], + [ + 1717522635, + "4810.833333333333" + ], + [ + 1717522650, + "4799.666666666667" + ], + [ + 1717522665, + "4818.166666666667" + ], + [ + 1717522680, + "4800.033333333334" + ], + [ + 1717522695, + "4778.366666666667" + ], + [ + 1717522710, + "4840.666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "20736.666666666668" + ], + [ + 1717522425, + "20371.8" + ], + [ + 1717522440, + "19829.233333333334" + ], + [ + 1717522455, + "20092.3" + ], + [ + 1717522470, + "19940.3" + ], + [ + 1717522485, + "19290.5" + ], + [ + 1717522500, + "19272.733333333334" + ], + [ + 1717522515, + "20122.666666666668" + ], + [ + 1717522530, + "20216.4" + ], + [ + 1717522545, + "19351.866666666665" + ], + [ + 1717522560, + "19265.233333333334" + ], + [ + 1717522575, + "20108.2" + ], + [ + 1717522590, + "20115.233333333334" + ], + [ + 1717522605, + "19376.2" + ], + [ + 1717522620, + "19432.066666666666" + ], + [ + 1717522635, + "20189.1" + ], + [ + 1717522650, + "20200.2" + ], + [ + 1717522665, + "19383.633333333335" + ], + [ + 1717522680, + "20059.066666666666" + ], + [ + 1717522695, + "20967.733333333334" + ], + [ + 1717522710, + "20317.966666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ], + [ + 1717522455, + "244.93333333333334" + ], + [ + 1717522470, + "244.93333333333334" + ], + [ + 1717522485, + "13.2" + ], + [ + 1717522500, + "470.93333333333334" + ], + [ + 1717522515, + "484.1333333333333" + ], + [ + 1717522530, + "260.43333333333334" + ], + [ + 1717522545, + "251.63333333333333" + ], + [ + 1717522560, + "250.56666666666666" + ], + [ + 1717522575, + "250.56666666666666" + ], + [ + 1717522590, + "13.2" + ], + [ + 1717522605, + "239.73333333333332" + ], + [ + 1717522620, + "244.13333333333333" + ], + [ + 1717522635, + "13.2" + ], + [ + 1717522650, + "4.4" + ], + [ + 1717522710, + "235.96666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "129.63333333333333" + ], + [ + 1717522425, + "245.36666666666667" + ], + [ + 1717522440, + "245.36666666666667" + ], + [ + 1717522455, + "244.93333333333334" + ], + [ + 1717522470, + "244.93333333333334" + ], + [ + 1717522485, + "13.2" + ], + [ + 1717522500, + "470.93333333333334" + ], + [ + 1717522515, + "484.1333333333333" + ], + [ + 1717522530, + "260.43333333333334" + ], + [ + 1717522545, + "251.63333333333333" + ], + [ + 1717522560, + "250.56666666666666" + ], + [ + 1717522575, + "250.56666666666666" + ], + [ + 1717522590, + "13.2" + ], + [ + 1717522605, + "239.73333333333332" + ], + [ + 1717522620, + "244.13333333333333" + ], + [ + 1717522635, + "13.2" + ], + [ + 1717522650, + "4.4" + ], + [ + 1717522710, + "235.96666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ], + [ + 1717522455, + "126" + ], + [ + 1717522470, + "126" + ], + [ + 1717522485, + "123.8" + ], + [ + 1717522500, + "128.2" + ], + [ + 1717522515, + "132.6" + ], + [ + 1717522530, + "132.6" + ], + [ + 1717522545, + "128.2" + ], + [ + 1717522560, + "128.2" + ], + [ + 1717522575, + "128.2" + ], + [ + 1717522590, + "123.8" + ], + [ + 1717522605, + "123.8" + ], + [ + 1717522620, + "123.8" + ], + [ + 1717522635, + "123.8" + ], + [ + 1717522650, + "123.8" + ], + [ + 1717522665, + "123.8" + ], + [ + 1717522680, + "123.8" + ], + [ + 1717522695, + "123.8" + ], + [ + 1717522710, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "126" + ], + [ + 1717522425, + "130.4" + ], + [ + 1717522440, + "130.4" + ], + [ + 1717522455, + "126" + ], + [ + 1717522470, + "126" + ], + [ + 1717522485, + "123.8" + ], + [ + 1717522500, + "128.2" + ], + [ + 1717522515, + "132.6" + ], + [ + 1717522530, + "132.6" + ], + [ + 1717522545, + "128.2" + ], + [ + 1717522560, + "128.2" + ], + [ + 1717522575, + "128.2" + ], + [ + 1717522590, + "123.8" + ], + [ + 1717522605, + "123.8" + ], + [ + 1717522620, + "123.8" + ], + [ + 1717522635, + "123.8" + ], + [ + 1717522650, + "123.8" + ], + [ + 1717522665, + "123.8" + ], + [ + 1717522680, + "123.8" + ], + [ + 1717522695, + "123.8" + ], + [ + 1717522710, + "123.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "136.5" + ], + [ + 1717522425, + "139.13333333333333" + ], + [ + 1717522440, + "141.33333333333334" + ], + [ + 1717522455, + "139.13333333333333" + ], + [ + 1717522470, + "141.76666666666668" + ], + [ + 1717522485, + "141.33333333333334" + ], + [ + 1717522500, + "138.7" + ], + [ + 1717522515, + "136.93333333333334" + ], + [ + 1717522530, + "136.93333333333334" + ], + [ + 1717522545, + "139.13333333333333" + ], + [ + 1717522560, + "136.93333333333334" + ], + [ + 1717522575, + "134.3" + ], + [ + 1717522590, + "136.93333333333334" + ], + [ + 1717522605, + "134.73333333333332" + ], + [ + 1717522620, + "129.9" + ], + [ + 1717522635, + "134.3" + ], + [ + 1717522650, + "136.5" + ], + [ + 1717522665, + "136.5" + ], + [ + 1717522680, + "136.5" + ], + [ + 1717522695, + "134.3" + ], + [ + 1717522710, + "136.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522425, + "21.8" + ], + [ + 1717522440, + "21.8" + ], + [ + 1717522455, + "21.8" + ], + [ + 1717522470, + "21.8" + ], + [ + 1717522500, + "43.6" + ], + [ + 1717522575, + "21.8" + ], + [ + 1717522605, + "21.8" + ], + [ + 1717522620, + "21.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ], + [ + 1717522560, + "130.8" + ], + [ + 1717522575, + "130.8" + ], + [ + 1717522590, + "130.8" + ], + [ + 1717522605, + "130.8" + ], + [ + 1717522620, + "130.8" + ], + [ + 1717522635, + "130.8" + ], + [ + 1717522650, + "130.8" + ], + [ + 1717522665, + "130.8" + ], + [ + 1717522680, + "130.8" + ], + [ + 1717522695, + "130.8" + ], + [ + 1717522710, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "591.1666666666666" + ], + [ + 1717522425, + "613.5" + ], + [ + 1717522440, + "637.6333333333333" + ], + [ + 1717522455, + "642" + ], + [ + 1717522470, + "645.2333333333333" + ], + [ + 1717522485, + "643.1" + ], + [ + 1717522500, + "642.7333333333333" + ], + [ + 1717522515, + "645.4" + ], + [ + 1717522530, + "647" + ], + [ + 1717522545, + "644.6" + ], + [ + 1717522560, + "642.5" + ], + [ + 1717522575, + "642.7333333333333" + ], + [ + 1717522590, + "642.5" + ], + [ + 1717522605, + "645.4" + ], + [ + 1717522620, + "619.3333333333334" + ], + [ + 1717522635, + "589.6" + ], + [ + 1717522650, + "589.5" + ], + [ + 1717522665, + "591.3333333333334" + ], + [ + 1717522680, + "593.8" + ], + [ + 1717522695, + "594.5" + ], + [ + 1717522710, + "596.2333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "484.53333333333336" + ], + [ + 1717522425, + "487.1" + ], + [ + 1717522440, + "485.56666666666666" + ], + [ + 1717522455, + "484.3666666666667" + ], + [ + 1717522470, + "484.3" + ], + [ + 1717522485, + "486.1" + ], + [ + 1717522500, + "486.46666666666664" + ], + [ + 1717522515, + "483.1666666666667" + ], + [ + 1717522530, + "483.8666666666667" + ], + [ + 1717522545, + "481.76666666666665" + ], + [ + 1717522560, + "481.96666666666664" + ], + [ + 1717522575, + "486.9" + ], + [ + 1717522590, + "483.96666666666664" + ], + [ + 1717522605, + "480.8666666666667" + ], + [ + 1717522620, + "481.3" + ], + [ + 1717522635, + "483.26666666666665" + ], + [ + 1717522650, + "484.9" + ], + [ + 1717522665, + "484.43333333333334" + ], + [ + 1717522680, + "482.3666666666667" + ], + [ + 1717522695, + "481.43333333333334" + ], + [ + 1717522710, + "481.56666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "481.2" + ], + [ + 1717522425, + "478.8" + ], + [ + 1717522440, + "477.43333333333334" + ], + [ + 1717522455, + "479.76666666666665" + ], + [ + 1717522470, + "480.96666666666664" + ], + [ + 1717522485, + "480.8333333333333" + ], + [ + 1717522500, + "480.56666666666666" + ], + [ + 1717522515, + "478.1" + ], + [ + 1717522530, + "476.03333333333336" + ], + [ + 1717522545, + "473.7" + ], + [ + 1717522560, + "474.06666666666666" + ], + [ + 1717522575, + "476.1" + ], + [ + 1717522590, + "479.1333333333333" + ], + [ + 1717522605, + "480.6" + ], + [ + 1717522620, + "477.93333333333334" + ], + [ + 1717522635, + "473.8666666666667" + ], + [ + 1717522650, + "469.23333333333335" + ], + [ + 1717522665, + "466.96666666666664" + ], + [ + 1717522680, + "467.6" + ], + [ + 1717522695, + "474.03333333333336" + ], + [ + 1717522710, + "476.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "408.1333333333333" + ], + [ + 1717522425, + "406.46666666666664" + ], + [ + 1717522440, + "407.3333333333333" + ], + [ + 1717522455, + "407.1666666666667" + ], + [ + 1717522470, + "404.53333333333336" + ], + [ + 1717522485, + "409.1333333333333" + ], + [ + 1717522500, + "417.9" + ], + [ + 1717522515, + "422.26666666666665" + ], + [ + 1717522530, + "417.1333333333333" + ], + [ + 1717522545, + "412.2" + ], + [ + 1717522560, + "411.93333333333334" + ], + [ + 1717522575, + "414.43333333333334" + ], + [ + 1717522590, + "415.6666666666667" + ], + [ + 1717522605, + "416.26666666666665" + ], + [ + 1717522620, + "418.26666666666665" + ], + [ + 1717522635, + "416.6666666666667" + ], + [ + 1717522650, + "412.93333333333334" + ], + [ + 1717522665, + "412.9" + ], + [ + 1717522680, + "414.73333333333335" + ], + [ + 1717522695, + "414.6333333333333" + ], + [ + 1717522710, + "413.96666666666664" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "148.13333333333333" + ], + [ + 1717522425, + "147.86666666666667" + ], + [ + 1717522440, + "147.5" + ], + [ + 1717522455, + "147.73333333333332" + ], + [ + 1717522470, + "147.86666666666667" + ], + [ + 1717522485, + "150" + ], + [ + 1717522500, + "150.13333333333333" + ], + [ + 1717522515, + "147.83333333333334" + ], + [ + 1717522530, + "147.66666666666666" + ], + [ + 1717522545, + "148" + ], + [ + 1717522560, + "148.26666666666668" + ], + [ + 1717522575, + "148.06666666666666" + ], + [ + 1717522590, + "147.9" + ], + [ + 1717522605, + "147.76666666666668" + ], + [ + 1717522620, + "147.83333333333334" + ], + [ + 1717522635, + "147.83333333333334" + ], + [ + 1717522650, + "147.83333333333334" + ], + [ + 1717522665, + "147.9" + ], + [ + 1717522680, + "147.76666666666668" + ], + [ + 1717522695, + "147.73333333333332" + ], + [ + 1717522710, + "147.66666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "304.7" + ], + [ + 1717522425, + "309.26666666666665" + ], + [ + 1717522440, + "313.53333333333336" + ], + [ + 1717522455, + "313.5" + ], + [ + 1717522470, + "311.53333333333336" + ], + [ + 1717522485, + "309.26666666666665" + ], + [ + 1717522500, + "311.26666666666665" + ], + [ + 1717522515, + "311.8" + ], + [ + 1717522530, + "310.3666666666667" + ], + [ + 1717522545, + "310.56666666666666" + ], + [ + 1717522560, + "312.43333333333334" + ], + [ + 1717522575, + "311.7" + ], + [ + 1717522590, + "309.56666666666666" + ], + [ + 1717522605, + "310.56666666666666" + ], + [ + 1717522620, + "308.93333333333334" + ], + [ + 1717522635, + "306.53333333333336" + ], + [ + 1717522650, + "308.4" + ], + [ + 1717522665, + "309" + ], + [ + 1717522680, + "306.8" + ], + [ + 1717522695, + "308.56666666666666" + ], + [ + 1717522710, + "310.53333333333336" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "492.3666666666667" + ], + [ + 1717522425, + "494.2" + ], + [ + 1717522440, + "498.06666666666666" + ], + [ + 1717522455, + "510.1333333333333" + ], + [ + 1717522470, + "521.7" + ], + [ + 1717522485, + "522.3" + ], + [ + 1717522500, + "521.6" + ], + [ + 1717522515, + "519.8333333333334" + ], + [ + 1717522530, + "518.9333333333333" + ], + [ + 1717522545, + "519.7666666666667" + ], + [ + 1717522560, + "508.3666666666667" + ], + [ + 1717522575, + "509.8666666666667" + ], + [ + 1717522590, + "511.3666666666667" + ], + [ + 1717522605, + "498.3333333333333" + ], + [ + 1717522620, + "508.1666666666667" + ], + [ + 1717522635, + "506.53333333333336" + ], + [ + 1717522650, + "493" + ], + [ + 1717522665, + "504" + ], + [ + 1717522680, + "514.7333333333333" + ], + [ + 1717522695, + "507.1666666666667" + ], + [ + 1717522710, + "511.1333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "164.16666666666666" + ], + [ + 1717522425, + "166.36666666666667" + ], + [ + 1717522440, + "164.6" + ], + [ + 1717522455, + "161.96666666666667" + ], + [ + 1717522470, + "161.53333333333333" + ], + [ + 1717522485, + "166.36666666666667" + ], + [ + 1717522500, + "166.36666666666667" + ], + [ + 1717522515, + "164.16666666666666" + ], + [ + 1717522530, + "161.96666666666667" + ], + [ + 1717522545, + "161.96666666666667" + ], + [ + 1717522560, + "159.76666666666668" + ], + [ + 1717522575, + "157.56666666666666" + ], + [ + 1717522590, + "161.53333333333333" + ], + [ + 1717522605, + "165.93333333333334" + ], + [ + 1717522620, + "164.6" + ], + [ + 1717522635, + "164.6" + ], + [ + 1717522650, + "161.53333333333333" + ], + [ + 1717522665, + "159.33333333333334" + ], + [ + 1717522680, + "161.96666666666667" + ], + [ + 1717522695, + "168.56666666666666" + ], + [ + 1717522710, + "166.36666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ], + [ + 1717522455, + "275.6" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "247" + ], + [ + 1717522500, + "253.6" + ], + [ + 1717522515, + "273.4" + ], + [ + 1717522530, + "275.6" + ], + [ + 1717522545, + "264.6" + ], + [ + 1717522560, + "269" + ], + [ + 1717522575, + "284.4" + ], + [ + 1717522590, + "286.6" + ], + [ + 1717522605, + "275.6" + ], + [ + 1717522620, + "269" + ], + [ + 1717522635, + "269" + ], + [ + 1717522650, + "264.6" + ], + [ + 1717522665, + "262.4" + ], + [ + 1717522680, + "277.8" + ], + [ + 1717522695, + "286.6" + ], + [ + 1717522710, + "277.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717522410, + "273.4" + ], + [ + 1717522425, + "271.2" + ], + [ + 1717522440, + "273.4" + ], + [ + 1717522455, + "275.6" + ], + [ + 1717522470, + "264.6" + ], + [ + 1717522485, + "247" + ], + [ + 1717522500, + "253.6" + ], + [ + 1717522515, + "273.4" + ], + [ + 1717522530, + "275.6" + ], + [ + 1717522545, + "264.6" + ], + [ + 1717522560, + "269" + ], + [ + 1717522575, + "284.4" + ], + [ + 1717522590, + "286.6" + ], + [ + 1717522605, + "275.6" + ], + [ + 1717522620, + "269" + ], + [ + 1717522635, + "269" + ], + [ + 1717522650, + "264.6" + ], + [ + 1717522665, + "262.4" + ], + [ + 1717522680, + "277.8" + ], + [ + 1717522695, + "286.6" + ], + [ + 1717522710, + "277.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717522410, + "130.8" + ], + [ + 1717522425, + "130.8" + ], + [ + 1717522440, + "130.8" + ], + [ + 1717522455, + "130.8" + ], + [ + 1717522470, + "130.8" + ], + [ + 1717522485, + "130.8" + ], + [ + 1717522500, + "130.8" + ], + [ + 1717522515, + "130.8" + ], + [ + 1717522530, + "130.8" + ], + [ + 1717522545, + "130.8" + ], + [ + 1717522560, + "130.8" + ], + [ + 1717522575, + "130.8" + ], + [ + 1717522590, + "130.8" + ], + [ + 1717522605, + "130.8" + ], + [ + 1717522620, + "130.8" + ], + [ + 1717522635, + "130.8" + ], + [ + 1717522650, + "130.8" + ], + [ + 1717522665, + "130.8" + ], + [ + 1717522680, + "130.8" + ], + [ + 1717522695, + "130.8" + ], + [ + 1717522710, + "130.8" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 526, + "bytesSent": 0, + "downloadTime": 16460, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 96, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.130007052, + "linesProcessedPerSecond": 0, + "queueTime": 2.772827985, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 24373, + "bytesSent": 0, + "downloadTime": 11405, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 2343975, + "decompressedBytes": 9611924, + "decompressedLines": 13156, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1647397, + "headChunkLines": 2262, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 15418, + "totalDuplicates": 2297 + }, + "chunksDownloadTime": 2289613, + "totalChunksDownloaded": 5, + "totalChunksRef": 5 + }, + "totalBatches": 184, + "totalChunksMatched": 127, + "totalLinesSent": 5841, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 70624690, + "execTime": 0.159424712, + "linesProcessedPerSecond": 96710, + "queueTime": 3.13279199, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 11259321, + "totalEntriesReturned": 51, + "totalLinesProcessed": 15418, + "totalPostFilterLines": 15418, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717522719 +} diff --git a/web/cypress/fixtures/flowmetrics/namespace.json b/web/cypress/fixtures/flowmetrics/namespace.json new file mode 100644 index 000000000..5f76714eb --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/namespace.json @@ -0,0 +1,664 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1717521780, + "197664.3" + ], + [ + 1717521795, + "197209.76666666666" + ], + [ + 1717521810, + "195691.49999999997" + ], + [ + 1717521825, + "214910.2" + ], + [ + 1717521840, + "216813.9" + ], + [ + 1717521855, + "196142.8333333333" + ], + [ + 1717521870, + "194888.03333333333" + ], + [ + 1717521885, + "195592.23333333334" + ], + [ + 1717521900, + "195919.9" + ], + [ + 1717521915, + "194589.2333333333" + ], + [ + 1717521930, + "196207.09999999998" + ], + [ + 1717521945, + "198811.8" + ], + [ + 1717521960, + "196288.06666666665" + ], + [ + 1717521975, + "192801.36666666664" + ], + [ + 1717521990, + "191477.56666666665" + ], + [ + 1717522005, + "192611.13333333333" + ], + [ + 1717522020, + "193974.69999999998" + ], + [ + 1717522035, + "194625.86666666664" + ], + [ + 1717522050, + "194643.2333333333" + ], + [ + 1717522065, + "196494.43333333332" + ], + [ + 1717522080, + "166873.73333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1717521780, + "922.1333333333333" + ], + [ + 1717521795, + "928.7333333333333" + ], + [ + 1717521810, + "926.5333333333333" + ], + [ + 1717521825, + "919.9333333333334" + ], + [ + 1717521840, + "919.9333333333334" + ], + [ + 1717521855, + "922.1333333333333" + ], + [ + 1717521870, + "922.1333333333333" + ], + [ + 1717521885, + "922.1333333333333" + ], + [ + 1717521900, + "924.3333333333334" + ], + [ + 1717521915, + "926.5333333333333" + ], + [ + 1717521930, + "4612.533333333333" + ], + [ + 1717521945, + "6161.2" + ], + [ + 1717521960, + "2466.4" + ], + [ + 1717521975, + "904.5333333333333" + ], + [ + 1717521990, + "908.9333333333333" + ], + [ + 1717522005, + "913.3333333333334" + ], + [ + 1717522020, + "913.3333333333334" + ], + [ + 1717522035, + "913.3333333333334" + ], + [ + 1717522050, + "913.3333333333334" + ], + [ + 1717522065, + "930.9333333333333" + ], + [ + 1717522080, + "922.1333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-dns", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1717521780, + "784.8" + ], + [ + 1717521795, + "784.8" + ], + [ + 1717521810, + "784.8" + ], + [ + 1717521825, + "784.8" + ], + [ + 1717521840, + "784.8" + ], + [ + 1717521855, + "784.8" + ], + [ + 1717521870, + "784.8" + ], + [ + 1717521885, + "784.8" + ], + [ + 1717521900, + "784.8" + ], + [ + 1717521915, + "784.8" + ], + [ + 1717521930, + "806.5999999999999" + ], + [ + 1717521945, + "850.1999999999999" + ], + [ + 1717521960, + "828.4" + ], + [ + 1717521975, + "784.8" + ], + [ + 1717521990, + "784.8" + ], + [ + 1717522005, + "784.8" + ], + [ + 1717522020, + "784.8" + ], + [ + 1717522035, + "784.8" + ], + [ + 1717522050, + "784.8" + ], + [ + 1717522065, + "784.8" + ], + [ + 1717522080, + "654" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1717521780, + "5873.666666666667" + ], + [ + 1717521795, + "5939.566666666667" + ], + [ + 1717521810, + "5906.233333333334" + ], + [ + 1717521825, + "5863.666666666666" + ], + [ + 1717521840, + "5937.2" + ], + [ + 1717521855, + "5959.866666666667" + ], + [ + 1717521870, + "5975.5" + ], + [ + 1717521885, + "5991.3" + ], + [ + 1717521900, + "5984.566666666667" + ], + [ + 1717521915, + "5964.466666666667" + ], + [ + 1717521930, + "5983.766666666667" + ], + [ + 1717521945, + "6010.933333333333" + ], + [ + 1717521960, + "6021.133333333333" + ], + [ + 1717521975, + "6019.733333333334" + ], + [ + 1717521990, + "6013.533333333333" + ], + [ + 1717522005, + "6074.066666666667" + ], + [ + 1717522020, + "6018.133333333333" + ], + [ + 1717522035, + "5864.7" + ], + [ + 1717522050, + "5847.633333333333" + ], + [ + 1717522065, + "5881.166666666666" + ], + [ + 1717522080, + "5731.233333333333" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1717521780, + "1013.4666666666667" + ], + [ + 1717521795, + "1014.4000000000001" + ], + [ + 1717521810, + "977.8666666666668" + ], + [ + 1717521825, + "947.6666666666666" + ], + [ + 1717521840, + "952.0333333333333" + ], + [ + 1717521855, + "913.6" + ], + [ + 1717521870, + "901.7333333333332" + ], + [ + 1717521885, + "1009.6333333333333" + ], + [ + 1717521900, + "1080.9" + ], + [ + 1717521915, + "961" + ], + [ + 1717521930, + "943.4333333333333" + ], + [ + 1717521945, + "961.3000000000001" + ], + [ + 1717521960, + "915.5333333333333" + ], + [ + 1717521975, + "899.1" + ], + [ + 1717521990, + "943.7" + ], + [ + 1717522005, + "952.0666666666666" + ], + [ + 1717522020, + "923.4333333333333" + ], + [ + 1717522035, + "953.5666666666666" + ], + [ + 1717522050, + "952.8" + ], + [ + 1717522065, + "917" + ], + [ + 1717522080, + "819.6666666666666" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": false, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 12283, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 80, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.095537741, + "linesProcessedPerSecond": 0, + "queueTime": 1.65102299, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 8174, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 2057862, + "decompressedBytes": 9132667, + "decompressedLines": 12282, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1549633, + "headChunkLines": 2145, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 14427, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 146, + "totalChunksMatched": 101, + "totalLinesSent": 5391, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 99805634, + "execTime": 0.107031031, + "linesProcessedPerSecond": 134792, + "queueTime": 1.909549991, + "shards": 80, + "splits": 5, + "subqueries": 0, + "totalBytesProcessed": 10682300, + "totalEntriesReturned": 5, + "totalLinesProcessed": 14427, + "totalPostFilterLines": 14427, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717522080 +} diff --git a/web/cypress/fixtures/flowmetrics/owner.json b/web/cypress/fixtures/flowmetrics/owner.json new file mode 100644 index 000000000..7a0fb0faa --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/owner.json @@ -0,0 +1,1836 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod" + }, + "values": [ + [ + 1717526765.424, + "1835.088043905194" + ], + [ + 1717526780.424, + "1891.2" + ], + [ + 1717526795.424, + "1820.8" + ], + [ + 1717526810.424, + "1834" + ], + [ + 1717526825.424, + "1985.1999999999998" + ], + [ + 1717526840.424, + "1860.4000000000003" + ], + [ + 1717526855.424, + "1913.2" + ], + [ + 1717526870.424, + "1899.9999999999998" + ], + [ + 1717526885.424, + "1908.8000000000002" + ], + [ + 1717526900.424, + "1842.7999999999997" + ], + [ + 1717526915.424, + "1860.4000000000003" + ], + [ + 1717526930.424, + "1886.8000000000002" + ], + [ + 1717526945.424, + "1882.4" + ], + [ + 1717526960.424, + "1882.4" + ], + [ + 1717526975.424, + "1922" + ], + [ + 1717526990.424, + "1970.4000000000003" + ], + [ + 1717527005.424, + "1882.3999999999999" + ], + [ + 1717527020.424, + "1873.6" + ], + [ + 1717527035.424, + "1816.3999999999999" + ], + [ + 1717527050.424, + "1834" + ], + [ + 1717527065.424, + "1886.8" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service" + }, + "values": [ + [ + 1717526765.424, + "1835.088043905194" + ], + [ + 1717526780.424, + "1891.2" + ], + [ + 1717526795.424, + "1820.8" + ], + [ + 1717526810.424, + "1834" + ], + [ + 1717526825.424, + "1985.1999999999998" + ], + [ + 1717526840.424, + "1860.4000000000003" + ], + [ + 1717526855.424, + "1913.2" + ], + [ + 1717526870.424, + "1899.9999999999998" + ], + [ + 1717526885.424, + "1908.8000000000002" + ], + [ + 1717526900.424, + "1842.7999999999997" + ], + [ + 1717526915.424, + "1860.4000000000003" + ], + [ + 1717526930.424, + "1886.8000000000002" + ], + [ + 1717526945.424, + "1882.4" + ], + [ + 1717526960.424, + "1882.4" + ], + [ + 1717526975.424, + "1922" + ], + [ + 1717526990.424, + "1970.4000000000003" + ], + [ + 1717527005.424, + "1882.3999999999999" + ], + [ + 1717527020.424, + "1873.6" + ], + [ + 1717527035.424, + "1816.3999999999999" + ], + [ + 1717527050.424, + "1834" + ], + [ + 1717527065.424, + "1886.8" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "195868.93333333332" + ], + [ + 1717526780.424, + "192405.26666666666" + ], + [ + 1717526795.424, + "189989.8" + ], + [ + 1717526810.424, + "192985.86666666667" + ], + [ + 1717526825.424, + "218913.33333333334" + ], + [ + 1717526840.424, + "212632.93333333332" + ], + [ + 1717526855.424, + "195473.26666666666" + ], + [ + 1717526870.424, + "194008" + ], + [ + 1717526885.424, + "210230.46666666667" + ], + [ + 1717526900.424, + "196179.93333333332" + ], + [ + 1717526915.424, + "194275.46666666667" + ], + [ + 1717526930.424, + "208833.8" + ], + [ + 1717526945.424, + "201554.93333333332" + ], + [ + 1717526960.424, + "207578.73333333334" + ], + [ + 1717526975.424, + "197114.8" + ], + [ + 1717526990.424, + "201730.73333333334" + ], + [ + 1717527005.424, + "207906.26666666666" + ], + [ + 1717527020.424, + "198338.2" + ], + [ + 1717527035.424, + "193924.86666666667" + ], + [ + 1717527050.424, + "197019.93333333332" + ], + [ + 1717527065.424, + "199063.46666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment" + }, + "values": [ + [ + 1717526765.424, + "0" + ], + [ + 1717526780.424, + "0" + ], + [ + 1717526795.424, + "0" + ], + [ + 1717526810.424, + "0" + ], + [ + 1717526825.424, + "58" + ], + [ + 1717526840.424, + "8.8" + ], + [ + 1717526855.424, + "8.8" + ], + [ + 1717526870.424, + "0" + ], + [ + 1717526885.424, + "58" + ], + [ + 1717526900.424, + "8.8" + ], + [ + 1717526915.424, + "8.8" + ], + [ + 1717526930.424, + "58" + ], + [ + 1717526945.424, + "228" + ], + [ + 1717526960.424, + "106.39999999999999" + ], + [ + 1717526975.424, + "263.2" + ], + [ + 1717526990.424, + "66" + ], + [ + 1717527005.424, + "35.2" + ], + [ + 1717527020.424, + "17.6" + ], + [ + 1717527035.424, + "0" + ], + [ + 1717527050.424, + "0" + ], + [ + 1717527065.424, + "0" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod" + }, + "values": [ + [ + 1717526765.424, + "0" + ], + [ + 1717526780.424, + "0" + ], + [ + 1717526795.424, + "0" + ], + [ + 1717526810.424, + "0" + ], + [ + 1717526825.424, + "3073.4666666666667" + ], + [ + 1717526840.424, + "8.8" + ], + [ + 1717526855.424, + "4.4" + ], + [ + 1717526870.424, + "0" + ], + [ + 1717526885.424, + "3073.4666666666667" + ], + [ + 1717526900.424, + "8.8" + ], + [ + 1717526915.424, + "4.4" + ], + [ + 1717526930.424, + "3073.4666666666667" + ], + [ + 1717526945.424, + "1111.3333333333333" + ], + [ + 1717526960.424, + "4159.866666666667" + ], + [ + 1717526975.424, + "1130" + ], + [ + 1717526990.424, + "1089.4" + ], + [ + 1717527005.424, + "26.4" + ], + [ + 1717527020.424, + "8.8" + ], + [ + 1717527035.424, + "0" + ], + [ + 1717527050.424, + "0" + ], + [ + 1717527065.424, + "0" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service" + }, + "values": [ + [ + 1717526765.424, + "0" + ], + [ + 1717526780.424, + "0" + ], + [ + 1717526795.424, + "0" + ], + [ + 1717526810.424, + "0" + ], + [ + 1717526825.424, + "3073.4666666666667" + ], + [ + 1717526840.424, + "8.8" + ], + [ + 1717526855.424, + "4.4" + ], + [ + 1717526870.424, + "0" + ], + [ + 1717526885.424, + "3073.4666666666667" + ], + [ + 1717526900.424, + "8.8" + ], + [ + 1717526915.424, + "4.4" + ], + [ + 1717526930.424, + "3073.4666666666667" + ], + [ + 1717526945.424, + "1111.3333333333333" + ], + [ + 1717526960.424, + "4159.866666666667" + ], + [ + 1717526975.424, + "1130" + ], + [ + 1717526990.424, + "1089.4" + ], + [ + 1717527005.424, + "26.4" + ], + [ + 1717527020.424, + "8.8" + ], + [ + 1717527035.424, + "0" + ], + [ + 1717527050.424, + "0" + ], + [ + 1717527065.424, + "0" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment" + }, + "values": [ + [ + 1717526765.424, + "935.357834860188" + ], + [ + 1717526780.424, + "480.8666666666667" + ], + [ + 1717526795.424, + "485.26666666666665" + ], + [ + 1717526810.424, + "1875.1333333333334" + ], + [ + 1717526825.424, + "388138.73333333334" + ], + [ + 1717526840.424, + "3979.6" + ], + [ + 1717526855.424, + "926.5333333333333" + ], + [ + 1717526870.424, + "384541.73333333334" + ], + [ + 1717526885.424, + "7987.266666666666" + ], + [ + 1717526900.424, + "917.7333333333333" + ], + [ + 1717526915.424, + "930.9333333333333" + ], + [ + 1717526930.424, + "390655.06666666665" + ], + [ + 1717526945.424, + "18649.666666666664" + ], + [ + 1717526960.424, + "387080.86666666664" + ], + [ + 1717526975.424, + "20604" + ], + [ + 1717526990.424, + "930.9333333333334" + ], + [ + 1717527005.424, + "1822.2666666666667" + ], + [ + 1717527020.424, + "1372.2" + ], + [ + 1717527035.424, + "1372.2" + ], + [ + 1717527050.424, + "2713.333333333333" + ], + [ + 1717527065.424, + "1376.6" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service" + }, + "values": [ + [ + 1717526765.424, + "948.557834860188" + ], + [ + 1717526780.424, + "480.8666666666667" + ], + [ + 1717526795.424, + "498.4666666666667" + ], + [ + 1717526810.424, + "1888.3333333333335" + ], + [ + 1717526825.424, + "388151.93333333335" + ], + [ + 1717526840.424, + "3979.6" + ], + [ + 1717526855.424, + "944.1333333333333" + ], + [ + 1717526870.424, + "384554.93333333335" + ], + [ + 1717526885.424, + "8000.466666666667" + ], + [ + 1717526900.424, + "917.7333333333333" + ], + [ + 1717526915.424, + "944.1333333333333" + ], + [ + 1717526930.424, + "390668.26666666666" + ], + [ + 1717526945.424, + "18662.866666666665" + ], + [ + 1717526960.424, + "387080.86666666664" + ], + [ + 1717526975.424, + "20617.2" + ], + [ + 1717526990.424, + "939.7333333333333" + ], + [ + 1717527005.424, + "1839.8666666666666" + ], + [ + 1717527020.424, + "1372.2" + ], + [ + 1717527035.424, + "1372.2" + ], + [ + 1717527050.424, + "2713.333333333333" + ], + [ + 1717527065.424, + "1376.6" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "772.226520793238" + ], + [ + 1717526780.424, + "784.8" + ], + [ + 1717526795.424, + "784.8" + ], + [ + 1717526810.424, + "784.8" + ], + [ + 1717526825.424, + "784.8" + ], + [ + 1717526840.424, + "784.8" + ], + [ + 1717526855.424, + "784.8" + ], + [ + 1717526870.424, + "784.8" + ], + [ + 1717526885.424, + "784.8" + ], + [ + 1717526900.424, + "784.8" + ], + [ + 1717526915.424, + "784.8" + ], + [ + 1717526930.424, + "784.8" + ], + [ + 1717526945.424, + "784.8" + ], + [ + 1717526960.424, + "784.8" + ], + [ + 1717526975.424, + "784.8" + ], + [ + 1717526990.424, + "784.8" + ], + [ + 1717527005.424, + "784.8" + ], + [ + 1717527020.424, + "784.8" + ], + [ + 1717527035.424, + "784.8" + ], + [ + 1717527050.424, + "784.8" + ], + [ + 1717527065.424, + "784.8" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment" + }, + "values": [ + [ + 1717526765.424, + "0" + ], + [ + 1717526780.424, + "0" + ], + [ + 1717526795.424, + "0" + ], + [ + 1717526810.424, + "0" + ], + [ + 1717526825.424, + "147.6" + ], + [ + 1717526840.424, + "208" + ], + [ + 1717526855.424, + "0" + ], + [ + 1717526870.424, + "0" + ], + [ + 1717526885.424, + "303.6" + ], + [ + 1717526900.424, + "0" + ], + [ + 1717526915.424, + "0" + ], + [ + 1717526930.424, + "251.6" + ], + [ + 1717526945.424, + "139.2" + ], + [ + 1717526960.424, + "251.6" + ], + [ + 1717526975.424, + "139.2" + ], + [ + 1717526990.424, + "0" + ], + [ + 1717527005.424, + "0" + ], + [ + 1717527020.424, + "0" + ], + [ + 1717527035.424, + "52" + ], + [ + 1717527050.424, + "0" + ], + [ + 1717527065.424, + "0" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "5862.200000000001" + ], + [ + 1717526780.424, + "5839.933333333334" + ], + [ + 1717526795.424, + "5851.266666666667" + ], + [ + 1717526810.424, + "5829.200000000001" + ], + [ + 1717526825.424, + "5775.0666666666675" + ], + [ + 1717526840.424, + "5742.466666666667" + ], + [ + 1717526855.424, + "5738" + ], + [ + 1717526870.424, + "5749.666666666668" + ], + [ + 1717526885.424, + "5742.200000000001" + ], + [ + 1717526900.424, + "5728.933333333334" + ], + [ + 1717526915.424, + "5762.733333333334" + ], + [ + 1717526930.424, + "5760.6" + ], + [ + 1717526945.424, + "5697.533333333334" + ], + [ + 1717526960.424, + "5681.133333333333" + ], + [ + 1717526975.424, + "5657.400000000001" + ], + [ + 1717526990.424, + "5707.400000000001" + ], + [ + 1717527005.424, + "5669.533333333334" + ], + [ + 1717527020.424, + "5721.666666666667" + ], + [ + 1717527035.424, + "5696.933333333334" + ], + [ + 1717527050.424, + "5729.266666666667" + ], + [ + 1717527065.424, + "5684.133333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment" + }, + "values": [ + [ + 1717526765.424, + "306.33333333333337" + ], + [ + 1717526780.424, + "306.0666666666667" + ], + [ + 1717526795.424, + "306.0666666666667" + ], + [ + 1717526810.424, + "310.8" + ], + [ + 1717526825.424, + "306.4666666666667" + ], + [ + 1717526840.424, + "305.9333333333334" + ], + [ + 1717526855.424, + "305.73333333333335" + ], + [ + 1717526870.424, + "305.4" + ], + [ + 1717526885.424, + "306.1333333333333" + ], + [ + 1717526900.424, + "310.1333333333333" + ], + [ + 1717526915.424, + "310.20000000000005" + ], + [ + 1717526930.424, + "305.6666666666667" + ], + [ + 1717526945.424, + "306.40000000000003" + ], + [ + 1717526960.424, + "305.20000000000005" + ], + [ + 1717526975.424, + "310.2666666666667" + ], + [ + 1717526990.424, + "306.1333333333334" + ], + [ + 1717527005.424, + "306.4" + ], + [ + 1717527020.424, + "305.80000000000007" + ], + [ + 1717527035.424, + "306.4666666666667" + ], + [ + 1717527050.424, + "306.0666666666667" + ], + [ + 1717527065.424, + "306" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "thanos-querier", + "DstK8S_OwnerType": "Deployment", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment" + }, + "values": [ + [ + 1717526765.424, + "17.600000000000005" + ], + [ + 1717526780.424, + "0" + ], + [ + 1717526795.424, + "0" + ], + [ + 1717526810.424, + "0" + ], + [ + 1717526825.424, + "188.26666666666668" + ], + [ + 1717526840.424, + "393.86666666666673" + ], + [ + 1717526855.424, + "70.4" + ], + [ + 1717526870.424, + "166" + ], + [ + 1717526885.424, + "477.73333333333335" + ], + [ + 1717526900.424, + "61.60000000000001" + ], + [ + 1717526915.424, + "88.00000000000001" + ], + [ + 1717526930.424, + "564.3333333333334" + ], + [ + 1717526945.424, + "52.80000000000001" + ], + [ + 1717526960.424, + "570.6666666666667" + ], + [ + 1717526975.424, + "138.8666666666667" + ], + [ + 1717526990.424, + "101.20000000000002" + ], + [ + 1717527005.424, + "17.600000000000005" + ], + [ + 1717527020.424, + "0" + ], + [ + 1717527035.424, + "102.26666666666667" + ], + [ + 1717527050.424, + "8.8" + ], + [ + 1717527065.424, + "17.6" + ] + ] + }, + { + "metric": { + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "152.36213400395187" + ], + [ + 1717526780.424, + "159.53333333333333" + ], + [ + 1717526795.424, + "156" + ], + [ + 1717526810.424, + "163.93333333333334" + ], + [ + 1717526825.424, + "204.73333333333332" + ], + [ + 1717526840.424, + "171.2" + ], + [ + 1717526855.424, + "151.6" + ], + [ + 1717526870.424, + "156.86666666666667" + ], + [ + 1717526885.424, + "142.33333333333334" + ], + [ + 1717526900.424, + "128.26666666666665" + ], + [ + 1717526915.424, + "165.66666666666666" + ], + [ + 1717526930.424, + "181.46666666666667" + ], + [ + 1717526945.424, + "180" + ], + [ + 1717526960.424, + "177.33333333333334" + ], + [ + 1717526975.424, + "164.8" + ], + [ + 1717526990.424, + "166.53333333333333" + ], + [ + 1717527005.424, + "194.26666666666665" + ], + [ + 1717527020.424, + "123.86666666666666" + ], + [ + 1717527035.424, + "120.33333333333333" + ], + [ + 1717527050.424, + "151.6" + ], + [ + 1717527065.424, + "148.93333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "227.93333333333334" + ], + [ + 1717526780.424, + "165.66666666666666" + ], + [ + 1717526795.424, + "209.20000000000002" + ], + [ + 1717526810.424, + "173.60000000000002" + ], + [ + 1717526825.424, + "203.06666666666666" + ], + [ + 1717526840.424, + "235.66666666666666" + ], + [ + 1717526855.424, + "223.26666666666668" + ], + [ + 1717526870.424, + "173.60000000000002" + ], + [ + 1717526885.424, + "228.06666666666666" + ], + [ + 1717526900.424, + "164.8" + ], + [ + 1717526915.424, + "203.93333333333334" + ], + [ + 1717526930.424, + "412.8" + ], + [ + 1717526945.424, + "439.06666666666666" + ], + [ + 1717526960.424, + "156.86666666666667" + ], + [ + 1717526975.424, + "199.53333333333333" + ], + [ + 1717526990.424, + "222.53333333333333" + ], + [ + 1717527005.424, + "419.4666666666667" + ], + [ + 1717527020.424, + "235.66666666666666" + ], + [ + 1717527035.424, + "196.93333333333334" + ], + [ + 1717527050.424, + "186.73333333333332" + ], + [ + 1717527065.424, + "196.93333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "143.95063656955404" + ], + [ + 1717526780.424, + "122.2" + ], + [ + 1717526795.424, + "122.2" + ], + [ + 1717526810.424, + "117.8" + ], + [ + 1717526825.424, + "117.8" + ], + [ + 1717526840.424, + "122.2" + ], + [ + 1717526855.424, + "126.6" + ], + [ + 1717526870.424, + "122.2" + ], + [ + 1717526885.424, + "126.6" + ], + [ + 1717526900.424, + "148.6" + ], + [ + 1717526915.424, + "126.6" + ], + [ + 1717526930.424, + "154.33333333333334" + ], + [ + 1717526945.424, + "122.2" + ], + [ + 1717526960.424, + "149.93333333333334" + ], + [ + 1717526975.424, + "149.93333333333334" + ], + [ + 1717526990.424, + "132.13333333333333" + ], + [ + 1717527005.424, + "135.4" + ], + [ + 1717527020.424, + "117.8" + ], + [ + 1717527035.424, + "122.2" + ], + [ + 1717527050.424, + "122.2" + ], + [ + 1717527065.424, + "149.93333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "178.4666666666667" + ], + [ + 1717526780.424, + "146.33333333333337" + ], + [ + 1717526795.424, + "174.0666666666667" + ], + [ + 1717526810.424, + "146.33333333333337" + ], + [ + 1717526825.424, + "188.13333333333338" + ], + [ + 1717526840.424, + "163.93333333333337" + ], + [ + 1717526855.424, + "178.4666666666667" + ], + [ + 1717526870.424, + "146.33333333333337" + ], + [ + 1717526885.424, + "178.4666666666667" + ], + [ + 1717526900.424, + "155.13333333333335" + ], + [ + 1717526915.424, + "182.8666666666667" + ], + [ + 1717526930.424, + "150.73333333333335" + ], + [ + 1717526945.424, + "178.4666666666667" + ], + [ + 1717526960.424, + "150.73333333333335" + ], + [ + 1717526975.424, + "174.0666666666667" + ], + [ + 1717526990.424, + "141.93333333333337" + ], + [ + 1717527005.424, + "178.4666666666667" + ], + [ + 1717527020.424, + "141.93333333333337" + ], + [ + 1717527035.424, + "178.4666666666667" + ], + [ + 1717527050.424, + "150.73333333333335" + ], + [ + 1717527065.424, + "174.0666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "140.13333333333333" + ], + [ + 1717526780.424, + "174.93333333333334" + ], + [ + 1717526795.424, + "148.06666666666666" + ], + [ + 1717526810.424, + "169.66666666666666" + ], + [ + 1717526825.424, + "150.66666666666666" + ], + [ + 1717526840.424, + "180.2" + ], + [ + 1717526855.424, + "148.93333333333334" + ], + [ + 1717526870.424, + "180.2" + ], + [ + 1717526885.424, + "153.33333333333334" + ], + [ + 1717526900.424, + "175.8" + ], + [ + 1717526915.424, + "148.93333333333334" + ], + [ + 1717526930.424, + "184.6" + ], + [ + 1717526945.424, + "148.93333333333334" + ], + [ + 1717526960.424, + "175.8" + ], + [ + 1717526975.424, + "153.33333333333334" + ], + [ + 1717526990.424, + "175.8" + ], + [ + 1717527005.424, + "148.93333333333334" + ], + [ + 1717527020.424, + "174.93333333333334" + ], + [ + 1717527035.424, + "149.8" + ], + [ + 1717527050.424, + "175.8" + ], + [ + 1717527065.424, + "144.53333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet" + }, + "values": [ + [ + 1717526765.424, + "146.86666666666667" + ], + [ + 1717526780.424, + "114.73333333333333" + ], + [ + 1717526795.424, + "142.46666666666667" + ], + [ + 1717526810.424, + "119.13333333333333" + ], + [ + 1717526825.424, + "146.86666666666667" + ], + [ + 1717526840.424, + "115.6" + ], + [ + 1717526855.424, + "146.86666666666667" + ], + [ + 1717526870.424, + "114.73333333333333" + ], + [ + 1717526885.424, + "147.73333333333332" + ], + [ + 1717526900.424, + "114.73333333333333" + ], + [ + 1717526915.424, + "146.86666666666667" + ], + [ + 1717526930.424, + "114.73333333333333" + ], + [ + 1717526945.424, + "152.13333333333333" + ], + [ + 1717526960.424, + "110.33333333333333" + ], + [ + 1717526975.424, + "157.4" + ], + [ + 1717526990.424, + "120" + ], + [ + 1717527005.424, + "146.86666666666667" + ], + [ + 1717527020.424, + "114.73333333333333" + ], + [ + 1717527035.424, + "142.46666666666667" + ], + [ + 1717527050.424, + "110.33333333333333" + ], + [ + 1717527065.424, + "142.46666666666667" + ] + ] + } + ], + "stats": { + "numQueries": 1, + "totalEntries": 0, + "duplicates": 0, + "limitReached": false, + "queriesStats": [ + null + ], + "dataSources": [ + "prom" + ] + }, + "unixTimestamp": 1717527065 +} diff --git a/web/cypress/fixtures/flowmetrics/resource.json b/web/cypress/fixtures/flowmetrics/resource.json new file mode 100644 index 000000000..1d1e79dc2 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/resource.json @@ -0,0 +1,5489 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstAddr": "10.0.0.3", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526910, + "63.666666666666664" + ], + [ + 1717526925, + "181.66666666666666" + ], + [ + 1717526940, + "190.2" + ], + [ + 1717527000, + "171.2" + ], + [ + 1717527015, + "82.6" + ], + [ + 1717527060, + "8.8" + ], + [ + 1717527105, + "10.1" + ], + [ + 1717527120, + "22.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-1", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "205.3" + ], + [ + 1717526880, + "181.3" + ], + [ + 1717526895, + "178.66666666666666" + ], + [ + 1717526910, + "174.7" + ], + [ + 1717526925, + "175.13333333333333" + ], + [ + 1717526940, + "175.13333333333333" + ], + [ + 1717526955, + "179.53333333333333" + ], + [ + 1717526970, + "176.9" + ], + [ + 1717526985, + "175.56666666666666" + ], + [ + 1717527000, + "180.4" + ], + [ + 1717527015, + "186.13333333333333" + ], + [ + 1717527030, + "186.56666666666666" + ], + [ + 1717527045, + "177.33333333333334" + ], + [ + 1717527060, + "174.7" + ], + [ + 1717527075, + "181.73333333333332" + ], + [ + 1717527090, + "179.1" + ], + [ + 1717527105, + "176.9" + ], + [ + 1717527120, + "181.3" + ], + [ + 1717527135, + "176.9" + ], + [ + 1717527150, + "179.96666666666667" + ], + [ + 1717527165, + "186.56666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.42", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "dns-default-nwgt5", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526895, + "130.8" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "130.8" + ], + [ + 1717526940, + "130.8" + ], + [ + 1717526985, + "130.8" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "130.8" + ], + [ + 1717527045, + "130.8" + ], + [ + 1717527060, + "130.8" + ], + [ + 1717527075, + "130.8" + ], + [ + 1717527090, + "130.8" + ], + [ + 1717527105, + "130.8" + ], + [ + 1717527120, + "130.8" + ], + [ + 1717527135, + "130.8" + ], + [ + 1717527150, + "130.8" + ], + [ + 1717527165, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "454.46666666666664" + ], + [ + 1717526880, + "677.3" + ], + [ + 1717526895, + "677.3" + ], + [ + 1717526910, + "454.46666666666664" + ], + [ + 1717526925, + "454.46666666666664" + ], + [ + 1717526940, + "677.3" + ], + [ + 1717526955, + "677.3" + ], + [ + 1717526970, + "456.6666666666667" + ], + [ + 1717526985, + "454.46666666666664" + ], + [ + 1717527000, + "900.1333333333333" + ], + [ + 1717527015, + "1125.1666666666667" + ], + [ + 1717527030, + "1570.7" + ], + [ + 1717527045, + "1572.9" + ], + [ + 1717527060, + "681.7" + ], + [ + 1717527075, + "1038.9" + ], + [ + 1717527090, + "1038.9" + ], + [ + 1717527105, + "461.06666666666666" + ], + [ + 1717527120, + "688.3" + ], + [ + 1717527135, + "2615.5" + ], + [ + 1717527150, + "4320.266666666666" + ], + [ + 1717527165, + "4318.466666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.87", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "console-656c578b98-fgbsr", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "467.6666666666667" + ], + [ + 1717526880, + "683.9" + ], + [ + 1717526895, + "683.9" + ], + [ + 1717526910, + "467.6666666666667" + ], + [ + 1717526925, + "467.6666666666667" + ], + [ + 1717526940, + "683.9" + ], + [ + 1717526955, + "683.9" + ], + [ + 1717526970, + "467.6666666666667" + ], + [ + 1717526985, + "467.6666666666667" + ], + [ + 1717527000, + "908.9333333333333" + ], + [ + 1717527015, + "1125.1666666666667" + ], + [ + 1717527030, + "1570.7" + ], + [ + 1717527045, + "1572.9" + ], + [ + 1717527060, + "681.7" + ], + [ + 1717527075, + "1038.9" + ], + [ + 1717527090, + "1045.5" + ], + [ + 1717527105, + "467.6666666666667" + ], + [ + 1717527120, + "692.7" + ], + [ + 1717527135, + "2619.9" + ], + [ + 1717527150, + "4329.066666666667" + ], + [ + 1717527165, + "4327.266666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "416.4" + ], + [ + 1717526880, + "416.4" + ], + [ + 1717526895, + "390" + ], + [ + 1717526910, + "401" + ], + [ + 1717526925, + "434" + ], + [ + 1717526940, + "423" + ], + [ + 1717526955, + "412" + ], + [ + 1717526970, + "431.8" + ], + [ + 1717526985, + "427.4" + ], + [ + 1717527000, + "420.8" + ], + [ + 1717527015, + "438.4" + ], + [ + 1717527030, + "434" + ], + [ + 1717527045, + "425.2" + ], + [ + 1717527060, + "445" + ], + [ + 1717527075, + "427.4" + ], + [ + 1717527090, + "412" + ], + [ + 1717527105, + "420.8" + ], + [ + 1717527120, + "423" + ], + [ + 1717527135, + "436.2" + ], + [ + 1717527150, + "438.4" + ], + [ + 1717527165, + "434" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.0.88", + "DstK8S_HostName": "memodi-06040910-rv99b-master-1", + "DstK8S_Name": "flowlogs-pipeline-cv2hp", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "416.4" + ], + [ + 1717526880, + "416.4" + ], + [ + 1717526895, + "390" + ], + [ + 1717526910, + "401" + ], + [ + 1717526925, + "434" + ], + [ + 1717526940, + "423" + ], + [ + 1717526955, + "412" + ], + [ + 1717526970, + "431.8" + ], + [ + 1717526985, + "427.4" + ], + [ + 1717527000, + "420.8" + ], + [ + 1717527015, + "438.4" + ], + [ + 1717527030, + "434" + ], + [ + 1717527045, + "425.2" + ], + [ + 1717527060, + "445" + ], + [ + 1717527075, + "427.4" + ], + [ + 1717527090, + "412" + ], + [ + 1717527105, + "420.8" + ], + [ + 1717527120, + "423" + ], + [ + 1717527135, + "436.2" + ], + [ + 1717527150, + "438.4" + ], + [ + 1717527165, + "434" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.13", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "thanos-querier-549b845d68-6z9jp", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "thanos-querier", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "8.8" + ], + [ + 1717526880, + "141.1" + ], + [ + 1717526895, + "154.3" + ], + [ + 1717526910, + "39.6" + ], + [ + 1717526925, + "163.03333333333333" + ], + [ + 1717526940, + "199.4" + ], + [ + 1717526955, + "138.8" + ], + [ + 1717527030, + "51.13333333333333" + ], + [ + 1717527045, + "55.53333333333333" + ], + [ + 1717527060, + "13.2" + ], + [ + 1717527075, + "59.9" + ], + [ + 1717527090, + "55.5" + ], + [ + 1717527105, + "13.2" + ], + [ + 1717527120, + "8.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "164.56666666666666" + ], + [ + 1717526880, + "166.76666666666668" + ], + [ + 1717526895, + "164.56666666666666" + ], + [ + 1717526910, + "162.36666666666667" + ], + [ + 1717526925, + "166.76666666666668" + ], + [ + 1717526940, + "166.76666666666668" + ], + [ + 1717526955, + "162.36666666666667" + ], + [ + 1717526970, + "164.56666666666666" + ], + [ + 1717526985, + "164.56666666666666" + ], + [ + 1717527000, + "162.36666666666667" + ], + [ + 1717527015, + "161.93333333333334" + ], + [ + 1717527030, + "162.36666666666667" + ], + [ + 1717527045, + "162.8" + ], + [ + 1717527060, + "160.16666666666666" + ], + [ + 1717527075, + "161.93333333333334" + ], + [ + 1717527090, + "161.93333333333334" + ], + [ + 1717527105, + "157.53333333333333" + ], + [ + 1717527120, + "157.53333333333333" + ], + [ + 1717527135, + "160.16666666666666" + ], + [ + 1717527150, + "159.73333333333332" + ], + [ + 1717527165, + "171.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "624" + ], + [ + 1717526880, + "620.9" + ], + [ + 1717526895, + "619.7" + ], + [ + 1717526910, + "621.8" + ], + [ + 1717526925, + "628.8666666666667" + ], + [ + 1717526940, + "623.4666666666667" + ], + [ + 1717526955, + "611.1666666666666" + ], + [ + 1717526970, + "612.8" + ], + [ + 1717526985, + "614.4333333333333" + ], + [ + 1717527000, + "613.6333333333333" + ], + [ + 1717527015, + "615.9" + ], + [ + 1717527030, + "616.4333333333333" + ], + [ + 1717527045, + "613.4333333333333" + ], + [ + 1717527060, + "609.9666666666667" + ], + [ + 1717527075, + "609.6666666666666" + ], + [ + 1717527090, + "612.5666666666667" + ], + [ + 1717527105, + "612.4333333333333" + ], + [ + 1717527120, + "610.5" + ], + [ + 1717527135, + "610.6" + ], + [ + 1717527150, + "613.3666666666667" + ], + [ + 1717527165, + "615.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "505.3" + ], + [ + 1717526880, + "505.7" + ], + [ + 1717526895, + "505.4" + ], + [ + 1717526910, + "504.5" + ], + [ + 1717526925, + "504.43333333333334" + ], + [ + 1717526940, + "494.23333333333335" + ], + [ + 1717526955, + "482.9" + ], + [ + 1717526970, + "482.53333333333336" + ], + [ + 1717526985, + "493" + ], + [ + 1717527000, + "493.4" + ], + [ + 1717527015, + "493.6" + ], + [ + 1717527030, + "504.3333333333333" + ], + [ + 1717527045, + "505.26666666666665" + ], + [ + 1717527060, + "503.73333333333335" + ], + [ + 1717527075, + "492.2" + ], + [ + 1717527090, + "493.23333333333335" + ], + [ + 1717527105, + "504.53333333333336" + ], + [ + 1717527120, + "494.6666666666667" + ], + [ + 1717527135, + "483.53333333333336" + ], + [ + 1717527150, + "483.3333333333333" + ], + [ + 1717527165, + "482.8333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "469.1" + ], + [ + 1717526880, + "473.93333333333334" + ], + [ + 1717526895, + "472.23333333333335" + ], + [ + 1717526910, + "468.9" + ], + [ + 1717526925, + "467.93333333333334" + ], + [ + 1717526940, + "469.26666666666665" + ], + [ + 1717526955, + "471.06666666666666" + ], + [ + 1717526970, + "473.3666666666667" + ], + [ + 1717526985, + "473.3666666666667" + ], + [ + 1717527000, + "473.43333333333334" + ], + [ + 1717527015, + "473.1666666666667" + ], + [ + 1717527030, + "470.7" + ], + [ + 1717527045, + "473.53333333333336" + ], + [ + 1717527060, + "472.1666666666667" + ], + [ + 1717527075, + "472.3666666666667" + ], + [ + 1717527090, + "474.3" + ], + [ + 1717527105, + "473.6333333333333" + ], + [ + 1717527120, + "475.4" + ], + [ + 1717527135, + "475.6666666666667" + ], + [ + 1717527150, + "478.46666666666664" + ], + [ + 1717527165, + "476.5" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "440.53333333333336" + ], + [ + 1717526880, + "438.46666666666664" + ], + [ + 1717526895, + "440.8" + ], + [ + 1717526910, + "441.2" + ], + [ + 1717526925, + "441.8333333333333" + ], + [ + 1717526940, + "443.73333333333335" + ], + [ + 1717526955, + "443.56666666666666" + ], + [ + 1717526970, + "440.56666666666666" + ], + [ + 1717526985, + "440.96666666666664" + ], + [ + 1717527000, + "441.26666666666665" + ], + [ + 1717527015, + "440.56666666666666" + ], + [ + 1717527030, + "440.7" + ], + [ + 1717527045, + "442.3" + ], + [ + 1717527060, + "443.96666666666664" + ], + [ + 1717527075, + "444.23333333333335" + ], + [ + 1717527090, + "440.96666666666664" + ], + [ + 1717527105, + "438.6666666666667" + ], + [ + 1717527120, + "439.93333333333334" + ], + [ + 1717527135, + "440.43333333333334" + ], + [ + 1717527150, + "442.3666666666667" + ], + [ + 1717527165, + "443.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "152.86666666666667" + ], + [ + 1717526880, + "152.9" + ], + [ + 1717526895, + "155.06666666666666" + ], + [ + 1717526910, + "157.13333333333333" + ], + [ + 1717526925, + "155.1" + ], + [ + 1717526940, + "153.06666666666666" + ], + [ + 1717526955, + "152.73333333333332" + ], + [ + 1717526970, + "154.63333333333333" + ], + [ + 1717526985, + "155.13333333333333" + ], + [ + 1717527000, + "153.26666666666668" + ], + [ + 1717527015, + "153" + ], + [ + 1717527030, + "152.93333333333334" + ], + [ + 1717527045, + "153.03333333333333" + ], + [ + 1717527060, + "152.9" + ], + [ + 1717527075, + "155.06666666666666" + ], + [ + 1717527090, + "155.26666666666668" + ], + [ + 1717527105, + "153.03333333333333" + ], + [ + 1717527120, + "152.9" + ], + [ + 1717527135, + "152.83333333333334" + ], + [ + 1717527150, + "152.76666666666668" + ], + [ + 1717527165, + "152.76666666666668" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "312.8" + ], + [ + 1717526880, + "313.7" + ], + [ + 1717526895, + "314.3" + ], + [ + 1717526910, + "315.8333333333333" + ], + [ + 1717526925, + "315.6" + ], + [ + 1717526940, + "315.53333333333336" + ], + [ + 1717526955, + "315.8666666666667" + ], + [ + 1717526970, + "316.3" + ], + [ + 1717526985, + "316.4" + ], + [ + 1717527000, + "315.96666666666664" + ], + [ + 1717527015, + "316.3666666666667" + ], + [ + 1717527030, + "316.6333333333333" + ], + [ + 1717527045, + "316.03333333333336" + ], + [ + 1717527060, + "315.93333333333334" + ], + [ + 1717527075, + "316" + ], + [ + 1717527090, + "316.1666666666667" + ], + [ + 1717527105, + "316.26666666666665" + ], + [ + 1717527120, + "313.8" + ], + [ + 1717527135, + "313.9" + ], + [ + 1717527150, + "316.1666666666667" + ], + [ + 1717527165, + "313.8333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.23", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "prometheus-k8s-0", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "525.2" + ], + [ + 1717526880, + "527.1333333333333" + ], + [ + 1717526895, + "527.2333333333333" + ], + [ + 1717526910, + "528.1666666666666" + ], + [ + 1717526925, + "528.7333333333333" + ], + [ + 1717526940, + "528.8" + ], + [ + 1717526955, + "520.8" + ], + [ + 1717526970, + "507.5" + ], + [ + 1717526985, + "508.8" + ], + [ + 1717527000, + "511.46666666666664" + ], + [ + 1717527015, + "513.0333333333333" + ], + [ + 1717527030, + "515.3333333333334" + ], + [ + 1717527045, + "514.8" + ], + [ + 1717527060, + "516.8" + ], + [ + 1717527075, + "516.6666666666666" + ], + [ + 1717527090, + "514.9333333333333" + ], + [ + 1717527105, + "515.6666666666666" + ], + [ + 1717527120, + "516.9333333333333" + ], + [ + 1717527135, + "514.2666666666667" + ], + [ + 1717527150, + "511.46666666666664" + ], + [ + 1717527165, + "511.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "275.6" + ], + [ + 1717526880, + "247" + ], + [ + 1717526895, + "260.2" + ], + [ + 1717526910, + "273.4" + ], + [ + 1717526925, + "264.6" + ], + [ + 1717526940, + "269" + ], + [ + 1717526955, + "273.4" + ], + [ + 1717526970, + "266.8" + ], + [ + 1717526985, + "266.8" + ], + [ + 1717527000, + "271.2" + ], + [ + 1717527015, + "271.2" + ], + [ + 1717527030, + "264.6" + ], + [ + 1717527045, + "253.6" + ], + [ + 1717527060, + "249.2" + ], + [ + 1717527075, + "258" + ], + [ + 1717527090, + "255.8" + ], + [ + 1717527105, + "253.6" + ], + [ + 1717527120, + "262.4" + ], + [ + 1717527135, + "262.4" + ], + [ + 1717527150, + "264.6" + ], + [ + 1717527165, + "260.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.26", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "flowlogs-pipeline-8xdzw", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "275.6" + ], + [ + 1717526880, + "247" + ], + [ + 1717526895, + "260.2" + ], + [ + 1717526910, + "273.4" + ], + [ + 1717526925, + "264.6" + ], + [ + 1717526940, + "269" + ], + [ + 1717526955, + "273.4" + ], + [ + 1717526970, + "266.8" + ], + [ + 1717526985, + "266.8" + ], + [ + 1717527000, + "271.2" + ], + [ + 1717527015, + "271.2" + ], + [ + 1717527030, + "264.6" + ], + [ + 1717527045, + "253.6" + ], + [ + 1717527060, + "249.2" + ], + [ + 1717527075, + "258" + ], + [ + 1717527090, + "255.8" + ], + [ + 1717527105, + "253.6" + ], + [ + 1717527120, + "262.4" + ], + [ + 1717527135, + "262.4" + ], + [ + 1717527150, + "264.6" + ], + [ + 1717527165, + "260.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.128.2.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "DstK8S_Name": "dns-default-qclfm", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526880, + "130.8" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "130.8" + ], + [ + 1717526970, + "130.8" + ], + [ + 1717526985, + "130.8" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "130.8" + ], + [ + 1717527045, + "130.8" + ], + [ + 1717527060, + "130.8" + ], + [ + 1717527075, + "130.8" + ], + [ + 1717527090, + "130.8" + ], + [ + 1717527105, + "130.8" + ], + [ + 1717527120, + "130.8" + ], + [ + 1717527135, + "130.8" + ], + [ + 1717527150, + "130.8" + ], + [ + 1717527165, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.16", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "dns-default-ncb62", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526880, + "130.8" + ], + [ + 1717526895, + "130.8" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "130.8" + ], + [ + 1717526955, + "130.8" + ], + [ + 1717526985, + "130.8" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "130.8" + ], + [ + 1717527045, + "130.8" + ], + [ + 1717527060, + "130.8" + ], + [ + 1717527075, + "130.8" + ], + [ + 1717527090, + "130.8" + ], + [ + 1717527105, + "130.8" + ], + [ + 1717527120, + "130.8" + ], + [ + 1717527135, + "130.8" + ], + [ + 1717527150, + "130.8" + ], + [ + 1717527165, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-2", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "126.6" + ], + [ + 1717526880, + "137.6" + ], + [ + 1717526895, + "135.4" + ], + [ + 1717526910, + "124.4" + ], + [ + 1717526925, + "140.46666666666667" + ], + [ + 1717526940, + "138.26666666666668" + ], + [ + 1717526955, + "149.93333333333334" + ], + [ + 1717526970, + "149.93333333333334" + ], + [ + 1717527000, + "133.76666666666668" + ], + [ + 1717527015, + "124.4" + ], + [ + 1717527030, + "117.8" + ], + [ + 1717527045, + "122.2" + ], + [ + 1717527060, + "117.9" + ], + [ + 1717527075, + "175.26666666666668" + ], + [ + 1717527090, + "181.76666666666668" + ], + [ + 1717527105, + "154.33333333333334" + ], + [ + 1717527120, + "156.53333333333333" + ], + [ + 1717527135, + "124.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "431.8" + ], + [ + 1717526880, + "420.8" + ], + [ + 1717526895, + "407.6" + ], + [ + 1717526910, + "405.4" + ], + [ + 1717526925, + "403.2" + ], + [ + 1717526940, + "394.4" + ], + [ + 1717526955, + "372.4" + ], + [ + 1717526970, + "374.6" + ], + [ + 1717526985, + "409.8" + ], + [ + 1717527000, + "418.6" + ], + [ + 1717527015, + "387.8" + ], + [ + 1717527030, + "376.8" + ], + [ + 1717527045, + "383.4" + ], + [ + 1717527060, + "396.6" + ], + [ + 1717527075, + "385.6" + ], + [ + 1717527090, + "370.2" + ], + [ + 1717527105, + "374.6" + ], + [ + 1717527120, + "405.4" + ], + [ + 1717527135, + "427.4" + ], + [ + 1717527150, + "401" + ], + [ + 1717527165, + "401" + ] + ] + }, + { + "metric": { + "DstAddr": "10.129.0.74", + "DstK8S_HostName": "memodi-06040910-rv99b-master-2", + "DstK8S_Name": "flowlogs-pipeline-69p6x", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "431.8" + ], + [ + 1717526880, + "420.8" + ], + [ + 1717526895, + "407.6" + ], + [ + 1717526910, + "405.4" + ], + [ + 1717526925, + "403.2" + ], + [ + 1717526940, + "394.4" + ], + [ + 1717526955, + "372.4" + ], + [ + 1717526970, + "374.6" + ], + [ + 1717526985, + "409.8" + ], + [ + 1717527000, + "418.6" + ], + [ + 1717527015, + "387.8" + ], + [ + 1717527030, + "376.8" + ], + [ + 1717527045, + "383.4" + ], + [ + 1717527060, + "396.6" + ], + [ + 1717527075, + "385.6" + ], + [ + 1717527090, + "370.2" + ], + [ + 1717527105, + "374.6" + ], + [ + 1717527120, + "405.4" + ], + [ + 1717527135, + "427.4" + ], + [ + 1717527150, + "401" + ], + [ + 1717527165, + "401" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.11", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "dns-default-qhh5c", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526895, + "130.8" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "130.8" + ], + [ + 1717526955, + "130.8" + ], + [ + 1717526985, + "130.8" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "130.8" + ], + [ + 1717527045, + "130.8" + ], + [ + 1717527060, + "130.8" + ], + [ + 1717527075, + "130.8" + ], + [ + 1717527090, + "130.8" + ], + [ + 1717527105, + "130.8" + ], + [ + 1717527120, + "130.8" + ], + [ + 1717527135, + "130.8" + ], + [ + 1717527150, + "130.8" + ], + [ + 1717527165, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "403.2" + ], + [ + 1717526880, + "407.6" + ], + [ + 1717526895, + "376.8" + ], + [ + 1717526910, + "385.6" + ], + [ + 1717526925, + "403.2" + ], + [ + 1717526940, + "390" + ], + [ + 1717526955, + "390" + ], + [ + 1717526970, + "405.4" + ], + [ + 1717526985, + "403.2" + ], + [ + 1717527000, + "392.2" + ], + [ + 1717527015, + "372.4" + ], + [ + 1717527030, + "365.8" + ], + [ + 1717527045, + "376.8" + ], + [ + 1717527060, + "376.8" + ], + [ + 1717527075, + "383.4" + ], + [ + 1717527090, + "381.2" + ], + [ + 1717527105, + "368" + ], + [ + 1717527120, + "394.4" + ], + [ + 1717527135, + "403.2" + ], + [ + 1717527150, + "390" + ], + [ + 1717527165, + "414.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.124", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "flowlogs-pipeline-4rnwn", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "403.2" + ], + [ + 1717526880, + "407.6" + ], + [ + 1717526895, + "376.8" + ], + [ + 1717526910, + "385.6" + ], + [ + 1717526925, + "403.2" + ], + [ + 1717526940, + "390" + ], + [ + 1717526955, + "390" + ], + [ + 1717526970, + "405.4" + ], + [ + 1717526985, + "403.2" + ], + [ + 1717527000, + "392.2" + ], + [ + 1717527015, + "372.4" + ], + [ + 1717527030, + "365.8" + ], + [ + 1717527045, + "376.8" + ], + [ + 1717527060, + "376.8" + ], + [ + 1717527075, + "383.4" + ], + [ + 1717527090, + "381.2" + ], + [ + 1717527105, + "368" + ], + [ + 1717527120, + "394.4" + ], + [ + 1717527135, + "403.2" + ], + [ + 1717527150, + "390" + ], + [ + 1717527165, + "414.2" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.125", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "console-656c578b98-zcpjg", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "13775.233333333334" + ], + [ + 1717526880, + "195585" + ], + [ + 1717526895, + "182281.83333333334" + ], + [ + 1717526910, + "472.06666666666666" + ], + [ + 1717526925, + "193790.33333333334" + ], + [ + 1717526940, + "203747.83333333334" + ], + [ + 1717526955, + "203736.16666666666" + ], + [ + 1717526970, + "203615.2" + ], + [ + 1717526985, + "10310.8" + ], + [ + 1717527000, + "472.06666666666666" + ], + [ + 1717527015, + "472.06666666666666" + ], + [ + 1717527030, + "472.06666666666666" + ], + [ + 1717527045, + "472.06666666666666" + ], + [ + 1717527060, + "467.6666666666667" + ], + [ + 1717527075, + "478.6666666666667" + ], + [ + 1717527090, + "483.06666666666666" + ], + [ + 1717527105, + "461.06666666666666" + ], + [ + 1717527120, + "450.06666666666666" + ], + [ + 1717527135, + "452.26666666666665" + ], + [ + 1717527150, + "1149.4" + ], + [ + 1717527165, + "193269.1" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.125", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "console-656c578b98-zcpjg", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.184.206", + "SrcK8S_Name": "netobserv-plugin", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "13775.233333333334" + ], + [ + 1717526880, + "195585" + ], + [ + 1717526895, + "182281.83333333334" + ], + [ + 1717526910, + "472.06666666666666" + ], + [ + 1717526925, + "193790.33333333334" + ], + [ + 1717526940, + "203747.83333333334" + ], + [ + 1717526955, + "203736.16666666666" + ], + [ + 1717526970, + "203615.2" + ], + [ + 1717526985, + "10310.8" + ], + [ + 1717527000, + "472.06666666666666" + ], + [ + 1717527015, + "472.06666666666666" + ], + [ + 1717527030, + "472.06666666666666" + ], + [ + 1717527045, + "472.06666666666666" + ], + [ + 1717527060, + "467.6666666666667" + ], + [ + 1717527075, + "478.6666666666667" + ], + [ + 1717527090, + "483.06666666666666" + ], + [ + 1717527105, + "461.06666666666666" + ], + [ + 1717527120, + "458.8666666666667" + ], + [ + 1717527135, + "467.6666666666667" + ], + [ + 1717527150, + "1162.6" + ], + [ + 1717527165, + "193275.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-master-0", + "DstK8S_Name": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerName": "memodi-06040910-rv99b-master-0", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "154.23333333333332" + ], + [ + 1717526880, + "165.66666666666666" + ], + [ + 1717526895, + "135.3" + ], + [ + 1717526910, + "133.1" + ], + [ + 1717526925, + "173.56666666666666" + ], + [ + 1717526940, + "150.13333333333333" + ], + [ + 1717526955, + "152.46666666666667" + ], + [ + 1717526970, + "199.46666666666667" + ], + [ + 1717526985, + "191.86666666666667" + ], + [ + 1717527000, + "180.4" + ], + [ + 1717527015, + "159.06666666666666" + ], + [ + 1717527030, + "138.16666666666666" + ], + [ + 1717527045, + "135.96666666666667" + ], + [ + 1717527060, + "150.26666666666668" + ], + [ + 1717527075, + "138.6" + ], + [ + 1717527090, + "130.9" + ], + [ + 1717527105, + "142.56666666666666" + ], + [ + 1717527120, + "137.73333333333332" + ], + [ + 1717527135, + "140.36666666666667" + ], + [ + 1717527150, + "164.33333333333334" + ], + [ + 1717527165, + "200.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "54312.4" + ], + [ + 1717526880, + "54609.76666666667" + ], + [ + 1717526895, + "53692.63333333333" + ], + [ + 1717526910, + "53855.7" + ], + [ + 1717526925, + "54971.96666666667" + ], + [ + 1717526940, + "55209.73333333333" + ], + [ + 1717526955, + "54704.9" + ], + [ + 1717526970, + "53990.36666666667" + ], + [ + 1717526985, + "55247.2" + ], + [ + 1717527000, + "56785.9" + ], + [ + 1717527015, + "55331.5" + ], + [ + 1717527030, + "54771.86666666667" + ], + [ + 1717527045, + "55306.73333333333" + ], + [ + 1717527060, + "55057.1" + ], + [ + 1717527075, + "54835.2" + ], + [ + 1717527090, + "54417.1" + ], + [ + 1717527105, + "54242.63333333333" + ], + [ + 1717527120, + "54625.63333333333" + ], + [ + 1717527135, + "54146.96666666667" + ], + [ + 1717527150, + "54659.46666666667" + ], + [ + 1717527165, + "55834.86666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "20685" + ], + [ + 1717526880, + "20776.7" + ], + [ + 1717526895, + "20977.6" + ], + [ + 1717526910, + "20803.4" + ], + [ + 1717526925, + "21090.733333333334" + ], + [ + 1717526940, + "21466.566666666666" + ], + [ + 1717526955, + "21222.166666666668" + ], + [ + 1717526970, + "20867.266666666666" + ], + [ + 1717526985, + "20776.866666666665" + ], + [ + 1717527000, + "21083.233333333334" + ], + [ + 1717527015, + "20926.833333333332" + ], + [ + 1717527030, + "20578.433333333334" + ], + [ + 1717527045, + "20714" + ], + [ + 1717527060, + "20753.133333333335" + ], + [ + 1717527075, + "20464.466666666667" + ], + [ + 1717527090, + "20545.366666666665" + ], + [ + 1717527105, + "20656.9" + ], + [ + 1717527120, + "20601.233333333334" + ], + [ + 1717527135, + "20840.233333333334" + ], + [ + 1717527150, + "20857.566666666666" + ], + [ + 1717527165, + "22116.466666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "48594.26666666667" + ], + [ + 1717526880, + "50083.13333333333" + ], + [ + 1717526895, + "49601.73333333333" + ], + [ + 1717526910, + "48884.13333333333" + ], + [ + 1717526925, + "49468.5" + ], + [ + 1717526940, + "49530.066666666666" + ], + [ + 1717526955, + "49477.96666666667" + ], + [ + 1717526970, + "48882.833333333336" + ], + [ + 1717526985, + "49945.73333333333" + ], + [ + 1717527000, + "51908.86666666667" + ], + [ + 1717527015, + "50041.86666666667" + ], + [ + 1717527030, + "48444.46666666667" + ], + [ + 1717527045, + "48690.03333333333" + ], + [ + 1717527060, + "49329.26666666667" + ], + [ + 1717527075, + "49319.86666666667" + ], + [ + 1717527090, + "48479.26666666667" + ], + [ + 1717527105, + "48216.23333333333" + ], + [ + 1717527120, + "49326.46666666667" + ], + [ + 1717527135, + "54028.833333333336" + ], + [ + 1717527150, + "53625" + ], + [ + 1717527165, + "49750.833333333336" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "47457.566666666666" + ], + [ + 1717526880, + "49166.433333333334" + ], + [ + 1717526895, + "46501.166666666664" + ], + [ + 1717526910, + "45682.066666666666" + ], + [ + 1717526925, + "50428.03333333333" + ], + [ + 1717526940, + "50435.433333333334" + ], + [ + 1717526955, + "49732.4" + ], + [ + 1717526970, + "49141.7" + ], + [ + 1717526985, + "46664.36666666667" + ], + [ + 1717527000, + "47757" + ], + [ + 1717527015, + "46070.933333333334" + ], + [ + 1717527030, + "45354.7" + ], + [ + 1717527045, + "45810.066666666666" + ], + [ + 1717527060, + "46561.26666666667" + ], + [ + 1717527075, + "46481.8" + ], + [ + 1717527090, + "45349.63333333333" + ], + [ + 1717527105, + "45313.6" + ], + [ + 1717527120, + "45438.833333333336" + ], + [ + 1717527135, + "45619.6" + ], + [ + 1717527150, + "48607.36666666667" + ], + [ + 1717527165, + "56844.3" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526940, + "154" + ], + [ + 1717526955, + "176" + ], + [ + 1717526970, + "193.6" + ], + [ + 1717526985, + "164.6" + ], + [ + 1717527015, + "17.6" + ], + [ + 1717527150, + "125" + ], + [ + 1717527165, + "171.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "5430.6" + ], + [ + 1717526880, + "6293.8" + ], + [ + 1717526895, + "6240.466666666666" + ], + [ + 1717526910, + "5453.1" + ], + [ + 1717526925, + "6305.033333333334" + ], + [ + 1717526940, + "6898.233333333334" + ], + [ + 1717526955, + "6962.3" + ], + [ + 1717526970, + "6974.8" + ], + [ + 1717526985, + "6423.566666666667" + ], + [ + 1717527000, + "5756.1" + ], + [ + 1717527015, + "5326.6" + ], + [ + 1717527030, + "5313.566666666667" + ], + [ + 1717527045, + "5283.566666666667" + ], + [ + 1717527060, + "5076.5" + ], + [ + 1717527075, + "5248.7" + ], + [ + 1717527090, + "5203.933333333333" + ], + [ + 1717527105, + "5046.166666666667" + ], + [ + 1717527120, + "4902.1" + ], + [ + 1717527135, + "5088.366666666667" + ], + [ + 1717527150, + "5145.1" + ], + [ + 1717527165, + "6038.7" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "loki", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "DstK8S_OwnerType": "Pod", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "20739.033333333333" + ], + [ + 1717526880, + "21076.066666666666" + ], + [ + 1717526895, + "21374.666666666668" + ], + [ + 1717526910, + "21132.2" + ], + [ + 1717526925, + "21341.366666666665" + ], + [ + 1717526940, + "21748.066666666666" + ], + [ + 1717526955, + "22355.366666666665" + ], + [ + 1717526970, + "22043" + ], + [ + 1717526985, + "21254.433333333334" + ], + [ + 1717527000, + "21953.766666666666" + ], + [ + 1717527015, + "22459.966666666667" + ], + [ + 1717527030, + "21744.733333333334" + ], + [ + 1717527045, + "20843.566666666666" + ], + [ + 1717527060, + "20641.766666666666" + ], + [ + 1717527075, + "21479.7" + ], + [ + 1717527090, + "21566.8" + ], + [ + 1717527105, + "20381" + ], + [ + 1717527120, + "20449.966666666667" + ], + [ + 1717527135, + "21551.966666666667" + ], + [ + 1717527150, + "21438.7" + ], + [ + 1717527165, + "21274.266666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526880, + "1536.7333333333333" + ], + [ + 1717526895, + "1541.1333333333334" + ], + [ + 1717526925, + "1538.9333333333334" + ], + [ + 1717526940, + "2624.6" + ], + [ + 1717526955, + "2644.4" + ], + [ + 1717526970, + "2646.4333333333334" + ], + [ + 1717526985, + "1109.7" + ], + [ + 1717527135, + "243.76666666666668" + ], + [ + 1717527150, + "497.1333333333333" + ], + [ + 1717527165, + "2048.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.14", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "netobserv-plugin", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526880, + "1536.7333333333333" + ], + [ + 1717526895, + "1541.1333333333334" + ], + [ + 1717526925, + "1538.9333333333334" + ], + [ + 1717526940, + "2624.6" + ], + [ + 1717526955, + "2644.4" + ], + [ + 1717526970, + "2646.4333333333334" + ], + [ + 1717526985, + "1109.7" + ], + [ + 1717527135, + "243.76666666666668" + ], + [ + 1717527150, + "497.1333333333333" + ], + [ + 1717527165, + "2048.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "123.8" + ], + [ + 1717526880, + "132.6" + ], + [ + 1717526895, + "132.6" + ], + [ + 1717526910, + "123.8" + ], + [ + 1717526940, + "141.4" + ], + [ + 1717526955, + "143.6" + ], + [ + 1717526970, + "143.6" + ], + [ + 1717526985, + "139.2" + ], + [ + 1717527000, + "128.2" + ], + [ + 1717527015, + "123.8" + ], + [ + 1717527030, + "130.4" + ], + [ + 1717527045, + "130.4" + ], + [ + 1717527060, + "123.8" + ], + [ + 1717527075, + "128.2" + ], + [ + 1717527090, + "128.2" + ], + [ + 1717527105, + "123.8" + ], + [ + 1717527120, + "123.8" + ], + [ + 1717527135, + "130.4" + ], + [ + 1717527150, + "130.4" + ], + [ + 1717527165, + "134.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.15", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "flowlogs-pipeline-lf9f5", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "123.8" + ], + [ + 1717526880, + "132.6" + ], + [ + 1717526895, + "132.6" + ], + [ + 1717526910, + "123.8" + ], + [ + 1717526940, + "141.4" + ], + [ + 1717526955, + "143.6" + ], + [ + 1717526970, + "143.6" + ], + [ + 1717526985, + "139.2" + ], + [ + 1717527000, + "128.2" + ], + [ + 1717527015, + "123.8" + ], + [ + 1717527030, + "130.4" + ], + [ + 1717527045, + "130.4" + ], + [ + 1717527060, + "123.8" + ], + [ + 1717527075, + "128.2" + ], + [ + 1717527090, + "128.2" + ], + [ + 1717527105, + "123.8" + ], + [ + 1717527120, + "123.8" + ], + [ + 1717527135, + "130.4" + ], + [ + 1717527150, + "130.4" + ], + [ + 1717527165, + "134.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526880, + "131.23333333333332" + ], + [ + 1717526895, + "131.23333333333332" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "133.43333333333334" + ], + [ + 1717526940, + "131.23333333333332" + ], + [ + 1717526955, + "133.86666666666667" + ], + [ + 1717526970, + "138.7" + ], + [ + 1717526985, + "133.43333333333334" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "128.6" + ], + [ + 1717527045, + "126.4" + ], + [ + 1717527060, + "126.4" + ], + [ + 1717527075, + "128.6" + ], + [ + 1717527090, + "128.6" + ], + [ + 1717527105, + "128.6" + ], + [ + 1717527120, + "128.6" + ], + [ + 1717527135, + "126.4" + ], + [ + 1717527150, + "126.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526880, + "151.8" + ], + [ + 1717526895, + "151.8" + ], + [ + 1717526940, + "195.4" + ], + [ + 1717526955, + "195.4" + ], + [ + 1717526970, + "195.4" + ], + [ + 1717527030, + "26" + ], + [ + 1717527045, + "26" + ], + [ + 1717527075, + "26" + ], + [ + 1717527090, + "26" + ], + [ + 1717527165, + "143.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.130.2.7", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "DstK8S_Name": "dns-default-fzzqg", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526880, + "130.8" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "130.8" + ], + [ + 1717526970, + "130.8" + ], + [ + 1717526985, + "130.8" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "130.8" + ], + [ + 1717527045, + "130.8" + ], + [ + 1717527060, + "130.8" + ], + [ + 1717527075, + "130.8" + ], + [ + 1717527090, + "130.8" + ], + [ + 1717527105, + "130.8" + ], + [ + 1717527120, + "130.8" + ], + [ + 1717527135, + "130.8" + ], + [ + 1717527150, + "130.8" + ], + [ + 1717527165, + "130.8" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.0.88", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-1", + "SrcK8S_Name": "flowlogs-pipeline-cv2hp", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "619.6666666666666" + ], + [ + 1717526880, + "618.8" + ], + [ + 1717526895, + "619.8333333333334" + ], + [ + 1717526910, + "624" + ], + [ + 1717526925, + "626.7" + ], + [ + 1717526940, + "619.1666666666666" + ], + [ + 1717526955, + "611.2" + ], + [ + 1717526970, + "608.5" + ], + [ + 1717526985, + "607.9333333333333" + ], + [ + 1717527000, + "611.3666666666667" + ], + [ + 1717527015, + "613.5666666666667" + ], + [ + 1717527030, + "616.2666666666667" + ], + [ + 1717527045, + "615.5" + ], + [ + 1717527060, + "610.0666666666667" + ], + [ + 1717527075, + "607.6333333333333" + ], + [ + 1717527090, + "608.3666666666667" + ], + [ + 1717527105, + "606.1" + ], + [ + 1717527120, + "606.3333333333334" + ], + [ + 1717527135, + "608.5" + ], + [ + 1717527150, + "608.9333333333333" + ], + [ + 1717527165, + "610.6666666666666" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.128.2.26", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-b-w2fxw", + "SrcK8S_Name": "flowlogs-pipeline-8xdzw", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "487.76666666666665" + ], + [ + 1717526880, + "485.8333333333333" + ], + [ + 1717526895, + "485.6333333333333" + ], + [ + 1717526910, + "487.1" + ], + [ + 1717526925, + "486.8" + ], + [ + 1717526940, + "487.43333333333334" + ], + [ + 1717526955, + "487.3" + ], + [ + 1717526970, + "489.23333333333335" + ], + [ + 1717526985, + "486.5" + ], + [ + 1717527000, + "484.5" + ], + [ + 1717527015, + "486.9" + ], + [ + 1717527030, + "484.6333333333333" + ], + [ + 1717527045, + "487.76666666666665" + ], + [ + 1717527060, + "486.3" + ], + [ + 1717527075, + "481.3666666666667" + ], + [ + 1717527090, + "482.46666666666664" + ], + [ + 1717527105, + "484.8333333333333" + ], + [ + 1717527120, + "488.1" + ], + [ + 1717527135, + "487.93333333333334" + ], + [ + 1717527150, + "485.4" + ], + [ + 1717527165, + "487.1666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.129.0.74", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-2", + "SrcK8S_Name": "flowlogs-pipeline-69p6x", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "467.56666666666666" + ], + [ + 1717526880, + "469.1333333333333" + ], + [ + 1717526895, + "467.1666666666667" + ], + [ + 1717526910, + "467.4" + ], + [ + 1717526925, + "468.2" + ], + [ + 1717526940, + "467.4" + ], + [ + 1717526955, + "467.96666666666664" + ], + [ + 1717526970, + "470.1666666666667" + ], + [ + 1717526985, + "472" + ], + [ + 1717527000, + "472.26666666666665" + ], + [ + 1717527015, + "471.3333333333333" + ], + [ + 1717527030, + "471.1333333333333" + ], + [ + 1717527045, + "472.6666666666667" + ], + [ + 1717527060, + "472.8666666666667" + ], + [ + 1717527075, + "470.3" + ], + [ + 1717527090, + "467.5" + ], + [ + 1717527105, + "469.26666666666665" + ], + [ + 1717527120, + "471.26666666666665" + ], + [ + 1717527135, + "468.7" + ], + [ + 1717527150, + "472.7" + ], + [ + 1717527165, + "475.8333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.0.124", + "SrcK8S_HostName": "memodi-06040910-rv99b-master-0", + "SrcK8S_Name": "flowlogs-pipeline-4rnwn", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "434.53333333333336" + ], + [ + 1717526880, + "435.53333333333336" + ], + [ + 1717526895, + "437.1333333333333" + ], + [ + 1717526910, + "440.1" + ], + [ + 1717526925, + "443.8333333333333" + ], + [ + 1717526940, + "442.8666666666667" + ], + [ + 1717526955, + "438.6666666666667" + ], + [ + 1717526970, + "436.3666666666667" + ], + [ + 1717526985, + "436.4" + ], + [ + 1717527000, + "438.6" + ], + [ + 1717527015, + "438" + ], + [ + 1717527030, + "440.46666666666664" + ], + [ + 1717527045, + "439.5" + ], + [ + 1717527060, + "438.03333333333336" + ], + [ + 1717527075, + "440.3333333333333" + ], + [ + 1717527090, + "439.96666666666664" + ], + [ + 1717527105, + "439.3333333333333" + ], + [ + 1717527120, + "439.6333333333333" + ], + [ + 1717527135, + "439.56666666666666" + ], + [ + 1717527150, + "439.8666666666667" + ], + [ + 1717527165, + "440.6333333333333" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "152.7" + ], + [ + 1717526880, + "152.86666666666667" + ], + [ + 1717526895, + "153.06666666666666" + ], + [ + 1717526910, + "153.03333333333333" + ], + [ + 1717526925, + "152.83333333333334" + ], + [ + 1717526940, + "152.96666666666667" + ], + [ + 1717526955, + "153.06666666666666" + ], + [ + 1717526970, + "153.1" + ], + [ + 1717526985, + "153.06666666666666" + ], + [ + 1717527000, + "153" + ], + [ + 1717527015, + "153.1" + ], + [ + 1717527030, + "153.2" + ], + [ + 1717527045, + "153.23333333333332" + ], + [ + 1717527060, + "153.13333333333333" + ], + [ + 1717527075, + "153.06666666666666" + ], + [ + 1717527090, + "152.83333333333334" + ], + [ + 1717527105, + "152.73333333333332" + ], + [ + 1717527120, + "152.76666666666668" + ], + [ + 1717527135, + "152.93333333333334" + ], + [ + 1717527150, + "152.96666666666667" + ], + [ + 1717527165, + "152.86666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.15", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "flowlogs-pipeline-lf9f5", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "313.3" + ], + [ + 1717526880, + "311.8666666666667" + ], + [ + 1717526895, + "313.6333333333333" + ], + [ + 1717526910, + "315.6" + ], + [ + 1717526925, + "313.26666666666665" + ], + [ + 1717526940, + "313.7" + ], + [ + 1717526955, + "316.46666666666664" + ], + [ + 1717526970, + "316.4" + ], + [ + 1717526985, + "315.9" + ], + [ + 1717527000, + "314.3" + ], + [ + 1717527015, + "312.3" + ], + [ + 1717527030, + "311.8666666666667" + ], + [ + 1717527045, + "316.1333333333333" + ], + [ + 1717527060, + "316" + ], + [ + 1717527075, + "311.8" + ], + [ + 1717527090, + "311.7" + ], + [ + 1717527105, + "313.53333333333336" + ], + [ + 1717527120, + "313.8666666666667" + ], + [ + 1717527135, + "312" + ], + [ + 1717527150, + "313.9" + ], + [ + 1717527165, + "313.73333333333335" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.12", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "prometheus-k8s-1", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerType": "StatefulSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "543.6333333333333" + ], + [ + 1717526880, + "542.9" + ], + [ + 1717526895, + "532.7333333333333" + ], + [ + 1717526910, + "533.4333333333333" + ], + [ + 1717526925, + "533.2" + ], + [ + 1717526940, + "523.5666666666667" + ], + [ + 1717526955, + "524.7" + ], + [ + 1717526970, + "515.3666666666667" + ], + [ + 1717526985, + "516.6333333333333" + ], + [ + 1717527000, + "516.2666666666667" + ], + [ + 1717527015, + "518.6" + ], + [ + 1717527030, + "520.9666666666667" + ], + [ + 1717527045, + "520.5333333333333" + ], + [ + 1717527060, + "520.6666666666666" + ], + [ + 1717527075, + "520.1333333333333" + ], + [ + 1717527090, + "529.0666666666667" + ], + [ + 1717527105, + "517.6666666666666" + ], + [ + 1717527120, + "507.4" + ], + [ + 1717527135, + "518.0333333333333" + ], + [ + 1717527150, + "528.4" + ], + [ + 1717527165, + "528.2666666666667" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.2", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_OwnerType": "Node", + "DstK8S_Type": "Node", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "160.2" + ], + [ + 1717526880, + "164.6" + ], + [ + 1717526895, + "166.8" + ], + [ + 1717526910, + "166.8" + ], + [ + 1717526925, + "166.8" + ], + [ + 1717526940, + "164.6" + ], + [ + 1717526955, + "164.6" + ], + [ + 1717526970, + "162.4" + ], + [ + 1717526985, + "160.2" + ], + [ + 1717527000, + "160.2" + ], + [ + 1717527015, + "158" + ], + [ + 1717527030, + "162.4" + ], + [ + 1717527045, + "162.4" + ], + [ + 1717527060, + "160.2" + ], + [ + 1717527075, + "169.56666666666666" + ], + [ + 1717527090, + "171.76666666666668" + ], + [ + 1717527105, + "162.4" + ], + [ + 1717527120, + "162.4" + ], + [ + 1717527135, + "166.8" + ], + [ + 1717527150, + "164.6" + ], + [ + 1717527165, + "164.6" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.20", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "thanos-querier-549b845d68-jspvw", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "thanos-querier", + "DstK8S_OwnerType": "Deployment", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.14", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "netobserv-plugin-786c9df8c-d65fs", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "netobserv-plugin", + "SrcK8S_OwnerType": "Deployment", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "48.4" + ], + [ + 1717526880, + "149.96666666666667" + ], + [ + 1717526895, + "154.36666666666667" + ], + [ + 1717526955, + "213.7" + ], + [ + 1717526970, + "272.1333333333333" + ], + [ + 1717527000, + "48.4" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.130.2.12", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-c-np4qw", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Pod", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "269" + ], + [ + 1717526880, + "271.2" + ], + [ + 1717526895, + "266.8" + ], + [ + 1717526910, + "269" + ], + [ + 1717526925, + "269" + ], + [ + 1717526940, + "275.6" + ], + [ + 1717526955, + "284.4" + ], + [ + 1717526970, + "291" + ], + [ + 1717526985, + "288.8" + ], + [ + 1717527000, + "284.4" + ], + [ + 1717527015, + "282.2" + ], + [ + 1717527030, + "273.4" + ], + [ + 1717527045, + "282.2" + ], + [ + 1717527060, + "277.8" + ], + [ + 1717527075, + "269" + ], + [ + 1717527090, + "282.2" + ], + [ + 1717527105, + "284.4" + ], + [ + 1717527120, + "269" + ], + [ + 1717527135, + "260.2" + ], + [ + 1717527150, + "253.6" + ], + [ + 1717527165, + "258" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.33", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "flowlogs-pipeline-gxn68", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "172.30.207.54", + "SrcK8S_Name": "loki", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "SrcK8S_OwnerType": "Service", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + 1717526865, + "269" + ], + [ + 1717526880, + "271.2" + ], + [ + 1717526895, + "266.8" + ], + [ + 1717526910, + "269" + ], + [ + 1717526925, + "269" + ], + [ + 1717526940, + "275.6" + ], + [ + 1717526955, + "284.4" + ], + [ + 1717526970, + "291" + ], + [ + 1717526985, + "288.8" + ], + [ + 1717527000, + "284.4" + ], + [ + 1717527015, + "282.2" + ], + [ + 1717527030, + "273.4" + ], + [ + 1717527045, + "282.2" + ], + [ + 1717527060, + "277.8" + ], + [ + 1717527075, + "269" + ], + [ + 1717527090, + "282.2" + ], + [ + 1717527105, + "284.4" + ], + [ + 1717527120, + "269" + ], + [ + 1717527135, + "260.2" + ], + [ + 1717527150, + "253.6" + ], + [ + 1717527165, + "258" + ] + ] + }, + { + "metric": { + "DstAddr": "10.131.0.5", + "DstK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "DstK8S_Name": "dns-default-kn28m", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_OwnerName": "dns-default", + "DstK8S_OwnerType": "DaemonSet", + "DstK8S_Type": "Pod", + "SrcAddr": "10.131.0.33", + "SrcK8S_HostName": "memodi-06040910-rv99b-worker-a-q5cc4", + "SrcK8S_Name": "flowlogs-pipeline-gxn68", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "SrcK8S_OwnerType": "DaemonSet", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + 1717526865, + "130.8" + ], + [ + 1717526910, + "130.8" + ], + [ + 1717526925, + "130.8" + ], + [ + 1717526940, + "130.8" + ], + [ + 1717526970, + "130.8" + ], + [ + 1717526985, + "130.8" + ], + [ + 1717527000, + "130.8" + ], + [ + 1717527015, + "130.8" + ], + [ + 1717527030, + "130.8" + ], + [ + 1717527045, + "130.8" + ], + [ + 1717527060, + "130.8" + ], + [ + 1717527075, + "130.8" + ], + [ + 1717527090, + "130.8" + ], + [ + 1717527105, + "130.8" + ], + [ + 1717527120, + "130.8" + ], + [ + 1717527135, + "130.8" + ], + [ + 1717527150, + "130.8" + ], + [ + 1717527165, + "130.8" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 528, + "bytesSent": 0, + "downloadTime": 10770, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 0, + "requests": 1 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 80, + "totalChunksMatched": 0, + "totalLinesSent": 0, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 0, + "execTime": 0.141422672, + "linesProcessedPerSecond": 0, + "queueTime": 2.727852989, + "shards": 80, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 0, + "totalEntriesReturned": 0, + "totalLinesProcessed": 0, + "totalPostFilterLines": 0, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 28586, + "bytesSent": 0, + "downloadTime": 27266, + "entriesFound": 1, + "entriesRequested": 1, + "entriesStored": 0, + "requests": 1 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 1804748, + "decompressedBytes": 8221733, + "decompressedLines": 11074, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 1968705, + "headChunkLines": 2721, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 13795, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 158, + "totalChunksMatched": 110, + "totalLinesSent": 5859, + "totalReached": 80 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 68627479, + "execTime": 0.148489178, + "linesProcessedPerSecond": 92902, + "queueTime": 2.960829992, + "shards": 80, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 10190438, + "totalEntriesReturned": 55, + "totalLinesProcessed": 13795, + "totalPostFilterLines": 13795, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717527176 +} diff --git a/web/cypress/fixtures/flowmetrics/table_100.json b/web/cypress/fixtures/flowmetrics/table_100.json new file mode 100644 index 000000000..8712a9774 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/table_100.json @@ -0,0 +1,1289 @@ +{ + "status": "success", + "data": { + "resultType": "streams", + "result": [ + { + "stream": { + "FlowDirection": "0", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-compactor", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013663000064", + "{\"SrcMac\":\"0A:58:A8:FE:00:06\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.18.124\",\"Flags\":16,\"Interface\":\"genev_sys_6081\",\"SrcPort\":7946,\"DstMac\":\"0A:58:A8:FE:00:07\",\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013663,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.128.2.19\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowStartMs\":1696965013663,\"Proto\":6,\"Bytes\":66,\"TimeReceived\":1696965014,\"DstPort\":57616,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstAddr\":\"10.129.2.20\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-compactor", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014222000128", + "{\"Flags\":16,\"AgentIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965014222,\"DstPort\":7946,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"StatefulSet\",\"Bytes\":173,\"TimeFlowStartMs\":1696965014222,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"Interface\":\"genev_sys_6081\",\"SrcPort\":44208,\"Proto\":6,\"DstAddr\":\"10.129.2.20\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.20\"}" + ], + [ + "1696965013863000064", + "{\"TimeFlowEndMs\":1696965013863,\"DstAddr\":\"10.129.2.20\",\"Bytes\":82,\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcAddr\":\"10.128.2.20\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":44202,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeReceived\":1696965014,\"Interface\":\"c811a4622d80143\",\"Packets\":1,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013863,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"DstMac\":\"0A:58:0A:81:02:14\",\"Flags\":16,\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"SrcMac\":\"0A:58:0A:81:02:01\",\"DstPort\":7946,\"Proto\":6}" + ], + [ + "1696965013860999936", + "{\"DstK8S_Name\":\"lokistack-compactor-0\",\"SrcPort\":7946,\"Etype\":2048,\"DstMac\":\"0A:58:A8:FE:00:07\",\"Flags\":512,\"TimeReceived\":1696965014,\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"Interface\":\"genev_sys_6081\",\"SrcAddr\":\"10.131.0.23\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Proto\":6,\"TimeFlowStartMs\":1696965013861,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstAddr\":\"10.129.2.20\",\"TimeFlowEndMs\":1696965013861,\"Packets\":1,\"DstK8S_HostIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"Bytes\":66,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstPort\":47648}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "DstK8S_OwnerName": "lokistack-compactor", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013660999936", + "{\"AgentIP\":\"10.0.18.124\",\"IfDirection\":0,\"SrcPort\":7946,\"TimeFlowEndMs\":1696965013661,\"DstK8S_Name\":\"lokistack-compactor-0\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965013661,\"DstAddr\":\"10.129.2.20\",\"Flags\":512,\"Proto\":6,\"Bytes\":66,\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstPort\":55978,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcAddr\":\"10.131.0.19\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-distributor", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-compactor", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013347000064", + "{\"TimeFlowEndMs\":1696965013347,\"Interface\":\"genev_sys_6081\",\"Packets\":1,\"Flags\":16,\"DstMac\":\"0A:58:A8:FE:00:07\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.129.2.20\",\"DstK8S_OwnerType\":\"StatefulSet\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.19\",\"DstK8S_HostIP\":\"10.0.18.124\",\"Proto\":6,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.84.208\",\"SrcPort\":7946,\"Bytes\":66,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"DstPort\":57610,\"TimeFlowStartMs\":1696965013347,\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "lokistack-compactor", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier" + }, + "values": [ + [ + "1696965013691000064", + "{\"Proto\":6,\"DstAddr\":\"10.129.2.20\",\"Flags\":16,\"SrcAddr\":\"10.129.2.17\",\"DstK8S_HostIP\":\"10.0.18.124\",\"Interface\":\"11542a2810ada05\",\"Etype\":2048,\"Packets\":1,\"DstK8S_Name\":\"lokistack-compactor-0\",\"TimeReceived\":1696965014,\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965013691,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"DstMac\":\"0A:58:0A:81:02:14\",\"Bytes\":82,\"DstPort\":7946,\"TimeFlowStartMs\":1696965013691,\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":0,\"SrcPort\":48306}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-distributor" + }, + "values": [ + [ + "1696965013348000000", + "{\"DstAddr\":\"10.128.2.19\",\"SrcAddr\":\"10.129.2.20\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"Bytes\":66,\"Etype\":2048,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":7946,\"TimeFlowEndMs\":1696965013348,\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"AgentIP\":\"10.0.84.208\",\"SrcPort\":57610,\"TimeFlowStartMs\":1696965013348,\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Flags\":16,\"Interface\":\"genev_sys_6081\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965014060000000", + "{\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Packets\":1,\"TimeReceived\":1696965014,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"DstPort\":7946,\"Bytes\":74,\"Interface\":\"c811a4622d80143\",\"SrcAddr\":\"10.129.2.20\",\"SrcPort\":43318,\"DstAddr\":\"10.131.0.18\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"DstMac\":\"0A:58:0A:81:02:01\",\"Flags\":2,\"TimeFlowStartMs\":1696965014060,\"Proto\":6,\"TimeFlowEndMs\":1696965014060,\"IfDirection\":0}" + ], + [ + "1696965013662000128", + "{\"TimeReceived\":1696965014,\"Packets\":1,\"TimeFlowStartMs\":1696965013662,\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"Bytes\":82,\"AgentIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.20\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.18.124\",\"Flags\":512,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcPort\":57616,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":7946,\"TimeFlowEndMs\":1696965013662,\"Interface\":\"c811a4622d80143\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Proto\":6,\"DstAddr\":\"10.128.2.19\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965013639000064", + "{\"SrcPort\":7946,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"Bytes\":66,\"IfDirection\":0,\"TimeFlowEndMs\":1696965013639,\"DstPort\":41624,\"Interface\":\"c811a4622d80143\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.20\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"DstK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"TimeFlowStartMs\":1696965013639,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"DstMac\":\"0A:58:0A:81:02:01\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.131.0.18\",\"Flags\":16}" + ], + [ + "1696965013347000064", + "{\"SrcPort\":57610,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013347,\"Flags\":512,\"IfDirection\":1,\"DstPort\":7946,\"TimeReceived\":1696965014,\"Bytes\":82,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Packets\":1,\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.128.2.19\",\"SrcAddr\":\"10.129.2.20\",\"Etype\":2048,\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"TimeFlowStartMs\":1696965013347,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-querier", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014289999872", + "{\"TimeFlowStartMs\":1696965014290,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"TimeReceived\":1696965014,\"DstPort\":7946,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.18.124\",\"DstAddr\":\"10.128.2.19\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"SrcPort\":52930,\"TimeFlowEndMs\":1696965014290,\"Interface\":\"11542a2810ada05\",\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"Bytes\":82,\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "lokistack-ingester", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "FlowDirection": "2", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "DstK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965013190000128", + "{\"Interface\":\"180c53e5f387e40\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"SrcMac\":\"0A:58:0A:83:00:17\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"TimeFlowEndMs\":1696965013190,\"DstPort\":7946,\"DstMac\":\"0A:58:0A:83:00:12\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstAddr\":\"10.131.0.18\",\"TimeFlowStartMs\":1696965013190,\"Etype\":2048,\"Flags\":16,\"Proto\":6,\"SrcPort\":35720,\"IfDirection\":0,\"TimeReceived\":1696965013,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcAddr\":\"10.131.0.23\",\"AgentIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-gateway", + "FlowDirection": "2", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965013380999936", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcPort\":34602,\"AgentIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:0A:83:00:15\",\"SrcAddr\":\"10.131.0.16\",\"DstAddr\":\"10.131.0.21\",\"Proto\":6,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstPort\":8083,\"IfDirection\":0,\"SrcMac\":\"0A:58:0A:83:00:10\",\"TimeFlowEndMs\":1696965013381,\"TimeFlowStartMs\":1696965013381,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"Interface\":\"ens5\",\"PktDropBytes\":32,\"SrcK8S_Name\":\"prometheus-k8s-1\",\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-gateway-856f4fb587-f2hk6\",\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-gateway", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014560999936", + "{\"DstK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"26:10:35:4E:D0:50\",\"DstAddr\":\"10.129.2.19\",\"SrcAddr\":\"10.129.2.2\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"Proto\":6,\"Interface\":\"abe73e0313a4c0f\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Bytes\":66,\"SrcPort\":49566,\"TimeReceived\":1696965014,\"TimeFlowEndMs\":1696965014561,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014561,\"DstPort\":8083,\"DstK8S_Name\":\"lokistack-gateway-856f4fb587-6vhvv\",\"IfDirection\":1,\"Etype\":2048,\"DstMac\":\"0A:58:0A:81:02:13\",\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_OwnerName": "lokistack-ingester", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965013392000000", + "{\"TimeFlowEndMs\":1696965013392,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Bytes\":82,\"Proto\":6,\"Packets\":1,\"IfDirection\":0,\"Etype\":2048,\"Flags\":512,\"DstPort\":7946,\"SrcK8S_OwnerType\":\"StatefulSet\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcAddr\":\"10.131.0.23\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstAddr\":\"10.128.2.20\",\"SrcPort\":37110,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013392,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-ingester", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier" + }, + "values": [ + [ + "1696965013420999936", + "{\"TimeReceived\":1696965013,\"Packets\":1,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"AgentIP\":\"10.0.84.208\",\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013421,\"IfDirection\":1,\"Interface\":\"eeca9bf491d7e0e\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"0A:58:0A:80:02:14\",\"Bytes\":78,\"DstPort\":34348,\"DstK8S_Name\":\"lokistack-ingester-0\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013421,\"SrcMac\":\"0A:58:0A:80:02:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":7946,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.131.0.19\",\"DstAddr\":\"10.128.2.20\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Deployment\"}" + ], + [ + "1696965013092999936", + "{\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcPort\":37176,\"DstMac\":\"0A:58:0A:80:02:14\",\"Bytes\":82,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"TimeFlowEndMs\":1696965013093,\"DstAddr\":\"10.128.2.20\",\"DstPort\":7946,\"Interface\":\"eeca9bf491d7e0e\",\"TimeReceived\":1696965013,\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"SrcK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013093,\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":1,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048}" + ], + [ + "1696965013022000128", + "{\"Etype\":2048,\"Bytes\":66,\"TimeFlowEndMs\":1696965013022,\"Flags\":16,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"TimeFlowStartMs\":1696965013022,\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:0A:80:02:14\",\"SrcPort\":7946,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"eeca9bf491d7e0e\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstPort\":40958,\"DstAddr\":\"10.128.2.20\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"IfDirection\":1,\"SrcAddr\":\"10.129.2.17\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"Proto\":6,\"Packets\":1}" + ], + [ + "1696965012992000000", + "{\"TimeFlowEndMs\":1696965012992,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstPort\":58988,\"Packets\":1,\"AgentIP\":\"10.0.45.84\",\"Interface\":\"180c53e5f387e40\",\"Flags\":16,\"TimeReceived\":1696965013,\"SrcPort\":7946,\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"TimeFlowStartMs\":1696965012992,\"IfDirection\":1,\"DstMac\":\"0A:58:0A:83:00:17\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.23\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "Duplicate": "false", + "FlowDirection": "1", + "DstK8S_OwnerName": "lokistack-ingester", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014260000000", + "{\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"TimeFlowEndMs\":1696965014260,\"AgentIP\":\"10.0.18.124\",\"DstAddr\":\"10.128.2.20\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcAddr\":\"10.129.2.20\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowStartMs\":1696965014260,\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":1,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"Proto\":6,\"Flags\":512,\"DstPort\":7946,\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcPort\":48512,\"Packets\":1}" + ], + [ + "1696965014222000128", + "{\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"c811a4622d80143\",\"Packets\":1,\"TimeReceived\":1696965014,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstPort\":44208,\"DstK8S_OwnerType\":\"StatefulSet\",\"Etype\":2048,\"Bytes\":66,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":7946,\"TimeFlowEndMs\":1696965014222,\"SrcK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014222,\"DstK8S_Name\":\"lokistack-ingester-0\",\"DstAddr\":\"10.128.2.20\",\"DstMac\":\"0A:58:0A:81:02:01\",\"IfDirection\":0,\"SrcMac\":\"0A:58:0A:81:02:14\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Flags\":512,\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.20\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965014060000000", + "{\"SrcAddr\":\"10.129.2.20\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"StatefulSet\",\"Proto\":6,\"Bytes\":82,\"TimeFlowEndMs\":1696965014060,\"IfDirection\":1,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Packets\":1,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcPort\":48496,\"DstPort\":7946,\"TimeReceived\":1696965014,\"DstMac\":\"0A:58:A8:FE:00:06\",\"TimeFlowStartMs\":1696965014060,\"DstAddr\":\"10.128.2.20\"}" + ], + [ + "1696965013460000000", + "{\"TimeFlowStartMs\":1696965013460,\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013460,\"TimeReceived\":1696965014,\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"c811a4622d80143\",\"Bytes\":66,\"DstAddr\":\"10.131.0.23\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.20\",\"Etype\":2048,\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"DstPort\":7946,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.18.124\",\"Flags\":16,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcPort\":38962,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "DstK8S_Namespace": "netobserv", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-ingester", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013352999936", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstAddr\":\"10.131.0.23\",\"Packets\":1,\"SrcMac\":\"0A:58:0A:80:02:13\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"SrcAddr\":\"10.128.2.19\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":40720,\"DstMac\":\"0A:58:0A:80:02:01\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013353,\"IfDirection\":0,\"Interface\":\"1d39912d5faa2e1\",\"TimeFlowStartMs\":1696965013353,\"DstK8S_Name\":\"lokistack-ingester-1\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstPort\":9095,\"Flags\":16,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965013492000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965014,\"Interface\":\"11542a2810ada05\",\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Bytes\":66,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013492,\"TimeFlowStartMs\":1696965013492,\"SrcMac\":\"0A:58:0A:81:02:11\",\"DstPort\":7946,\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"IfDirection\":0,\"Etype\":2048,\"AgentIP\":\"10.0.18.124\",\"SrcPort\":37180,\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.128.2.20\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013022000128", + "{\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstPort\":40958,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":512,\"Packets\":1,\"SrcPort\":7946,\"TimeFlowEndMs\":1696965013022,\"TimeReceived\":1696965014,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013022,\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_OwnerType\":\"Deployment\",\"Bytes\":66,\"Interface\":\"genev_sys_6081\",\"DstAddr\":\"10.128.2.20\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "FlowDirection": "2", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "lokistack-ingester", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965013420000000", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"SrcAddr\":\"10.128.2.19\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"eeca9bf491d7e0e\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":74,\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013420,\"SrcPort\":7946,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.84.208\",\"IfDirection\":1,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"Etype\":2048,\"DstAddr\":\"10.128.2.20\",\"Proto\":6,\"TimeFlowStartMs\":1696965013420,\"DstPort\":52358,\"Flags\":256,\"SrcMac\":\"0A:58:0A:80:02:13\",\"DstMac\":\"0A:58:0A:80:02:14\",\"Packets\":1}" + ], + [ + "1696965013188999936", + "{\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.131.0.23\",\"DstMac\":\"0A:58:0A:83:00:17\",\"DstPort\":35732,\"Interface\":\"180c53e5f387e40\",\"SrcMac\":\"0A:58:0A:83:00:12\",\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"Packets\":1,\"Bytes\":66,\"SrcPort\":7946,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Proto\":6,\"SrcAddr\":\"10.131.0.18\",\"TimeFlowStartMs\":1696965013189,\"AgentIP\":\"10.0.45.84\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013189,\"TimeReceived\":1696965013,\"Flags\":16,\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"StatefulSet\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "app": "netobserv-flowcollector", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965014438000128", + "{\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":1,\"Bytes\":84,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:81:02:11\",\"SrcAddr\":\"10.131.0.18\",\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"SrcMac\":\"0A:58:0A:81:02:01\",\"SrcPort\":59660,\"Flags\":16,\"DstPort\":7946,\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"TimeFlowEndMs\":1696965014438,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"11542a2810ada05\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014438,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965014,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.129.2.17\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965014446000128", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1696965014446,\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":7946,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965014,\"Bytes\":66,\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcAddr\":\"10.131.0.19\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Flags\":16,\"TimeFlowEndMs\":1696965014446,\"Proto\":6,\"Interface\":\"genev_sys_6081\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"SrcPort\":44362,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.129.2.17\",\"Etype\":2048,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\"}" + ], + [ + "1696965013492000000", + "{\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"genev_sys_6081\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstPort\":41034,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"Etype\":2048,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"DstAddr\":\"10.129.2.17\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965014,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"Bytes\":66,\"SrcPort\":7946,\"SrcAddr\":\"10.131.0.19\",\"TimeFlowStartMs\":1696965013492,\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013492}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965013462000128", + "{\"SrcAddr\":\"10.129.2.20\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcPort\":55970,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"IfDirection\":1,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"Bytes\":66,\"DstAddr\":\"10.131.0.19\",\"Interface\":\"genev_sys_6081\",\"DstK8S_OwnerType\":\"Deployment\",\"TimeFlowEndMs\":1696965013462,\"DstPort\":7946,\"TimeFlowStartMs\":1696965013462,\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"AgentIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965014489999872", + "{\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014490,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.131.0.19\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.17\",\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"Bytes\":84,\"SrcMac\":\"0A:58:0A:81:02:11\",\"DstK8S_HostIP\":\"10.0.45.84\",\"IfDirection\":0,\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstPort\":7946,\"AgentIP\":\"10.0.18.124\",\"Interface\":\"11542a2810ada05\",\"TimeFlowEndMs\":1696965014490,\"Flags\":16,\"SrcPort\":34468,\"TimeReceived\":1696965014,\"Packets\":1}" + ], + [ + "1696965013446000128", + "{\"IfDirection\":0,\"Flags\":16,\"TimeFlowEndMs\":1696965013446,\"Proto\":6,\"Etype\":2048,\"SrcPort\":7946,\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":44356,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"SrcAddr\":\"10.129.2.17\",\"AgentIP\":\"10.0.18.124\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"TimeReceived\":1696965014,\"Interface\":\"11542a2810ada05\",\"DstMac\":\"0A:58:0A:81:02:01\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013446,\"DstAddr\":\"10.131.0.19\",\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.18.124\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-querier", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-dns", + "SrcK8S_OwnerName": "dns-default" + }, + "values": [ + [ + "1696965013724000000", + "{\"Bytes\":210,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcAddr\":\"10.129.2.7\",\"TimeFlowEndMs\":1696965013724,\"TimeFlowStartMs\":1696965013724,\"TimeReceived\":1696965014,\"IfDirection\":0,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"840aa5868d94af9\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"SrcMac\":\"0A:58:0A:81:02:07\",\"SrcK8S_Name\":\"dns-default-qg9gj\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Proto\":17,\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":49262,\"DstMac\":\"0A:58:0A:81:02:11\",\"SrcPort\":5353,\"DstAddr\":\"10.129.2.17\"}" + ], + [ + "1696965012960999936", + "{\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"0A:58:0A:83:00:13\",\"Packets\":1,\"AgentIP\":\"10.0.45.84\",\"DstPort\":48750,\"SrcAddr\":\"10.131.0.6\",\"TimeFlowStartMs\":1696965012961,\"Proto\":17,\"TimeFlowEndMs\":1696965012961,\"Interface\":\"6bb1b68967c10bf\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"Bytes\":263,\"SrcPort\":5353,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"dns-default-z67mg\",\"SrcMac\":\"0A:58:0A:83:00:06\",\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_OwnerName": "router-default", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-ingress", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013264999936", + "{\"TimeReceived\":1696965013,\"TimeFlowStartMs\":1696965013265,\"DstK8S_Name\":\"console-f74d4f8c4-4lk65\",\"Packets\":1,\"SrcMac\":\"0A:58:0A:80:02:05\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcPort\":54820,\"DstK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"DstMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_OwnerType\":\"Deployment\",\"Bytes\":2336,\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"cbb8df58ce2326f\",\"DstPort\":8443,\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.128.2.5\",\"SrcK8S_Name\":\"router-default-5475f6bbc4-pf2s8\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Flags\":16,\"DstAddr\":\"10.128.0.117\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013265,\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "Duplicate": "true", + "SrcK8S_OwnerName": "catalog-operator", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_OwnerName": "qe-unreleased-testing" + }, + "values": [ + [ + "1696965012985999872", + "{\"TimeFlowEndMs\":1696965012986,\"DstPort\":50051,\"DstAddr\":\"10.128.2.22\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcPort\":49270,\"Bytes\":66,\"SrcMac\":\"0A:58:A8:FE:00:02\",\"DstK8S_OwnerType\":\"CatalogSource\",\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.89.254\",\"IfDirection\":0,\"Packets\":1,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"SrcAddr\":\"10.130.0.14\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012986,\"SrcK8S_Name\":\"catalog-operator-64ddc5c466-t4ngf\",\"Interface\":\"genev_sys_6081\",\"AgentIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Pod", + "Duplicate": "true", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "packageserver", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_OwnerName": "qe-unreleased-testing", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965013513999872", + "{\"DstPort\":50051,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"CatalogSource\",\"SrcAddr\":\"10.129.0.11\",\"TimeFlowEndMs\":1696965013514,\"IfDirection\":0,\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstAddr\":\"10.128.2.22\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"0A:58:A8:FE:00:04\",\"Bytes\":4818,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":58,\"AgentIP\":\"10.0.84.208\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcPort\":55652,\"Proto\":6,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"genev_sys_6081\",\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"TimeFlowStartMs\":1696965011380,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013332999936", + "{\"SrcPort\":55652,\"Bytes\":4002,\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013333,\"DstPort\":50051,\"Packets\":47,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1696965011489,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.128.2.22\",\"DstK8S_OwnerType\":\"CatalogSource\",\"AgentIP\":\"10.0.84.208\",\"Etype\":2048,\"IfDirection\":1,\"SrcAddr\":\"10.129.0.11\",\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:0A:80:02:16\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"1dd3c81374c0162\",\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-controller-manager", + "SrcK8S_OwnerName": "controller-manager", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013019000064", + "{\"DstK8S_Name\":\"prometheus-k8s-1\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstPort\":43922,\"Etype\":2048,\"DstAddr\":\"10.131.0.16\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcPort\":8443,\"IfDirection\":1,\"DstMac\":\"0A:58:0A:83:00:10\",\"SrcK8S_Name\":\"controller-manager-59d75f4df5-wwjd5\",\"Flags\":16,\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013019,\"AgentIP\":\"10.0.45.84\",\"Interface\":\"f8cb4acfe3f2797\",\"Bytes\":4184,\"TimeFlowEndMs\":1696965013019,\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcAddr\":\"10.130.0.60\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeReceived\":1696965013}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_OwnerName": "kube-apiserver-operator", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013211000064", + "{\"SrcAddr\":\"10.130.0.22\",\"SrcMac\":\"0A:58:A8:FE:00:02\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"kube-apiserver-operator-5dcd56467d-dd2k6\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowStartMs\":1696965013211,\"DstMac\":\"0A:58:A8:FE:00:05\",\"Interface\":\"genev_sys_6081\",\"DstAddr\":\"10.131.0.16\",\"AgentIP\":\"10.0.45.84\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcPort\":8443,\"DstPort\":38886,\"DstK8S_Name\":\"prometheus-k8s-1\",\"Bytes\":4193,\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965013211,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Namespace": "openshift-monitoring", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "catalog-operator", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013472999936", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"PktDropPackets\":1,\"DstK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"TimeFlowStartMs\":1696965013473,\"AgentIP\":\"10.0.84.208\",\"DstMac\":\"0A:58:0A:80:02:10\",\"PktDropBytes\":32,\"SrcAddr\":\"10.130.0.14\",\"PktDropLatestFlags\":16,\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcPort\":8443,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.84.208\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"DstAddr\":\"10.128.2.16\",\"Interface\":\"ens5\",\"DstPort\":37262,\"SrcK8S_Name\":\"catalog-operator-64ddc5c466-t4ngf\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"TimeFlowEndMs\":1696965013473,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-compactor", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013119000064", + "{\"SrcK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013119,\"Etype\":2048,\"DstK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"DstAddr\":\"10.128.2.16\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"DstPort\":56864,\"SrcPort\":3100,\"IfDirection\":1,\"AgentIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"Interface\":\"genev_sys_6081\",\"TimeFlowEndMs\":1696965013119,\"Bytes\":124,\"Packets\":1,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Proto\":6,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.20\",\"DstMac\":\"0A:58:A8:FE:00:06\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "lokistack-querier", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013008999936", + "{\"Interface\":\"genev_sys_6081\",\"SrcAddr\":\"10.129.2.17\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"TimeReceived\":1696965014,\"TimeFlowEndMs\":1696965013009,\"DstMac\":\"0A:58:A8:FE:00:05\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"prometheus-k8s-1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcPort\":3100,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstAddr\":\"10.131.0.16\",\"TimeFlowStartMs\":1696965013009,\"IfDirection\":1,\"DstPort\":36714,\"DstK8S_OwnerType\":\"StatefulSet\",\"AgentIP\":\"10.0.18.124\",\"Flags\":16,\"Proto\":6,\"Bytes\":4193,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "prometheus-k8s", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-gateway", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965013382000128", + "{\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:0A:83:00:10\",\"DstAddr\":\"10.131.0.16\",\"SrcMac\":\"0A:58:0A:83:00:15\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965013382,\"AgentIP\":\"10.0.45.84\",\"SrcPort\":8083,\"IfDirection\":0,\"TimeFlowStartMs\":1696965013382,\"PktDropLatestFlags\":16,\"Interface\":\"ens5\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":34602,\"TimeReceived\":1696965013,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"Etype\":2048,\"SrcAddr\":\"10.131.0.21\",\"Flags\":16,\"DstK8S_Name\":\"prometheus-k8s-1\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"lokistack-gateway-856f4fb587-f2hk6\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32}" + ] + ] + }, + { + "stream": { + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012985999872", + "{\"AgentIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965012986,\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"DstK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.84.208\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"Proto\":6,\"DstPort\":51784,\"TimeReceived\":1696965013,\"SrcPort\":10250,\"SrcAddr\":\"10.0.84.208\",\"SrcMac\":\"A2:02:A3:E5:01:A8\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"PktDropLatestFlags\":16,\"TimeFlowEndMs\":1696965012986,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:80:02:10\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstAddr\":\"10.128.2.16\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-netobserv-operator", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "prometheus-k8s", + "DstK8S_OwnerName": "netobserv-controller-manager", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013380999936", + "{\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965013381,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":8443,\"TimeFlowStartMs\":1696965013381,\"SrcAddr\":\"10.131.0.16\",\"AgentIP\":\"10.0.84.208\",\"SrcPort\":44922,\"Proto\":6,\"Interface\":\"ens5\",\"PktDropLatestFlags\":16,\"SrcMac\":\"0A:58:0A:80:02:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.128.2.29\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"0A:58:0A:80:02:1D\",\"PktDropBytes\":32,\"TimeReceived\":1696965013,\"PktDropPackets\":1,\"Etype\":2048,\"SrcK8S_Name\":\"prometheus-k8s-1\",\"Flags\":16,\"DstK8S_Name\":\"netobserv-controller-manager-6bdf675664-n2kjz\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_OwnerName": "qe-unreleased-testing", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "packageserver", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965013428000000", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"DstPort\":55652,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"CatalogSource\",\"TimeFlowStartMs\":1696965011383,\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeFlowEndMs\":1696965013428,\"Packets\":33,\"DstMac\":\"0A:58:A8:FE:00:04\",\"IfDirection\":1,\"SrcPort\":50051,\"TimeReceived\":1696965013,\"Bytes\":23236,\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"DstAddr\":\"10.129.0.11\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.22\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_Type": "Pod", + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "qe-unreleased-testing", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "packageserver", + "SrcK8S_Namespace": "openshift-marketplace", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013449999872", + "{\"SrcMac\":\"0A:58:0A:80:02:16\",\"TimeFlowEndMs\":1696965013450,\"SrcK8S_OwnerType\":\"CatalogSource\",\"Flags\":16,\"DstMac\":\"0A:58:0A:80:02:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcPort\":50051,\"DstK8S_HostIP\":\"10.0.60.65\",\"Packets\":40,\"Proto\":6,\"SrcAddr\":\"10.128.2.22\",\"DstPort\":55652,\"AgentIP\":\"10.0.84.208\",\"DstAddr\":\"10.129.0.11\",\"Interface\":\"1dd3c81374c0162\",\"TimeFlowStartMs\":1696965011353,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"IfDirection\":0,\"Bytes\":25448}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965014060999936", + "{\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcPort\":7936,\"TimeReceived\":1696965014,\"DstAddr\":\"10.0.18.124\",\"Proto\":17,\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014061,\"Bytes\":124,\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965014061,\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013846000128", + "{\"IfDirection\":0,\"Proto\":17,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Etype\":2048,\"Bytes\":250,\"SrcPort\":63110,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstAddr\":\"10.0.18.124\",\"Interface\":\"br-ex\",\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013846,\"AgentIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013846}" + ], + [ + "1696965013639000064", + "{\"Interface\":\"ens5\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013639,\"Proto\":17,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcAddr\":\"10.0.45.84\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcPort\":53969,\"TimeReceived\":1696965014,\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeFlowStartMs\":1696965013639,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"IfDirection\":0,\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013491000064", + "{\"Etype\":2048,\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Bytes\":132,\"SrcPort\":29157,\"Proto\":17,\"SrcAddr\":\"10.0.45.84\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965014,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013491,\"DstAddr\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013491}" + ], + [ + "1696965013439000064", + "{\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013439,\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":45464,\"Interface\":\"ens5\",\"Etype\":2048,\"Proto\":17,\"Bytes\":132,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowStartMs\":1696965013439,\"IfDirection\":0,\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\"}" + ], + [ + "1696965013391000064", + "{\"DstPort\":6081,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":140,\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.45.84\",\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965013391,\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"IfDirection\":0,\"SrcPort\":43801,\"Etype\":2048,\"TimeFlowStartMs\":1696965013391,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"Proto\":17}" + ], + [ + "1696965013009999872", + "{\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":54792,\"TimeReceived\":1696965014,\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"DstAddr\":\"10.0.18.124\",\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowStartMs\":1696965013010,\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965013010,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":172,\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.45.84\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014289999872", + "{\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Bytes\":132,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"Packets\":1,\"TimeReceived\":1696965014,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014290,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":7145,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"SrcAddr\":\"10.0.84.208\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014290}" + ], + [ + "1696965014235000064", + "{\"IfDirection\":0,\"Interface\":\"br-ex\",\"SrcPort\":56406,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstPort\":9537,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcAddr\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965014235,\"DstAddr\":\"10.0.18.124\",\"Bytes\":66,\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Flags\":16,\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowStartMs\":1696965014235,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"Proto\":6}" + ], + [ + "1696965014060999936", + "{\"SrcPort\":46627,\"SrcAddr\":\"10.0.84.208\",\"Proto\":17,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":6081,\"TimeFlowStartMs\":1696965014061,\"TimeFlowEndMs\":1696965014061,\"Etype\":2048,\"DstAddr\":\"10.0.18.124\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Packets\":1,\"Bytes\":124,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"AgentIP\":\"10.0.18.124\",\"DstMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013863000064", + "{\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowEndMs\":1696965013863,\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013863,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":27260,\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"DstPort\":6081,\"TimeReceived\":1696965014,\"Bytes\":271,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"Proto\":17,\"SrcAddr\":\"10.0.84.208\",\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\"}" + ], + [ + "1696965013747000064", + "{\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":124,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"DstAddr\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013747,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965014,\"DstMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":59740,\"TimeFlowEndMs\":1696965013747,\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965013545999872", + "{\"SrcPort\":57441,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013546,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.0.18.124\",\"DstPort\":6081,\"DstK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Bytes\":140,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013546,\"Proto\":17,\"TimeReceived\":1696965014,\"SrcAddr\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"02:E7:EA:46:6A:33\"}" + ], + [ + "1696965013491000064", + "{\"TimeReceived\":1696965014,\"Packets\":2,\"SrcAddr\":\"10.0.84.208\",\"Interface\":\"ens5\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965013491,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013491,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Bytes\":248,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":6528,\"Proto\":17,\"Etype\":2048,\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.18.124\"}" + ], + [ + "1696965013462000128", + "{\"Proto\":17,\"AgentIP\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013462,\"TimeFlowEndMs\":1696965013462,\"Bytes\":124,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":25989,\"DstMac\":\"02:79:42:1F:26:B7\",\"Packets\":1,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013020999936", + "{\"IfDirection\":1,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowEndMs\":1696965013021,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013021,\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"Bytes\":140,\"DstAddr\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcPort\":10905,\"DstK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-gateway", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014564000000", + "{\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014564,\"DstPort\":49566,\"TimeReceived\":1696965014,\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowEndMs\":1696965014564,\"AgentIP\":\"10.0.18.124\",\"Bytes\":101,\"Interface\":\"abe73e0313a4c0f\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-gateway-856f4fb587-6vhvv\",\"DstAddr\":\"10.129.2.2\",\"SrcMac\":\"0A:58:0A:81:02:13\",\"IfDirection\":0,\"Flags\":16,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"26:10:35:4E:D0:50\",\"Proto\":6,\"SrcPort\":8083,\"Packets\":1,\"SrcAddr\":\"10.129.2.19\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true" + }, + "values": [ + [ + "1696965013639000064", + "{\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstPort\":6081,\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowEndMs\":1696965013639,\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013639,\"DstAddr\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":53969,\"Packets\":1,\"AgentIP\":\"10.0.18.124\",\"Bytes\":140,\"SrcAddr\":\"10.0.45.84\",\"TimeReceived\":1696965014,\"Proto\":17,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_HostIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013382000128", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"Bytes\":124,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":17,\"Etype\":2048,\"DstPort\":6081,\"Interface\":\"br-ex\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:94:FC:23:41:67\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013382,\"TimeFlowStartMs\":1696965013382,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Packets\":1,\"TimeReceived\":1696965013,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"SrcPort\":32119,\"DstK8S_HostIP\":\"10.0.45.84\"}" + ], + [ + "1696965013267000064", + "{\"DstPort\":6081,\"DstK8S_HostIP\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965013267,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013267,\"SrcMac\":\"06:D3:86:10:5C:57\",\"IfDirection\":0,\"DstMac\":\"06:94:FC:23:41:67\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"SrcPort\":48773,\"Interface\":\"br-ex\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":124}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013009999872", + "{\"IfDirection\":0,\"TimeFlowStartMs\":1696965013010,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013010,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965013,\"DstMac\":\"06:94:FC:23:41:67\",\"Bytes\":124,\"Proto\":17,\"SrcPort\":56697,\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.18.124\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965013352999936", + "{\"TimeReceived\":1696965013,\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":124,\"TimeFlowStartMs\":1696965013353,\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.45.84\",\"AgentIP\":\"10.0.45.84\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":17,\"IfDirection\":0,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstMac\":\"06:94:FC:23:41:67\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":60305,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"TimeFlowEndMs\":1696965013353}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013211000064", + "{\"IfDirection\":0,\"AgentIP\":\"10.0.45.84\",\"Interface\":\"ens5\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.89.254\",\"Packets\":1,\"Proto\":17,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965013,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.45.84\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"06:94:FC:23:41:67\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":62691,\"TimeFlowEndMs\":1696965013211,\"Etype\":2048,\"TimeFlowStartMs\":1696965013211,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014190000128", + "{\"Proto\":17,\"SrcAddr\":\"10.0.18.124\",\"SrcPort\":32302,\"DstPort\":6081,\"SrcMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014190,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":132,\"Etype\":2048,\"TimeFlowStartMs\":1696965014190,\"DstMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965014,\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.0.45.84\",\"IfDirection\":1,\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\"}" + ], + [ + "1696965013288999936", + "{\"SrcMac\":\"02:79:42:1F:26:B7\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":48419,\"DstAddr\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965013289,\"TimeFlowEndMs\":1696965013289,\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Proto\":17,\"TimeReceived\":1696965014,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":1,\"SrcAddr\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"Interface\":\"ens5\",\"DstPort\":6081,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstMac\":\"02:E7:EA:46:6A:33\"}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965013548000000", + "{\"Bytes\":124,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965013,\"IfDirection\":1,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcPort\":9774,\"Proto\":17,\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Packets\":1,\"TimeFlowStartMs\":1696965013548,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"Interface\":\"ens5\",\"DstAddr\":\"10.0.45.84\",\"AgentIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013548}" + ], + [ + "1696965013352999936", + "{\"Bytes\":179,\"TimeFlowStartMs\":1696965013353,\"IfDirection\":1,\"DstAddr\":\"10.0.45.84\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcPort\":60305,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"TimeReceived\":1696965013,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"TimeFlowEndMs\":1696965013353,\"SrcMac\":\"0A:38:CA:F8:28:19\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013352999936", + "{\"Interface\":\"ens5\",\"TimeReceived\":1696965013,\"DstMac\":\"06:94:FC:23:41:67\",\"SrcPort\":60305,\"TimeFlowEndMs\":1696965013353,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":17,\"TimeFlowStartMs\":1696965013353,\"Etype\":2048,\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.45.84\",\"IfDirection\":0,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.84.208\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013271000064", + "{\"SrcMac\":\"06:94:FC:23:41:67\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":114,\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965013271,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.45.84\",\"Flags\":16,\"SrcAddr\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":52328,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013271,\"DstPort\":9100}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965013548999936", + "{\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":44,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965011373,\"TimeFlowEndMs\":1696965013549,\"Etype\":2048,\"Proto\":17,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":31178,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"IfDirection\":1,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":33429,\"DstAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"TimeReceived\":1696965013,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013055000064", + "{\"DstPort\":6443,\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965013055,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.84.208\",\"SrcPort\":59932,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"DstAddr\":\"10.0.60.65\",\"Bytes\":1602,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"SrcAddr\":\"10.0.84.208\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013055,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013390000128", + "{\"SrcPort\":31178,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.84.208\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":31038,\"Packets\":40,\"TimeFlowStartMs\":1696965011370,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"Proto\":17,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"TimeReceived\":1696965013,\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"TimeFlowEndMs\":1696965013390}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965013491000064", + "{\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"Packets\":1,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965013491,\"DstMac\":\"0A:38:CA:F8:28:19\",\"AgentIP\":\"10.0.84.208\",\"Interface\":\"br-ex\",\"DstPort\":6081,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":17596,\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013491,\"SrcAddr\":\"10.0.18.124\",\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Proto\":17}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965013422000128", + "{\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013422,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.84.208\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowStartMs\":1696965013422,\"Etype\":2048,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":17,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.45.84\",\"SrcPort\":38045,\"IfDirection\":0,\"AgentIP\":\"10.0.84.208\",\"DstPort\":6081,\"Bytes\":124,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013391000064", + "{\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"Packets\":48,\"IfDirection\":0,\"DstMac\":\"0A:38:CA:F8:28:19\",\"TimeFlowStartMs\":1696965011482,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":6732,\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.84.208\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstPort\":6081,\"Proto\":17,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":63727,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013391,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013057999872", + "{\"DstMac\":\"0A:38:CA:F8:28:19\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965013,\"Bytes\":2242,\"DstK8S_HostIP\":\"10.0.84.208\",\"Interface\":\"ens5\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":59932,\"SrcPort\":6443,\"Flags\":16,\"TimeFlowStartMs\":1696965013058,\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965013058,\"AgentIP\":\"10.0.84.208\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965014289999872", + "{\"SrcAddr\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"SrcPort\":42252,\"TimeFlowStartMs\":1696965014290,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"Interface\":\"br-ex\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":6081,\"DstAddr\":\"10.0.84.208\",\"Proto\":17,\"TimeFlowEndMs\":1696965014290,\"DstMac\":\"02:E7:EA:46:6A:33\"}" + ], + [ + "1696965013889999872", + "{\"Proto\":17,\"SrcAddr\":\"10.0.18.124\",\"DstMac\":\"02:E7:EA:46:6A:33\",\"IfDirection\":1,\"SrcPort\":43694,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"Bytes\":124,\"TimeFlowEndMs\":1696965013890,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"TimeFlowStartMs\":1696965013890,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Packets\":1,\"DstPort\":6081,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965013862000128", + "{\"DstMac\":\"02:E7:EA:46:6A:33\",\"Bytes\":132,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcAddr\":\"10.0.18.124\",\"Packets\":1,\"TimeReceived\":1696965014,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013862,\"Proto\":17,\"SrcPort\":16799,\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6081,\"IfDirection\":1,\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013862,\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013745999872", + "{\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013746,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":17,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"IfDirection\":1,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"02:E7:EA:46:6A:33\",\"Packets\":1,\"TimeFlowEndMs\":1696965013746,\"SrcPort\":6848,\"Etype\":2048,\"SrcMac\":\"02:79:42:1F:26:B7\",\"Bytes\":124}" + ], + [ + "1696965013347000064", + "{\"Bytes\":144,\"SrcAddr\":\"10.0.18.124\",\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965013347,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"DstMac\":\"02:E7:EA:46:6A:33\",\"TimeFlowEndMs\":1696965013347,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":39851,\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013089999872", + "{\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"TimeFlowEndMs\":1696965013090,\"SrcMac\":\"02:79:42:1F:26:B7\",\"Bytes\":124,\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"DstMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"SrcPort\":32309,\"Proto\":17,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013090}" + ], + [ + "1696965013022000128", + "{\"TimeReceived\":1696965014,\"TimeFlowStartMs\":1696965013022,\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"Interface\":\"ens5\",\"AgentIP\":\"10.0.18.124\",\"DstMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013022,\"Packets\":1,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"Etype\":2048,\"SrcPort\":63716,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":1,\"Proto\":17}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013284999936", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":3800,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"Packets\":1,\"SrcMac\":\"06:94:FC:23:41:67\",\"Interface\":\"ens5\",\"IfDirection\":1,\"DstPort\":6081,\"Proto\":17,\"SrcPort\":6387,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowStartMs\":1696965013285,\"AgentIP\":\"10.0.45.84\",\"SrcAddr\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965013285,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012985999872", + "{\"DstPort\":10250,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"PktDropBytes\":32,\"DstMac\":\"A2:02:A3:E5:01:A8\",\"SrcPort\":51784,\"AgentIP\":\"10.0.84.208\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965012986,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.128.2.16\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965013,\"Interface\":\"ovn-k8s-mp0\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Proto\":6,\"TimeFlowEndMs\":1696965012986,\"SrcK8S_Name\":\"prometheus-k8s-0\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013376000000", + "{\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcAddr\":\"10.0.60.65\",\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965011565,\"AgentIP\":\"10.0.84.208\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"Etype\":2048,\"DstPort\":6081,\"TimeReceived\":1696965013,\"Packets\":44,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":63727,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstAddr\":\"10.0.84.208\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013376,\"Bytes\":6146,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013326000128", + "{\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Bytes\":124,\"TimeReceived\":1696965013,\"TimeFlowEndMs\":1696965013326,\"DstK8S_HostIP\":\"10.0.84.208\",\"AgentIP\":\"10.0.45.84\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":6387,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"06:94:FC:23:41:67\",\"SrcAddr\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013326,\"Etype\":2048,\"DstAddr\":\"10.0.84.208\",\"DstPort\":6081,\"Proto\":17}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013494000128", + "{\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"Flags\":16,\"SrcAddr\":\"10.0.84.208\",\"Interface\":\"ens5\",\"Packets\":1,\"TimeFlowEndMs\":1696965013494,\"DstAddr\":\"10.0.26.111\",\"TimeReceived\":1696965013,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"SrcPort\":57890,\"DstPort\":6443,\"AgentIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013494,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":66,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"Proto\":6,\"Etype\":2048}" + ] + ] + } + ], + "stats": { + "summary": { + "bytesProcessedPerSecond": 982048091, + "linesProcessedPerSecond": 1308839, + "totalBytesProcessed": 298393972, + "totalLinesProcessed": 397689, + "execTime": 0.303848635, + "queueTime": 5.0193e-05, + "subqueries": 1, + "totalEntriesReturned": 100 + }, + "querier": { + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + }, + "ingester": { + "totalReached": 1, + "totalChunksMatched": 1896, + "totalBatches": 1, + "totalLinesSent": 100, + "store": { + "totalChunksRef": 73, + "totalChunksDownloaded": 73, + "chunksDownloadTime": 1983138, + "chunk": { + "headChunkBytes": 92614516, + "headChunkLines": 125350, + "decompressedBytes": 205779456, + "decompressedLines": 272339, + "compressedBytes": 68248841, + "totalDuplicates": 0 + } + } + } + } + } +} diff --git a/web/cypress/fixtures/flowmetrics/table_50.json b/web/cypress/fixtures/flowmetrics/table_50.json new file mode 100644 index 000000000..621578911 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/table_50.json @@ -0,0 +1,395 @@ +{ + "status": "success", + "data": { + "resultType": "streams", + "result": [ + { + "stream": { + "DstK8S_Namespace": "openshift-console", + "DstK8S_OwnerName": "console", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-ingress", + "SrcK8S_OwnerName": "router-default", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619350920000000", + "{\"SrcMac\":\"0A:58:0A:80:00:01\",\"SrcK8S_Type\":\"Pod\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_Name\":\"router-default-6948d7dfd5-wh7t8\",\"DstK8S_HostIP\":\"10.0.0.5\",\"Proto\":6,\"TimeFlowEndMs\":1689619350920,\"DstPort\":8443,\"DstMac\":\"0A:58:0A:80:00:1A\",\"SrcAddr\":\"10.129.2.7\",\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.128.2\",\"TimeFlowStartMs\":1689619350920,\"Interface\":\"genev_sys_6081\",\"Bytes\":66,\"Etype\":2048,\"AgentIP\":\"10.0.0.5\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-worker-b-m8lsx\",\"SrcPort\":55662,\"TimeReceived\":1689619351,\"DstAddr\":\"10.128.0.26\",\"Duplicate\":false,\"Flags\":16,\"DstK8S_Name\":\"console-67d7944746-4jm9h\",\"DstK8S_Type\":\"Pod\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-oauth-apiserver", + "DstK8S_OwnerName": "apiserver", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-1" + }, + "values": [ + [ + "1689619350451000064", + "{\"TimeFlowStartMs\":1689619350451,\"SrcPort\":2379,\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcAddr\":\"10.0.0.4\",\"SrcMac\":\"0A:58:0A:80:00:01\",\"TimeFlowEndMs\":1689619350451,\"DstK8S_Type\":\"Pod\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"IfDirection\":1,\"AgentIP\":\"10.0.0.5\",\"DstAddr\":\"10.128.0.36\",\"Proto\":6,\"Flags\":16,\"DstPort\":51196,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Etype\":2048,\"DstMac\":\"0A:58:0A:80:00:24\",\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_Type\":\"Node\",\"Bytes\":66,\"Duplicate\":false,\"DstK8S_Name\":\"apiserver-5d86f6fb48-lmdk6\",\"TimeReceived\":1689619351,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstK8S_HostIP\":\"10.0.0.5\",\"Interface\":\"5e4203e70928939\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "apiserver", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-oauth-apiserver" + }, + "values": [ + [ + "1689619350096000000", + "{\"DstK8S_OwnerType\":\"Deployment\",\"Etype\":2048,\"TimeFlowEndMs\":1689619350096,\"SrcK8S_Type\":\"Node\",\"TimeFlowStartMs\":1689619350096,\"DstPort\":8443,\"SrcMac\":\"82:2B:BB:0D:C2:AF\",\"SrcPort\":39726,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstAddr\":\"10.128.0.36\",\"IfDirection\":1,\"SrcAddr\":\"10.128.0.2\",\"DstK8S_HostIP\":\"10.0.0.5\",\"Interface\":\"ovn-k8s-mp0\",\"DstK8S_Name\":\"apiserver-5d86f6fb48-lmdk6\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"Bytes\":323,\"Flags\":16,\"AgentIP\":\"10.0.0.5\",\"TimeReceived\":1689619351,\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstK8S_Type\":\"Pod\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstMac\":\"0A:58:0A:80:00:24\",\"Packets\":1,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-apiserver", + "SrcK8S_OwnerName": "apiserver", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619350944999936", + "{\"Bytes\":66,\"SrcAddr\":\"10.128.0.37\",\"TimeReceived\":1689619351,\"SrcPort\":37500,\"IfDirection\":0,\"Proto\":6,\"Flags\":16,\"SrcK8S_Type\":\"Pod\",\"Etype\":2048,\"DstK8S_Type\":\"Node\",\"Duplicate\":false,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"TimeFlowStartMs\":1689619350945,\"SrcK8S_Name\":\"apiserver-66b7d6dd5d-vpz2g\",\"SrcMac\":\"0A:58:0A:80:00:25\",\"SrcK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"DstAddr\":\"10.0.0.5\",\"DstMac\":\"0A:58:0A:80:00:01\",\"TimeFlowEndMs\":1689619350945,\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"c5cfec79c304898\",\"DstK8S_HostIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstPort\":2379,\"AgentIP\":\"10.0.0.5\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "openshift-oauth-apiserver", + "SrcK8S_OwnerName": "apiserver", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0", + "FlowDirection": "0" + }, + "values": [ + [ + "1689619350408999936", + "{\"SrcK8S_Name\":\"apiserver-5d86f6fb48-lmdk6\",\"Etype\":2048,\"Proto\":6,\"TimeReceived\":1689619351,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcAddr\":\"10.128.0.36\",\"Duplicate\":true,\"SrcMac\":\"0A:58:0A:80:00:24\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Node\",\"Bytes\":125,\"Interface\":\"5e4203e70928939\",\"SrcPort\":46066,\"Flags\":16,\"TimeFlowEndMs\":1689619350409,\"Packets\":1,\"DstAddr\":\"10.0.0.5\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstMac\":\"0A:58:0A:80:00:01\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"IfDirection\":0,\"DstPort\":2379,\"AgentIP\":\"10.0.0.5\",\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1689619350409,\"SrcK8S_Type\":\"Pod\"}" + ], + [ + "1689619350108999936", + "{\"SrcMac\":\"0A:58:0A:80:00:24\",\"Packets\":1,\"DstPort\":39726,\"Interface\":\"5e4203e70928939\",\"DstAddr\":\"10.128.0.2\",\"Etype\":2048,\"Bytes\":99,\"AgentIP\":\"10.0.0.5\",\"DstK8S_Type\":\"Node\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Name\":\"apiserver-5d86f6fb48-lmdk6\",\"TimeFlowEndMs\":1689619350109,\"Duplicate\":false,\"TimeFlowStartMs\":1689619350109,\"DstMac\":\"82:2B:BB:0D:C2:AF\",\"SrcK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"Flags\":16,\"TimeReceived\":1689619351,\"SrcK8S_Type\":\"Pod\",\"SrcPort\":8443,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"SrcAddr\":\"10.128.0.36\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.0.5\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619351075000064", + "{\"TimeFlowEndMs\":1689619351075,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens4\",\"Proto\":6,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstPort\":2380,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_Type\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Etype\":2048,\"Bytes\":66,\"TimeReceived\":1689619351,\"DstK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.0.4\",\"DstK8S_HostIP\":\"10.0.0.5\",\"Packets\":1,\"SrcPort\":41268,\"DstMac\":\"42:01:0A:00:00:05\",\"Duplicate\":false,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcAddr\":\"10.0.0.4\",\"TimeFlowStartMs\":1689619351075,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstAddr\":\"10.0.0.5\"}" + ], + [ + "1689619351072999936", + "{\"Flags\":16,\"DstMac\":\"42:01:0A:00:00:05\",\"TimeFlowEndMs\":1689619351073,\"DstK8S_HostIP\":\"10.0.0.5\",\"DstK8S_Type\":\"Node\",\"DstAddr\":\"10.0.0.5\",\"SrcAddr\":\"10.0.0.4\",\"TimeFlowStartMs\":1689619351073,\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":159,\"Interface\":\"br-ex\",\"SrcK8S_Type\":\"Node\",\"IfDirection\":0,\"DstPort\":43440,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"TimeReceived\":1689619351,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcPort\":2380,\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcMac\":\"42:01:0A:00:00:01\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Duplicate\":true,\"Packets\":1,\"Proto\":6,\"AgentIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\"}" + ], + [ + "1689619351072000000", + "{\"SrcK8S_Type\":\"Node\",\"SrcPort\":2380,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1689619347352,\"IfDirection\":0,\"DstAddr\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:05\",\"Duplicate\":false,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Interface\":\"ens4\",\"Packets\":5,\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"TimeReceived\":1689619351,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"TimeFlowEndMs\":1689619351072,\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"AgentIP\":\"10.0.0.5\",\"Proto\":6,\"Flags\":16,\"DstPort\":43440,\"DstK8S_Type\":\"Node\",\"Bytes\":795}" + ], + [ + "1689619351030000128", + "{\"Proto\":6,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcMac\":\"42:01:0A:00:00:01\",\"Bytes\":66,\"TimeReceived\":1689619351,\"Duplicate\":false,\"TimeFlowEndMs\":1689619351030,\"DstPort\":52136,\"SrcAddr\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:05\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"Etype\":2048,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Packets\":1,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstK8S_Type\":\"Node\",\"Flags\":512,\"TimeFlowStartMs\":1689619351030,\"SrcK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcPort\":2380}" + ], + [ + "1689619351007000064", + "{\"Packets\":1,\"Duplicate\":false,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstMac\":\"42:01:0A:00:00:05\",\"DstPort\":2379,\"IfDirection\":0,\"SrcAddr\":\"10.0.0.4\",\"AgentIP\":\"10.0.0.5\",\"Flags\":16,\"DstK8S_Type\":\"Node\",\"Etype\":2048,\"DstAddr\":\"10.0.0.5\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Type\":\"Node\",\"TimeFlowStartMs\":1689619351007,\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1689619351,\"DstK8S_HostIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Bytes\":125,\"Interface\":\"br-ex\",\"Proto\":6,\"SrcPort\":53148,\"TimeFlowEndMs\":1689619351007,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\"}" + ], + [ + "1689619350963000064", + "{\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"TimeFlowEndMs\":1689619350963,\"Packets\":1,\"Interface\":\"ens4\",\"TimeFlowStartMs\":1689619350963,\"DstK8S_Type\":\"Node\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcAddr\":\"10.0.0.4\",\"Duplicate\":false,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcMac\":\"42:01:0A:00:00:01\",\"DstPort\":55022,\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.0.5\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.0.4\",\"AgentIP\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"Bytes\":66,\"DstAddr\":\"10.0.0.5\",\"SrcPort\":2379,\"DstMac\":\"42:01:0A:00:00:05\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"TimeReceived\":1689619351,\"SrcK8S_Type\":\"Node\"}" + ], + [ + "1689619350931000064", + "{\"SrcK8S_Type\":\"Node\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Bytes\":66,\"Proto\":6,\"TimeFlowEndMs\":1689619350931,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.0.4\",\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"SrcMac\":\"42:01:0A:00:00:01\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_OwnerType\":\"Node\",\"Duplicate\":true,\"Etype\":2048,\"Flags\":16,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1689619351,\"DstMac\":\"42:01:0A:00:00:05\",\"SrcPort\":53078,\"TimeFlowStartMs\":1689619350931,\"DstPort\":2379,\"SrcAddr\":\"10.0.0.4\"}" + ], + [ + "1689619350049999872", + "{\"Duplicate\":false,\"TimeFlowEndMs\":1689619350050,\"DstMac\":\"42:01:0A:00:00:05\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"AgentIP\":\"10.0.0.5\",\"DstPort\":55586,\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Type\":\"Node\",\"TimeFlowStartMs\":1689619350050,\"SrcK8S_HostIP\":\"10.0.0.4\",\"Flags\":16,\"Interface\":\"ens4\",\"DstAddr\":\"10.0.0.5\",\"SrcMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"TimeReceived\":1689619351,\"DstK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstK8S_Type\":\"Node\",\"Etype\":2048,\"Proto\":6,\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":137,\"SrcPort\":2379}" + ], + [ + "1689619349968000000", + "{\"SrcK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcPort\":2379,\"IfDirection\":0,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Interface\":\"ens4\",\"DstK8S_HostIP\":\"10.0.0.5\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"TimeFlowStartMs\":1689619349963,\"Proto\":6,\"TimeReceived\":1689619351,\"Bytes\":215,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Packets\":2,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstPort\":55900,\"DstMac\":\"42:01:0A:00:00:05\",\"TimeFlowEndMs\":1689619349968,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Flags\":16,\"SrcAddr\":\"10.0.0.4\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_Type\":\"Node\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-2", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619350919000064", + "{\"DstMac\":\"42:01:0A:00:00:05\",\"SrcAddr\":\"10.0.0.3\",\"Flags\":16,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"TimeReceived\":1689619351,\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"TimeFlowEndMs\":1689619350919,\"Proto\":6,\"SrcK8S_Type\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"AgentIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1689619350919,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Interface\":\"ens4\",\"Bytes\":66,\"SrcPort\":2379,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"IfDirection\":0,\"Packets\":1,\"DstPort\":46652,\"Etype\":2048,\"SrcMac\":\"42:01:0A:00:00:01\",\"Duplicate\":false}" + ], + [ + "1689619350919000064", + "{\"TimeReceived\":1689619351,\"Proto\":6,\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"Etype\":2048,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Flags\":16,\"DstK8S_Type\":\"Node\",\"TimeFlowStartMs\":1689619350919,\"Duplicate\":false,\"DstMac\":\"42:01:0A:00:00:05\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"Packets\":1,\"SrcMac\":\"42:01:0A:00:00:01\",\"DstPort\":39222,\"DstAddr\":\"10.0.0.5\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeFlowEndMs\":1689619350919,\"SrcK8S_Type\":\"Node\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"SrcAddr\":\"10.0.0.3\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Bytes\":66}" + ], + [ + "1689619350257999872", + "{\"IfDirection\":0,\"SrcK8S_Type\":\"Node\",\"Etype\":2048,\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.5\",\"Bytes\":66,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcAddr\":\"10.0.0.3\",\"Interface\":\"br-ex\",\"Proto\":6,\"Flags\":16,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1689619351,\"DstMac\":\"42:01:0A:00:00:05\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcPort\":38912,\"TimeFlowEndMs\":1689619350258,\"Duplicate\":false,\"TimeFlowStartMs\":1689619350258,\"AgentIP\":\"10.0.0.5\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Packets\":1,\"DstPort\":6443}" + ], + [ + "1689619350244999936", + "{\"DstK8S_HostIP\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:05\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1689619350245,\"SrcK8S_Type\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.5\",\"SrcPort\":40844,\"Flags\":16,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Etype\":2048,\"DstPort\":2379,\"SrcAddr\":\"10.0.0.3\",\"Proto\":6,\"Interface\":\"ens4\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"Duplicate\":false,\"IfDirection\":0,\"AgentIP\":\"10.0.0.5\",\"Packets\":1,\"TimeFlowStartMs\":1689619350245,\"DstK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"Bytes\":125,\"TimeReceived\":1689619351}" + ], + [ + "1689619350000000000", + "{\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"IfDirection\":0,\"DstAddr\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.0.3\",\"DstPort\":47216,\"TimeFlowEndMs\":1689619350000,\"SrcK8S_Type\":\"Node\",\"Proto\":6,\"SrcPort\":2379,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"DstK8S_Type\":\"Node\",\"Flags\":16,\"Bytes\":66,\"AgentIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1689619350000,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Etype\":2048,\"TimeReceived\":1689619351,\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:05\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\"}" + ], + [ + "1689619349951000064", + "{\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"DstK8S_Type\":\"Node\",\"Etype\":2048,\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.0.5\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Bytes\":1384,\"SrcAddr\":\"10.0.0.3\",\"SrcK8S_Type\":\"Node\",\"Packets\":1,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Flags\":16,\"Duplicate\":false,\"TimeFlowEndMs\":1689619349951,\"AgentIP\":\"10.0.0.5\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"TimeReceived\":1689619351,\"DstMac\":\"42:01:0A:00:00:05\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstPort\":39268,\"SrcPort\":2379,\"TimeFlowStartMs\":1689619349951,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-1", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0" + }, + "values": [ + [ + "1689619351072999936", + "{\"Flags\":16,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Type\":\"Node\",\"DstMac\":\"42:01:0A:00:00:01\",\"Duplicate\":false,\"DstPort\":2380,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Interface\":\"ens4\",\"DstAddr\":\"10.0.0.4\",\"AgentIP\":\"10.0.0.5\",\"IfDirection\":1,\"Etype\":2048,\"SrcMac\":\"42:01:0A:00:00:05\",\"TimeFlowStartMs\":1689619351073,\"Packets\":1,\"DstK8S_Type\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Bytes\":66,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1689619351073,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1689619351,\"Proto\":6,\"SrcAddr\":\"10.0.0.5\",\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcPort\":43440}" + ], + [ + "1689619351072000000", + "{\"SrcMac\":\"42:01:0A:00:00:05\",\"Interface\":\"ens4\",\"Duplicate\":false,\"DstK8S_Type\":\"Node\",\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.0.5\",\"AgentIP\":\"10.0.0.5\",\"Etype\":2048,\"TimeFlowEndMs\":1689619351072,\"IfDirection\":1,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstAddr\":\"10.0.0.4\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1689619351072,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Flags\":16,\"Proto\":6,\"SrcK8S_Type\":\"Node\",\"Bytes\":161,\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2380,\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcAddr\":\"10.0.0.5\",\"TimeReceived\":1689619351,\"DstPort\":41274}" + ], + [ + "1689619351028000000", + "{\"DstAddr\":\"10.0.0.4\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"Duplicate\":true,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"AgentIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcMac\":\"42:01:0A:00:00:05\",\"Bytes\":1086,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcPort\":2380,\"DstMac\":\"42:01:0A:00:00:01\",\"IfDirection\":1,\"TimeReceived\":1689619351,\"TimeFlowEndMs\":1689619351028,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_Type\":\"Node\",\"DstK8S_Type\":\"Node\",\"Packets\":7,\"Flags\":16,\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1689619346456,\"SrcAddr\":\"10.0.0.5\",\"DstK8S_HostIP\":\"10.0.0.4\",\"DstPort\":41274}" + ], + [ + "1689619350924999936", + "{\"SrcK8S_Type\":\"Node\",\"DstPort\":2379,\"Bytes\":125,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcMac\":\"42:01:0A:00:00:05\",\"TimeFlowEndMs\":1689619350925,\"SrcPort\":55434,\"IfDirection\":1,\"Packets\":1,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"TimeFlowStartMs\":1689619350925,\"Flags\":16,\"SrcAddr\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_HostIP\":\"10.0.0.4\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Etype\":2048,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"Proto\":6,\"TimeReceived\":1689619351,\"Interface\":\"ens4\",\"DstK8S_Type\":\"Node\",\"DstAddr\":\"10.0.0.4\",\"Duplicate\":false}" + ], + [ + "1689619350918000128", + "{\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"DstPort\":2379,\"Flags\":16,\"Interface\":\"br-ex\",\"DstMac\":\"42:01:0A:00:00:01\",\"SrcMac\":\"42:01:0A:00:00:05\",\"DstAddr\":\"10.0.0.4\",\"Bytes\":66,\"TimeFlowEndMs\":1689619350918,\"DstK8S_HostIP\":\"10.0.0.4\",\"IfDirection\":1,\"SrcK8S_HostIP\":\"10.0.0.5\",\"Etype\":2048,\"SrcK8S_Type\":\"Node\",\"TimeReceived\":1689619351,\"SrcPort\":56910,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"AgentIP\":\"10.0.0.5\",\"Packets\":1,\"SrcAddr\":\"10.0.0.5\",\"Proto\":6,\"DstK8S_Type\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1689619350918}" + ], + [ + "1689619350649999872", + "{\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Type\":\"Node\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"Interface\":\"br-ex\",\"TimeReceived\":1689619351,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.4\",\"DstPort\":53368,\"SrcK8S_HostIP\":\"10.0.0.5\",\"Flags\":16,\"IfDirection\":1,\"SrcAddr\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_Type\":\"Node\",\"Packets\":1,\"Proto\":6,\"SrcPort\":2379,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Etype\":2048,\"TimeFlowEndMs\":1689619350650,\"DstK8S_HostIP\":\"10.0.0.4\",\"TimeFlowStartMs\":1689619350650,\"Bytes\":112,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcMac\":\"42:01:0A:00:00:05\"}" + ], + [ + "1689619350448999936", + "{\"Bytes\":66,\"SrcPort\":55686,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstAddr\":\"10.0.0.4\",\"TimeReceived\":1689619351,\"SrcAddr\":\"10.0.0.5\",\"Interface\":\"br-ex\",\"Duplicate\":false,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcMac\":\"42:01:0A:00:00:05\",\"DstMac\":\"42:01:0A:00:00:01\",\"SrcK8S_Type\":\"Node\",\"DstPort\":2379,\"TimeFlowEndMs\":1689619350449,\"SrcK8S_HostIP\":\"10.0.0.5\",\"Packets\":1,\"DstK8S_Type\":\"Node\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Flags\":16,\"Etype\":2048,\"TimeFlowStartMs\":1689619350449,\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.0.4\",\"AgentIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1689619350406000128", + "{\"SrcPort\":55966,\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.4\",\"SrcK8S_Type\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.0.5\",\"Duplicate\":false,\"SrcMac\":\"42:01:0A:00:00:05\",\"Flags\":16,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:01\",\"Etype\":2048,\"TimeReceived\":1689619351,\"IfDirection\":1,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_HostIP\":\"10.0.0.4\",\"TimeFlowEndMs\":1689619350406,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Packets\":1,\"DstK8S_Type\":\"Node\",\"Bytes\":66,\"AgentIP\":\"10.0.0.5\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstPort\":2379,\"TimeFlowStartMs\":1689619350406}" + ], + [ + "1689619350228000000", + "{\"Packets\":1,\"DstPort\":32872,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"Bytes\":112,\"TimeFlowStartMs\":1689619350228,\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1689619350228,\"DstMac\":\"42:01:0A:00:00:01\",\"SrcMac\":\"42:01:0A:00:00:05\",\"TimeReceived\":1689619351,\"AgentIP\":\"10.0.0.5\",\"DstAddr\":\"10.0.0.4\",\"DstK8S_Type\":\"Node\",\"SrcPort\":2379,\"SrcK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcAddr\":\"10.0.0.5\",\"SrcK8S_Type\":\"Node\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"Interface\":\"ens4\",\"Etype\":2048,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "prometheus-k8s", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-2", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + "1689619349931000064", + "{\"DstPort\":10250,\"TimeFlowStartMs\":1689619349672,\"DstK8S_Type\":\"Node\",\"Interface\":\"eb84c8d54dfd648\",\"IfDirection\":0,\"Etype\":2048,\"SrcK8S_Name\":\"prometheus-k8s-1\",\"SrcK8S_Type\":\"Pod\",\"DstMac\":\"0A:58:0A:83:00:01\",\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcAddr\":\"10.131.0.13\",\"SrcPort\":45548,\"AgentIP\":\"10.0.128.4\",\"SrcK8S_HostIP\":\"10.0.128.4\",\"Proto\":6,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstAddr\":\"10.0.0.3\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Duplicate\":false,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-worker-a-mk4rg\",\"TimeReceived\":1689619349,\"Flags\":16,\"SrcMac\":\"0A:58:0A:83:00:0D\",\"Packets\":13,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":1290,\"TimeFlowEndMs\":1689619349931,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-2", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619351078000128", + "{\"Etype\":2048,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Duplicate\":false,\"Interface\":\"ens4\",\"DstAddr\":\"10.0.0.3\",\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcAddr\":\"10.0.0.5\",\"SrcK8S_Type\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstPort\":2380,\"Packets\":1,\"AgentIP\":\"10.0.0.5\",\"Bytes\":66,\"SrcPort\":49834,\"DstK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:05\",\"TimeFlowEndMs\":1689619351078,\"TimeFlowRttNs\":12345678,\"TimeFlowStartMs\":1689619351078,\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeReceived\":1689619351,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"IfDirection\":1}" + ], + [ + "1689619351032000000", + "{\"Bytes\":66,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1689619351032,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":34072,\"Packets\":1,\"DstK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:05\",\"DstAddr\":\"10.0.0.3\",\"SrcK8S_Type\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.0.3\",\"IfDirection\":1,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Duplicate\":false,\"DstPort\":2380,\"Flags\":16,\"DstMac\":\"42:01:0A:00:00:01\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1689619351032,\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"SrcAddr\":\"10.0.0.5\",\"TimeReceived\":1689619351}" + ], + [ + "1689619350920000000", + "{\"Flags\":16,\"DstPort\":42522,\"SrcPort\":2380,\"DstK8S_Type\":\"Node\",\"DstMac\":\"42:01:0A:00:00:01\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcMac\":\"42:01:0A:00:00:05\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Duplicate\":false,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Proto\":6,\"Bytes\":483,\"DstAddr\":\"10.0.0.3\",\"TimeReceived\":1689619351,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcAddr\":\"10.0.0.5\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"TimeFlowEndMs\":1689619350920,\"IfDirection\":1,\"Etype\":2048,\"TimeFlowStartMs\":1689619347327,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Packets\":3}" + ], + [ + "1689619350918000128", + "{\"Packets\":1,\"Etype\":2048,\"Duplicate\":false,\"Flags\":16,\"AgentIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.3\",\"TimeFlowStartMs\":1689619350918,\"SrcPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens4\",\"TimeFlowEndMs\":1689619350918,\"TimeReceived\":1689619351,\"SrcMac\":\"42:01:0A:00:00:05\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_HostIP\":\"10.0.0.3\",\"Bytes\":66,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstMac\":\"42:01:0A:00:00:01\",\"DstPort\":55074,\"SrcK8S_Type\":\"Node\",\"IfDirection\":1,\"DstK8S_Type\":\"Node\",\"SrcAddr\":\"10.0.0.5\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostIP\":\"10.0.0.5\"}" + ], + [ + "1689619350918000128", + "{\"AgentIP\":\"10.0.0.5\",\"SrcAddr\":\"10.0.0.5\",\"TimeFlowStartMs\":1689619350918,\"Etype\":2048,\"TimeFlowEndMs\":1689619350918,\"Duplicate\":false,\"TimeReceived\":1689619351,\"DstAddr\":\"10.0.0.3\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcPort\":46826,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Bytes\":66,\"SrcMac\":\"42:01:0A:00:00:05\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Proto\":6,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Type\":\"Node\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Type\":\"Node\",\"Interface\":\"br-ex\",\"Packets\":1}" + ], + [ + "1689619350904000000", + "{\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeReceived\":1689619351,\"Bytes\":112,\"Packets\":1,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:01\",\"DstAddr\":\"10.0.0.3\",\"Proto\":6,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"AgentIP\":\"10.0.0.5\",\"Interface\":\"br-ex\",\"SrcPort\":2379,\"SrcAddr\":\"10.0.0.5\",\"DstK8S_OwnerType\":\"Node\",\"Duplicate\":false,\"DstPort\":47842,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:05\",\"TimeFlowStartMs\":1689619350904,\"TimeFlowEndMs\":1689619350904,\"Etype\":2048,\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.3\",\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16}" + ], + [ + "1689619350896999936", + "{\"DstK8S_Type\":\"Node\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeReceived\":1689619351,\"SrcK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1689619350897,\"Interface\":\"ens4\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstAddr\":\"10.0.0.3\",\"Bytes\":164,\"AgentIP\":\"10.0.0.5\",\"TimeFlowEndMs\":1689619350897,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstMac\":\"42:01:0A:00:00:01\",\"SrcPort\":6443,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.0.3\",\"Duplicate\":false,\"SrcK8S_Type\":\"Node\",\"Flags\":16,\"DstPort\":47802,\"Packets\":1,\"SrcAddr\":\"10.0.0.5\",\"SrcMac\":\"42:01:0A:00:00:05\"}" + ], + [ + "1689619350732999936", + "{\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:05\",\"Flags\":16,\"SrcK8S_Type\":\"Node\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.0.3\",\"DstPort\":51782,\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeFlowStartMs\":1689619350732,\"DstAddr\":\"10.0.0.3\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"Packets\":2,\"Bytes\":217,\"TimeReceived\":1689619351,\"SrcPort\":2379,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"SrcAddr\":\"10.0.0.5\",\"DstK8S_Type\":\"Node\",\"Proto\":6,\"Etype\":2048,\"Duplicate\":true,\"AgentIP\":\"10.0.0.5\",\"TimeFlowEndMs\":1689619350733}" + ], + [ + "1689619350620999936", + "{\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"IfDirection\":1,\"SrcMac\":\"42:01:0A:00:00:05\",\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.0.5\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstPort\":40934,\"AgentIP\":\"10.0.0.5\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeFlowEndMs\":1689619350621,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"Flags\":16,\"Duplicate\":false,\"SrcK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstAddr\":\"10.0.0.3\",\"Etype\":2048,\"Proto\":6,\"TimeReceived\":1689619351,\"DstK8S_Type\":\"Node\",\"DstMac\":\"42:01:0A:00:00:01\",\"TimeFlowStartMs\":1689619350621,\"SrcPort\":2379,\"Bytes\":112}" + ], + [ + "1689619350512000000", + "{\"Flags\":16,\"SrcMac\":\"42:01:0A:00:00:05\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"TimeReceived\":1689619351,\"IfDirection\":1,\"AgentIP\":\"10.0.0.5\",\"Duplicate\":false,\"SrcPort\":55258,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstMac\":\"42:01:0A:00:00:01\",\"SrcK8S_Type\":\"Node\",\"Packets\":1,\"Proto\":6,\"SrcAddr\":\"10.0.0.5\",\"Interface\":\"ens4\",\"DstPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":66,\"DstAddr\":\"10.0.0.3\",\"TimeFlowEndMs\":1689619350512,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"Etype\":2048,\"DstK8S_Type\":\"Node\",\"TimeFlowStartMs\":1689619350512,\"DstK8S_HostIP\":\"10.0.0.3\"}" + ], + [ + "1689619350511000064", + "{\"Packets\":1,\"TimeReceived\":1689619351,\"Bytes\":112,\"SrcK8S_Type\":\"Node\",\"DstAddr\":\"10.0.0.3\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"Interface\":\"ens4\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"TimeFlowEndMs\":1689619350511,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"AgentIP\":\"10.0.0.5\",\"Proto\":6,\"IfDirection\":1,\"SrcAddr\":\"10.0.0.5\",\"SrcPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:05\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.0.3\",\"DstMac\":\"42:01:0A:00:00:01\",\"Duplicate\":false,\"DstK8S_Type\":\"Node\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstPort\":51490,\"TimeFlowStartMs\":1689619350511}" + ], + [ + "1689619350304999936", + "{\"IfDirection\":1,\"DstK8S_Type\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"Flags\":16,\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Interface\":\"ens4\",\"Proto\":6,\"AgentIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1689619350305,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstPort\":60416,\"SrcK8S_Type\":\"Node\",\"Packets\":1,\"Bytes\":138,\"TimeFlowEndMs\":1689619350305,\"DstAddr\":\"10.0.0.3\",\"SrcAddr\":\"10.0.0.5\",\"Duplicate\":false,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcPort\":2379,\"SrcMac\":\"42:01:0A:00:00:05\",\"TimeReceived\":1689619351,\"DstMac\":\"42:01:0A:00:00:01\"}" + ], + [ + "1689619349924999936", + "{\"AgentIP\":\"10.0.0.5\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.0.3\",\"IfDirection\":1,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"Etype\":2048,\"TimeFlowStartMs\":1689619346254,\"Proto\":6,\"SrcMac\":\"42:01:0A:00:00:05\",\"DstPort\":42522,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"Packets\":6,\"TimeFlowEndMs\":1689619349925,\"TimeReceived\":1689619351,\"Interface\":\"ens4\",\"SrcK8S_OwnerType\":\"Node\",\"Duplicate\":true,\"DstAddr\":\"10.0.0.3\",\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-2\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":2380,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-0\",\"DstK8S_Type\":\"Node\",\"SrcK8S_Type\":\"Node\",\"SrcAddr\":\"10.0.0.5\",\"Bytes\":972,\"SrcK8S_HostIP\":\"10.0.0.5\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-worker-a-mk4rg", + "FlowDirection": "1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619349968999936", + "{\"DstK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-worker-a-mk4rg\",\"Packets\":1,\"Duplicate\":true,\"SrcMac\":\"42:01:0A:00:00:05\",\"AgentIP\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:01\",\"IfDirection\":1,\"DstAddr\":\"10.0.128.4\",\"DstK8S_HostIP\":\"10.0.128.4\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstPort\":50404,\"Flags\":16,\"SrcAddr\":\"10.0.0.2\",\"DstK8S_Type\":\"Node\",\"TimeFlowStartMs\":1689619349969,\"SrcPort\":6443,\"TimeFlowEndMs\":1689619349969,\"Bytes\":97,\"Interface\":\"br-ex\",\"Proto\":6,\"TimeReceived\":1689619351,\"DstK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-worker-a-mk4rg\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ci-ln-hnd9rjk-72292-hnd5v-master-1" + }, + "values": [ + [ + "1689619351079000064", + "{\"SrcMac\":\"42:01:0A:00:00:01\",\"DstPort\":6443,\"SrcPort\":54082,\"Etype\":2048,\"SrcK8S_Type\":\"Node\",\"AgentIP\":\"10.0.0.5\",\"Bytes\":66,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"Flags\":16,\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"DstMac\":\"42:01:0A:00:00:05\",\"TimeFlowStartMs\":1689619351079,\"Duplicate\":false,\"IfDirection\":0,\"TimeFlowEndMs\":1689619351079,\"TimeFlowRttNs\":1234,\"TimeReceived\":1689619351,\"DstAddr\":\"10.0.0.2\",\"Interface\":\"br-ex\"}" + ], + [ + "1689619350793999872", + "{\"TimeFlowStartMs\":1689619350794,\"IfDirection\":0,\"SrcAddr\":\"10.0.0.4\",\"TimeReceived\":1689619351,\"Flags\":16,\"DstPort\":6443,\"Packets\":1,\"SrcK8S_Name\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"SrcPort\":54152,\"Proto\":6,\"SrcK8S_Type\":\"Node\",\"DstMac\":\"42:01:0A:00:00:05\",\"Interface\":\"ens4\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"Bytes\":66,\"Duplicate\":true,\"SrcK8S_HostName\":\"ci-ln-hnd9rjk-72292-hnd5v-master-1\",\"AgentIP\":\"10.0.0.5\",\"Etype\":2048,\"TimeFlowEndMs\":1689619350794,\"DstAddr\":\"10.0.0.2\",\"SrcMac\":\"42:01:0A:00:00:01\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619351059000064", + "{\"SrcPort\":46486,\"Etype\":2048,\"TimeReceived\":1689619351,\"IfDirection\":0,\"AgentIP\":\"10.0.0.5\",\"Duplicate\":false,\"DstPort\":6443,\"Bytes\":66,\"Proto\":6,\"DstMac\":\"42:01:0A:00:00:05\",\"TimeFlowStartMs\":1689619351059,\"Packets\":1,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.0.2\",\"TimeFlowEndMs\":1689619351059,\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcAddr\":\"35.191.15.172\",\"Flags\":512}" + ], + [ + "1689619350111000064", + "{\"SrcPort\":45102,\"TimeFlowStartMs\":1689619350111,\"Interface\":\"br-ex\",\"Bytes\":320,\"DstAddr\":\"10.0.0.2\",\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcAddr\":\"35.191.15.169\",\"AgentIP\":\"10.0.0.5\",\"TimeReceived\":1689619351,\"IfDirection\":0,\"DstPort\":6443,\"Flags\":16,\"TimeFlowEndMs\":1689619350111,\"Packets\":1,\"Proto\":6,\"Duplicate\":false,\"DstMac\":\"42:01:0A:00:00:05\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1689619350268000000", + "{\"SrcPort\":32650,\"DstPort\":33732,\"Flags\":16,\"Etype\":2048,\"IfDirection\":1,\"AgentIP\":\"10.0.0.5\",\"Duplicate\":false,\"TimeFlowEndMs\":1689619350268,\"Proto\":6,\"TimeReceived\":1689619351,\"SrcMac\":\"42:01:0A:00:00:05\",\"Interface\":\"ens4\",\"DstMac\":\"42:01:0A:00:00:01\",\"Packets\":1,\"DstAddr\":\"169.254.169.254\",\"TimeFlowStartMs\":1689619350268,\"SrcAddr\":\"34.136.12.139\",\"Bytes\":289}" + ] + ] + } + ], + "stats": { + "summary": { + "bytesProcessedPerSecond": 710721922, + "linesProcessedPerSecond": 1028778, + "totalBytesProcessed": 147459922, + "totalLinesProcessed": 213450, + "execTime": 0.207479068, + "queueTime": 0.00013862, + "subqueries": 1, + "totalEntriesReturned": 50 + }, + "querier": { + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + }, + "ingester": { + "totalReached": 1, + "totalChunksMatched": 978, + "totalBatches": 1, + "totalLinesSent": 50, + "store": { + "totalChunksRef": 47, + "totalChunksDownloaded": 47, + "chunksDownloadTime": 2079510, + "chunk": { + "headChunkBytes": 57615813, + "headChunkLines": 82815, + "decompressedBytes": 89844109, + "decompressedLines": 130635, + "compressedBytes": 38465876, + "totalDuplicates": 0 + } + } + } + } + } +} diff --git a/web/cypress/fixtures/flowmetrics/table_500.json b/web/cypress/fixtures/flowmetrics/table_500.json new file mode 100644 index 000000000..41c726642 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/table_500.json @@ -0,0 +1,4199 @@ +{ + "status": "success", + "data": { + "resultType": "streams", + "result": [ + { + "stream": { + "DstK8S_Type": "Service", + "Duplicate": "false", + "DstK8S_Namespace": "default", + "DstK8S_OwnerName": "kubernetes", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-kube-storage-version-migrator-operator", + "SrcK8S_OwnerName": "kube-storage-version-migrator-operator", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012460000000", + "{\"DstAddr\":\"172.30.0.1\",\"SrcMac\":\"0A:58:0A:82:00:1F\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Flags\":16,\"Etype\":2048,\"IfDirection\":0,\"Bytes\":66,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_Name\":\"kube-storage-version-migrator-operator-65867cc56b-9knd7\",\"TimeFlowEndMs\":1696965012460,\"SrcAddr\":\"10.130.0.31\",\"SrcPort\":55036,\"DstK8S_Name\":\"kubernetes\",\"TimeReceived\":1696965012,\"DstMac\":\"0A:58:0A:82:00:01\",\"DstK8S_OwnerType\":\"Service\",\"Proto\":6,\"AgentIP\":\"10.0.89.254\",\"DstPort\":443,\"Packets\":1,\"TimeFlowStartMs\":1696965012460,\"Interface\":\"6ee14036d9eff78\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "default", + "DstK8S_OwnerName": "kubernetes", + "DstK8S_Type": "Service", + "Duplicate": "false", + "FlowDirection": "1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014088999936", + "{\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"169.254.169.2\",\"DstMac\":\"0A:58:A9:FE:A9:04\",\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Service\",\"Proto\":6,\"SrcPort\":52436,\"Etype\":2048,\"DstPort\":443,\"Packets\":2,\"SrcMac\":\"06:45:0B:D4:57:61\",\"Bytes\":171,\"TimeFlowStartMs\":1696965014046,\"DstK8S_Name\":\"kubernetes\",\"TimeFlowEndMs\":1696965014089,\"DstAddr\":\"172.30.0.1\",\"IfDirection\":1,\"Flags\":16}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "openshift-monitoring", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965014091000064", + "{\"DstAddr\":\"10.129.0.115\",\"DstMac\":\"0A:58:0A:81:00:73\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965014091,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcAddr\":\"10.131.0.16\",\"TimeReceived\":1696965015,\"Bytes\":66,\"Interface\":\"17493a3d6578437\",\"TimeFlowEndMs\":1696965014091,\"DstK8S_OwnerType\":\"DaemonSet\",\"SrcK8S_Name\":\"prometheus-k8s-1\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"SrcPort\":39982,\"Flags\":16,\"IfDirection\":1,\"DstPort\":9102,\"Packets\":1,\"DstK8S_Name\":\"flowlogs-pipeline-t94xr\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965012483000064", + "{\"SrcPort\":45384,\"DstMac\":\"0A:58:A8:FE:00:02\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965012483,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"genev_sys_6081\",\"Proto\":6,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstPort\":9102,\"DstAddr\":\"10.130.0.80\",\"DstK8S_Name\":\"flowlogs-pipeline-4sl5p\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"DaemonSet\",\"Packets\":1,\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965012483,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.89.254\",\"SrcK8S_Name\":\"prometheus-k8s-0\",\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcAddr\":\"10.128.2.16\",\"Bytes\":353,\"TimeReceived\":1696965012}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-distributor", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-compactor" + }, + "values": [ + [ + "1696965013663000064", + "{\"SrcMac\":\"0A:58:A8:FE:00:06\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.18.124\",\"Flags\":16,\"Interface\":\"genev_sys_6081\",\"SrcPort\":7946,\"DstMac\":\"0A:58:A8:FE:00:07\",\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013663,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.128.2.19\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowStartMs\":1696965013663,\"Proto\":6,\"Bytes\":66,\"TimeReceived\":1696965014,\"DstPort\":57616,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstAddr\":\"10.129.2.20\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-compactor", + "FlowDirection": "0", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014222000128", + "{\"Flags\":16,\"AgentIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965014222,\"DstPort\":7946,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"StatefulSet\",\"Bytes\":173,\"TimeFlowStartMs\":1696965014222,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"Interface\":\"genev_sys_6081\",\"SrcPort\":44208,\"Proto\":6,\"DstAddr\":\"10.129.2.20\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.20\"}" + ], + [ + "1696965013863000064", + "{\"TimeFlowEndMs\":1696965013863,\"DstAddr\":\"10.129.2.20\",\"Bytes\":82,\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcAddr\":\"10.128.2.20\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":44202,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeReceived\":1696965014,\"Interface\":\"c811a4622d80143\",\"Packets\":1,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013863,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"DstMac\":\"0A:58:0A:81:02:14\",\"Flags\":16,\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"SrcMac\":\"0A:58:0A:81:02:01\",\"DstPort\":7946,\"Proto\":6}" + ], + [ + "1696965013860999936", + "{\"DstK8S_Name\":\"lokistack-compactor-0\",\"SrcPort\":7946,\"Etype\":2048,\"DstMac\":\"0A:58:A8:FE:00:07\",\"Flags\":512,\"TimeReceived\":1696965014,\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"Interface\":\"genev_sys_6081\",\"SrcAddr\":\"10.131.0.23\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Proto\":6,\"TimeFlowStartMs\":1696965013861,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstAddr\":\"10.129.2.20\",\"TimeFlowEndMs\":1696965013861,\"Packets\":1,\"DstK8S_HostIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"Bytes\":66,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstPort\":47648}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-compactor", + "FlowDirection": "0", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013660999936", + "{\"AgentIP\":\"10.0.18.124\",\"IfDirection\":0,\"SrcPort\":7946,\"TimeFlowEndMs\":1696965013661,\"DstK8S_Name\":\"lokistack-compactor-0\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965013661,\"DstAddr\":\"10.129.2.20\",\"Flags\":512,\"Proto\":6,\"Bytes\":66,\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstPort\":55978,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcAddr\":\"10.131.0.19\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-compactor", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965013347000064", + "{\"TimeFlowEndMs\":1696965013347,\"Interface\":\"genev_sys_6081\",\"Packets\":1,\"Flags\":16,\"DstMac\":\"0A:58:A8:FE:00:07\",\"DstK8S_Name\":\"lokistack-compactor-0\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.129.2.20\",\"DstK8S_OwnerType\":\"StatefulSet\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.19\",\"DstK8S_HostIP\":\"10.0.18.124\",\"Proto\":6,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.84.208\",\"SrcPort\":7946,\"Bytes\":66,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"DstPort\":57610,\"TimeFlowStartMs\":1696965013347,\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-compactor", + "DstK8S_Type": "Pod", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "DstK8S_Namespace": "netobserv", + "Duplicate": "false", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013691000064", + "{\"Proto\":6,\"DstAddr\":\"10.129.2.20\",\"Flags\":16,\"SrcAddr\":\"10.129.2.17\",\"DstK8S_HostIP\":\"10.0.18.124\",\"Interface\":\"11542a2810ada05\",\"Etype\":2048,\"Packets\":1,\"DstK8S_Name\":\"lokistack-compactor-0\",\"TimeReceived\":1696965014,\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965013691,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"DstMac\":\"0A:58:0A:81:02:14\",\"Bytes\":82,\"DstPort\":7946,\"TimeFlowStartMs\":1696965013691,\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":0,\"SrcPort\":48306}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-compactor", + "Duplicate": "false", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013348000000", + "{\"DstAddr\":\"10.128.2.19\",\"SrcAddr\":\"10.129.2.20\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"Bytes\":66,\"Etype\":2048,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":7946,\"TimeFlowEndMs\":1696965013348,\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"AgentIP\":\"10.0.84.208\",\"SrcPort\":57610,\"TimeFlowStartMs\":1696965013348,\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Flags\":16,\"Interface\":\"genev_sys_6081\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965012945999872", + "{\"IfDirection\":1,\"SrcAddr\":\"10.131.0.18\",\"Packets\":2,\"DstK8S_HostIP\":\"10.0.84.208\",\"AgentIP\":\"10.0.84.208\",\"DstAddr\":\"10.128.2.19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Bytes\":140,\"DstMac\":\"0A:58:0A:80:02:13\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"Etype\":2048,\"SrcMac\":\"0A:58:0A:80:02:01\",\"TimeFlowEndMs\":1696965012946,\"SrcK8S_HostIP\":\"10.0.45.84\",\"Interface\":\"1d39912d5faa2e1\",\"TimeFlowStartMs\":1696965012945,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Flags\":768,\"Proto\":6,\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":54542,\"SrcPort\":7946,\"TimeReceived\":1696965013}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "DstK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965012822000128", + "{\"SrcK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":7946,\"Flags\":16,\"SrcPort\":59976,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.128.2.20\",\"TimeFlowStartMs\":1696965012822,\"DstAddr\":\"10.131.0.18\",\"Packets\":1,\"AgentIP\":\"10.0.45.84\",\"Bytes\":66,\"Interface\":\"1e8dadf9dcf4041\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:0A:83:00:01\",\"Proto\":6,\"DstK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965013,\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"DstMac\":\"0A:58:0A:83:00:12\",\"TimeFlowEndMs\":1696965012822,\"DstK8S_HostIP\":\"10.0.45.84\",\"Etype\":2048,\"IfDirection\":1,\"SrcK8S_HostIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-distributor", + "FlowDirection": "0", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012844999936", + "{\"DstAddr\":\"10.128.2.19\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":7946,\"Bytes\":66,\"Interface\":\"genev_sys_6081\",\"TimeFlowEndMs\":1696965012845,\"DstK8S_HostIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.84.208\",\"Etype\":2048,\"IfDirection\":0,\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"SrcK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"SrcAddr\":\"10.131.0.19\",\"SrcPort\":46348,\"TimeReceived\":1696965013,\"SrcMac\":\"0A:58:A8:FE:00:05\",\"Flags\":16,\"TimeFlowStartMs\":1696965012845,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:A8:FE:00:06\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "FlowDirection": "1", + "app": "netobserv-flowcollector", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965014060000000", + "{\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Packets\":1,\"TimeReceived\":1696965014,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"DstPort\":7946,\"Bytes\":74,\"Interface\":\"c811a4622d80143\",\"SrcAddr\":\"10.129.2.20\",\"SrcPort\":43318,\"DstAddr\":\"10.131.0.18\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"DstMac\":\"0A:58:0A:81:02:01\",\"Flags\":2,\"TimeFlowStartMs\":1696965014060,\"Proto\":6,\"TimeFlowEndMs\":1696965014060,\"IfDirection\":0}" + ], + [ + "1696965013662000128", + "{\"TimeReceived\":1696965014,\"Packets\":1,\"TimeFlowStartMs\":1696965013662,\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"Bytes\":82,\"AgentIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.20\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.18.124\",\"Flags\":512,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcPort\":57616,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":7946,\"TimeFlowEndMs\":1696965013662,\"Interface\":\"c811a4622d80143\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Proto\":6,\"DstAddr\":\"10.128.2.19\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965013639000064", + "{\"SrcPort\":7946,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"Bytes\":66,\"IfDirection\":0,\"TimeFlowEndMs\":1696965013639,\"DstPort\":41624,\"Interface\":\"c811a4622d80143\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.20\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"DstK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"TimeFlowStartMs\":1696965013639,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"DstMac\":\"0A:58:0A:81:02:01\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.131.0.18\",\"Flags\":16}" + ], + [ + "1696965013347000064", + "{\"SrcPort\":57610,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013347,\"Flags\":512,\"IfDirection\":1,\"DstPort\":7946,\"TimeReceived\":1696965014,\"Bytes\":82,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Packets\":1,\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.128.2.19\",\"SrcAddr\":\"10.129.2.20\",\"Etype\":2048,\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"TimeFlowStartMs\":1696965013347,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "Duplicate": "false", + "SrcK8S_OwnerName": "lokistack-ingester", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012820999936", + "{\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.131.0.18\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"IfDirection\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"TimeReceived\":1696965013,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"TimeFlowEndMs\":1696965012821,\"Etype\":2048,\"Proto\":6,\"SrcPort\":59976,\"TimeFlowStartMs\":1696965012821,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":7946,\"SrcAddr\":\"10.128.2.20\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":2681}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-querier", + "DstK8S_OwnerName": "lokistack-distributor", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014289999872", + "{\"TimeFlowStartMs\":1696965014290,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"TimeReceived\":1696965014,\"DstPort\":7946,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.18.124\",\"DstAddr\":\"10.128.2.19\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"SrcPort\":52930,\"TimeFlowEndMs\":1696965014290,\"Interface\":\"11542a2810ada05\",\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"Bytes\":82,\"Etype\":2048}" + ], + [ + "1696965012844999936", + "{\"Bytes\":2681,\"DstK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:A8:FE:00:06\",\"IfDirection\":1,\"DstAddr\":\"10.128.2.19\",\"TimeFlowStartMs\":1696965012845,\"SrcPort\":46348,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"AgentIP\":\"10.0.45.84\",\"DstPort\":7946,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965012845,\"Interface\":\"genev_sys_6081\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.131.0.19\",\"Packets\":1,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013190000128", + "{\"Interface\":\"180c53e5f387e40\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"SrcMac\":\"0A:58:0A:83:00:17\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"TimeFlowEndMs\":1696965013190,\"DstPort\":7946,\"DstMac\":\"0A:58:0A:83:00:12\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstAddr\":\"10.131.0.18\",\"TimeFlowStartMs\":1696965013190,\"Etype\":2048,\"Flags\":16,\"Proto\":6,\"SrcPort\":35720,\"IfDirection\":0,\"TimeReceived\":1696965013,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcAddr\":\"10.131.0.23\",\"AgentIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1}" + ], + [ + "1696965012839000064", + "{\"SrcK8S_HostIP\":\"10.0.45.84\",\"Proto\":6,\"DstMac\":\"0A:58:0A:83:00:12\",\"TimeFlowStartMs\":1696965012839,\"Bytes\":66,\"Etype\":2048,\"AgentIP\":\"10.0.45.84\",\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012839,\"DstPort\":37468,\"DstK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"TimeReceived\":1696965013,\"DstAddr\":\"10.131.0.18\",\"SrcMac\":\"0A:58:0A:83:00:17\",\"SrcAddr\":\"10.131.0.23\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcPort\":7946,\"Interface\":\"1e8dadf9dcf4041\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"Packets\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-gateway", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965013380999936", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcPort\":34602,\"AgentIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:0A:83:00:15\",\"SrcAddr\":\"10.131.0.16\",\"DstAddr\":\"10.131.0.21\",\"Proto\":6,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstPort\":8083,\"IfDirection\":0,\"SrcMac\":\"0A:58:0A:83:00:10\",\"TimeFlowEndMs\":1696965013381,\"TimeFlowStartMs\":1696965013381,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"Interface\":\"ens5\",\"PktDropBytes\":32,\"SrcK8S_Name\":\"prometheus-k8s-1\",\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-gateway-856f4fb587-f2hk6\",\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-gateway", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965014560999936", + "{\"DstK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"26:10:35:4E:D0:50\",\"DstAddr\":\"10.129.2.19\",\"SrcAddr\":\"10.129.2.2\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"Proto\":6,\"Interface\":\"abe73e0313a4c0f\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Bytes\":66,\"SrcPort\":49566,\"TimeReceived\":1696965014,\"TimeFlowEndMs\":1696965014561,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014561,\"DstPort\":8083,\"DstK8S_Name\":\"lokistack-gateway-856f4fb587-6vhvv\",\"IfDirection\":1,\"Etype\":2048,\"DstMac\":\"0A:58:0A:81:02:13\",\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "FlowDirection": "0", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965013392000000", + "{\"TimeFlowEndMs\":1696965013392,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Bytes\":82,\"Proto\":6,\"Packets\":1,\"IfDirection\":0,\"Etype\":2048,\"Flags\":512,\"DstPort\":7946,\"SrcK8S_OwnerType\":\"StatefulSet\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcAddr\":\"10.131.0.23\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstAddr\":\"10.128.2.20\",\"SrcPort\":37110,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013392,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "Duplicate": "false", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier" + }, + "values": [ + [ + "1696965013420999936", + "{\"TimeReceived\":1696965013,\"Packets\":1,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"AgentIP\":\"10.0.84.208\",\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013421,\"IfDirection\":1,\"Interface\":\"eeca9bf491d7e0e\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"0A:58:0A:80:02:14\",\"Bytes\":78,\"DstPort\":34348,\"DstK8S_Name\":\"lokistack-ingester-0\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013421,\"SrcMac\":\"0A:58:0A:80:02:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":7946,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.131.0.19\",\"DstAddr\":\"10.128.2.20\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Deployment\"}" + ], + [ + "1696965013092999936", + "{\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcPort\":37176,\"DstMac\":\"0A:58:0A:80:02:14\",\"Bytes\":82,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"TimeFlowEndMs\":1696965013093,\"DstAddr\":\"10.128.2.20\",\"DstPort\":7946,\"Interface\":\"eeca9bf491d7e0e\",\"TimeReceived\":1696965013,\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"SrcK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013093,\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":1,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048}" + ], + [ + "1696965013022000128", + "{\"Etype\":2048,\"Bytes\":66,\"TimeFlowEndMs\":1696965013022,\"Flags\":16,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"TimeFlowStartMs\":1696965013022,\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:0A:80:02:14\",\"SrcPort\":7946,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"eeca9bf491d7e0e\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstPort\":40958,\"DstAddr\":\"10.128.2.20\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"IfDirection\":1,\"SrcAddr\":\"10.129.2.17\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"Proto\":6,\"Packets\":1}" + ], + [ + "1696965012992000000", + "{\"TimeFlowEndMs\":1696965012992,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstPort\":58988,\"Packets\":1,\"AgentIP\":\"10.0.45.84\",\"Interface\":\"180c53e5f387e40\",\"Flags\":16,\"TimeReceived\":1696965013,\"SrcPort\":7946,\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"TimeFlowStartMs\":1696965012992,\"IfDirection\":1,\"DstMac\":\"0A:58:0A:83:00:17\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.23\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-compactor", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965014260000000", + "{\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"TimeFlowEndMs\":1696965014260,\"AgentIP\":\"10.0.18.124\",\"DstAddr\":\"10.128.2.20\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcAddr\":\"10.129.2.20\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowStartMs\":1696965014260,\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":1,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"Proto\":6,\"Flags\":512,\"DstPort\":7946,\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcPort\":48512,\"Packets\":1}" + ], + [ + "1696965014222000128", + "{\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"c811a4622d80143\",\"Packets\":1,\"TimeReceived\":1696965014,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstPort\":44208,\"DstK8S_OwnerType\":\"StatefulSet\",\"Etype\":2048,\"Bytes\":66,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":7946,\"TimeFlowEndMs\":1696965014222,\"SrcK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014222,\"DstK8S_Name\":\"lokistack-ingester-0\",\"DstAddr\":\"10.128.2.20\",\"DstMac\":\"0A:58:0A:81:02:01\",\"IfDirection\":0,\"SrcMac\":\"0A:58:0A:81:02:14\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Flags\":512,\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.20\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965014060000000", + "{\"SrcAddr\":\"10.129.2.20\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"StatefulSet\",\"Proto\":6,\"Bytes\":82,\"TimeFlowEndMs\":1696965014060,\"IfDirection\":1,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Packets\":1,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcPort\":48496,\"DstPort\":7946,\"TimeReceived\":1696965014,\"DstMac\":\"0A:58:A8:FE:00:06\",\"TimeFlowStartMs\":1696965014060,\"DstAddr\":\"10.128.2.20\"}" + ], + [ + "1696965013460000000", + "{\"TimeFlowStartMs\":1696965013460,\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013460,\"TimeReceived\":1696965014,\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcMac\":\"0A:58:0A:81:02:14\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"c811a4622d80143\",\"Bytes\":66,\"DstAddr\":\"10.131.0.23\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.20\",\"Etype\":2048,\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-compactor-0\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"DstPort\":7946,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.18.124\",\"Flags\":16,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcPort\":38962,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-ingester", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013352999936", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstAddr\":\"10.131.0.23\",\"Packets\":1,\"SrcMac\":\"0A:58:0A:80:02:13\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"SrcAddr\":\"10.128.2.19\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":40720,\"DstMac\":\"0A:58:0A:80:02:01\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013353,\"IfDirection\":0,\"Interface\":\"1d39912d5faa2e1\",\"TimeFlowStartMs\":1696965013353,\"DstK8S_Name\":\"lokistack-ingester-1\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstPort\":9095,\"Flags\":16,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_OwnerName": "lokistack-querier", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "Duplicate": "false", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013492000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965014,\"Interface\":\"11542a2810ada05\",\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Bytes\":66,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013492,\"TimeFlowStartMs\":1696965013492,\"SrcMac\":\"0A:58:0A:81:02:11\",\"DstPort\":7946,\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"IfDirection\":0,\"Etype\":2048,\"AgentIP\":\"10.0.18.124\",\"SrcPort\":37180,\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.128.2.20\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013022000128", + "{\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcAddr\":\"10.129.2.17\",\"Proto\":6,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstPort\":40958,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":512,\"Packets\":1,\"SrcPort\":7946,\"TimeFlowEndMs\":1696965013022,\"TimeReceived\":1696965014,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013022,\"DstK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_OwnerType\":\"Deployment\",\"Bytes\":66,\"Interface\":\"genev_sys_6081\",\"DstAddr\":\"10.128.2.20\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-ingester", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-distributor" + }, + "values": [ + [ + "1696965013420000000", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"SrcAddr\":\"10.128.2.19\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"eeca9bf491d7e0e\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":74,\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013420,\"SrcPort\":7946,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.84.208\",\"IfDirection\":1,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"lokistack-ingester-0\",\"Etype\":2048,\"DstAddr\":\"10.128.2.20\",\"Proto\":6,\"TimeFlowStartMs\":1696965013420,\"DstPort\":52358,\"Flags\":256,\"SrcMac\":\"0A:58:0A:80:02:13\",\"DstMac\":\"0A:58:0A:80:02:14\",\"Packets\":1}" + ], + [ + "1696965013188999936", + "{\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.131.0.23\",\"DstMac\":\"0A:58:0A:83:00:17\",\"DstPort\":35732,\"Interface\":\"180c53e5f387e40\",\"SrcMac\":\"0A:58:0A:83:00:12\",\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"Packets\":1,\"Bytes\":66,\"SrcPort\":7946,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Proto\":6,\"SrcAddr\":\"10.131.0.18\",\"TimeFlowStartMs\":1696965013189,\"AgentIP\":\"10.0.45.84\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013189,\"TimeReceived\":1696965013,\"Flags\":16,\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"StatefulSet\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012716000000", + "{\"Etype\":2048,\"Flags\":512,\"SrcPort\":60974,\"DstAddr\":\"10.131.0.23\",\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"TimeFlowEndMs\":1696965012716,\"SrcK8S_HostIP\":\"10.0.45.84\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":3101,\"Interface\":\"ovn-k8s-mp0\",\"TimeFlowStartMs\":1696965012716,\"SrcAddr\":\"10.131.0.2\",\"DstMac\":\"0A:58:0A:83:00:17\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"4A:12:8D:5D:F8:A1\",\"Proto\":6,\"DstK8S_OwnerType\":\"StatefulSet\",\"Bytes\":66}" + ], + [ + "1696965012711000064", + "{\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965012711,\"SrcK8S_HostIP\":\"10.0.45.84\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.131.0.2\",\"Packets\":1,\"TimeFlowEndMs\":1696965012711,\"Interface\":\"ovn-k8s-mp0\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Bytes\":323,\"DstPort\":3101,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":1,\"DstAddr\":\"10.131.0.23\",\"Flags\":16,\"Proto\":6,\"TimeReceived\":1696965013,\"SrcPort\":60972,\"SrcMac\":\"4A:12:8D:5D:F8:A1\",\"Etype\":2048,\"DstMac\":\"0A:58:0A:83:00:17\",\"DstK8S_HostIP\":\"10.0.45.84\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014438000128", + "{\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":1,\"Bytes\":84,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:81:02:11\",\"SrcAddr\":\"10.131.0.18\",\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"SrcMac\":\"0A:58:0A:81:02:01\",\"SrcPort\":59660,\"Flags\":16,\"DstPort\":7946,\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"TimeFlowEndMs\":1696965014438,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"11542a2810ada05\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014438,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965014,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.129.2.17\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "app": "netobserv-flowcollector", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012820000000", + "{\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.19\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"TimeFlowStartMs\":1696965012820,\"TimeFlowEndMs\":1696965012820,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"SrcPort\":34346,\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"DstPort\":7946,\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"SrcAddr\":\"10.128.2.20\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"Bytes\":84,\"TimeReceived\":1696965013,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.45.84\",\"IfDirection\":0}" + ], + [ + "1696965012624000000", + "{\"Interface\":\"genev_sys_6081\",\"SrcPort\":7946,\"Proto\":6,\"Flags\":16,\"IfDirection\":0,\"DstPort\":37164,\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"SrcAddr\":\"10.128.2.20\",\"DstAddr\":\"10.129.2.17\",\"TimeFlowStartMs\":1696965012624,\"Bytes\":66,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012624,\"TimeReceived\":1696965014,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.18.124\"}" + ], + [ + "1696965012620999936", + "{\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"SrcPort\":40942,\"Etype\":2048,\"SrcAddr\":\"10.128.2.20\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965014,\"Bytes\":74,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.129.2.17\",\"IfDirection\":0,\"Packets\":1,\"TimeFlowEndMs\":1696965012621,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":7946,\"AgentIP\":\"10.0.18.124\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Flags\":2,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012621}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "app": "netobserv-flowcollector", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-querier", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965014446000128", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1696965014446,\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":7946,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965014,\"Bytes\":66,\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcAddr\":\"10.131.0.19\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Flags\":16,\"TimeFlowEndMs\":1696965014446,\"Proto\":6,\"Interface\":\"genev_sys_6081\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"SrcPort\":44362,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.129.2.17\",\"Etype\":2048,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\"}" + ], + [ + "1696965013492000000", + "{\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"genev_sys_6081\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstPort\":41034,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"Etype\":2048,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"DstAddr\":\"10.129.2.17\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965014,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"Bytes\":66,\"SrcPort\":7946,\"SrcAddr\":\"10.131.0.19\",\"TimeFlowStartMs\":1696965013492,\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013492}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "Duplicate": "false", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965013462000128", + "{\"SrcAddr\":\"10.129.2.20\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcPort\":55970,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"IfDirection\":1,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"Bytes\":66,\"DstAddr\":\"10.131.0.19\",\"Interface\":\"genev_sys_6081\",\"DstK8S_OwnerType\":\"Deployment\",\"TimeFlowEndMs\":1696965013462,\"DstPort\":7946,\"TimeFlowStartMs\":1696965013462,\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"AgentIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012944999936", + "{\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"Interface\":\"genev_sys_6081\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965012945,\"SrcPort\":32880,\"Bytes\":66,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstPort\":7946,\"TimeFlowStartMs\":1696965012945,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"IfDirection\":1,\"SrcAddr\":\"10.128.2.19\",\"SrcK8S_OwnerType\":\"Deployment\",\"Etype\":2048,\"Proto\":6,\"Packets\":1,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.129.2.17\",\"TimeReceived\":1696965013}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965012846000128", + "{\"DstAddr\":\"10.131.0.19\",\"TimeReceived\":1696965013,\"Bytes\":66,\"SrcK8S_Name\":\"lokistack-ingester-0\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"AgentIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012846,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstPort\":51860,\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":7946,\"Packets\":1,\"TimeFlowStartMs\":1696965012846,\"Interface\":\"genev_sys_6081\",\"Flags\":512,\"SrcAddr\":\"10.128.2.20\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "DstK8S_OwnerName": "lokistack-querier", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014489999872", + "{\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014490,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.131.0.19\",\"Etype\":2048,\"SrcAddr\":\"10.129.2.17\",\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"Bytes\":84,\"SrcMac\":\"0A:58:0A:81:02:11\",\"DstK8S_HostIP\":\"10.0.45.84\",\"IfDirection\":0,\"DstMac\":\"0A:58:0A:81:02:01\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstPort\":7946,\"AgentIP\":\"10.0.18.124\",\"Interface\":\"11542a2810ada05\",\"TimeFlowEndMs\":1696965014490,\"Flags\":16,\"SrcPort\":34468,\"TimeReceived\":1696965014,\"Packets\":1}" + ], + [ + "1696965013446000128", + "{\"IfDirection\":0,\"Flags\":16,\"TimeFlowEndMs\":1696965013446,\"Proto\":6,\"Etype\":2048,\"SrcPort\":7946,\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":44356,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"SrcAddr\":\"10.129.2.17\",\"AgentIP\":\"10.0.18.124\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"TimeReceived\":1696965014,\"Interface\":\"11542a2810ada05\",\"DstMac\":\"0A:58:0A:81:02:01\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013446,\"DstAddr\":\"10.131.0.19\",\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.18.124\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "dns-default", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-querier", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-dns", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965013724000000", + "{\"Bytes\":210,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcAddr\":\"10.129.2.7\",\"TimeFlowEndMs\":1696965013724,\"TimeFlowStartMs\":1696965013724,\"TimeReceived\":1696965014,\"IfDirection\":0,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"840aa5868d94af9\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"SrcMac\":\"0A:58:0A:81:02:07\",\"SrcK8S_Name\":\"dns-default-qg9gj\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Proto\":17,\"Packets\":1,\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":49262,\"DstMac\":\"0A:58:0A:81:02:11\",\"SrcPort\":5353,\"DstAddr\":\"10.129.2.17\"}" + ], + [ + "1696965012960999936", + "{\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"0A:58:0A:83:00:13\",\"Packets\":1,\"AgentIP\":\"10.0.45.84\",\"DstPort\":48750,\"SrcAddr\":\"10.131.0.6\",\"TimeFlowStartMs\":1696965012961,\"Proto\":17,\"TimeFlowEndMs\":1696965012961,\"Interface\":\"6bb1b68967c10bf\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"Bytes\":263,\"SrcPort\":5353,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"dns-default-z67mg\",\"SrcMac\":\"0A:58:0A:83:00:06\",\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-querier", + "SrcK8S_OwnerName": "lokistack-ingester", + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Pod", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + "1696965012624000000", + "{\"IfDirection\":0,\"SrcMac\":\"0A:58:0A:81:02:01\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_OLD_ACK\",\"DstK8S_HostIP\":\"10.0.18.124\",\"PktDropPackets\":1,\"TimeReceived\":1696965014,\"DstMac\":\"0A:58:0A:81:02:11\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965012624,\"Interface\":\"ens5\",\"DstAddr\":\"10.129.2.17\",\"SrcK8S_Name\":\"lokistack-ingester-0\",\"Etype\":2048,\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.84.208\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965012624,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"Proto\":6,\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcPort\":7946,\"AgentIP\":\"10.0.18.124\",\"DstPort\":37164,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.128.2.20\"}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "SrcK8S_OwnerName": "kubernetes", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Namespace": "default", + "SrcK8S_Type": "Service", + "DstK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + "1696965014912000000", + "{\"TimeReceived\":1696965015,\"DstMac\":\"0A:58:0A:81:00:36\",\"SrcAddr\":\"172.30.0.1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":58604,\"SrcPort\":443,\"TimeFlowEndMs\":1696965014912,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"Interface\":\"bb24de9d20dc905\",\"SrcK8S_OwnerType\":\"Service\",\"Bytes\":282,\"Packets\":2,\"SrcK8S_Name\":\"kubernetes\",\"DstK8S_OwnerType\":\"Deployment\",\"IfDirection\":1,\"Proto\":6,\"DstK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"DstAddr\":\"10.129.0.54\",\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"TimeFlowStartMs\":1696965012079,\"AgentIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-apiserver", + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965015316999936", + "{\"Proto\":6,\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstAddr\":\"10.129.0.54\",\"DstK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":53200,\"DstMac\":\"0A:58:0A:81:00:36\",\"TimeFlowEndMs\":1696965015317,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"bb24de9d20dc905\",\"SrcPort\":2379,\"SrcMac\":\"0A:58:0A:81:00:01\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965015317,\"Bytes\":112}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + "1696965015008000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965015008,\"TimeFlowStartMs\":1696965015008,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.129.0.54\",\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:81:00:36\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":2379,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":49256,\"Interface\":\"ens5\",\"PktDropBytes\":32,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"apiserver-55b8478bd5-sphxc\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-apiserver", + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965014815000064", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"Bytes\":66,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":1,\"DstPort\":8443,\"DstAddr\":\"10.129.0.54\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"Proto\":6,\"Interface\":\"ovn-k8s-mp0\",\"DstK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"TimeFlowStartMs\":1696965014815,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"Etype\":2048,\"SrcAddr\":\"10.129.0.2\",\"TimeFlowEndMs\":1696965014815,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:58:0A:81:00:36\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":34024}" + ], + [ + "1696965014812999936", + "{\"Etype\":2048,\"DstK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014813,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"Packets\":1,\"DstAddr\":\"10.129.0.54\",\"SrcPort\":34014,\"SrcAddr\":\"10.129.0.2\",\"TimeReceived\":1696965015,\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"TimeFlowEndMs\":1696965014813,\"DstK8S_HostIP\":\"10.0.60.65\",\"Bytes\":90,\"DstPort\":8443,\"Proto\":6,\"DstK8S_OwnerType\":\"Deployment\",\"Interface\":\"bb24de9d20dc905\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"0A:58:0A:81:00:36\"}" + ], + [ + "1696965012540000000", + "{\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965012540,\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"TimeFlowStartMs\":1696965012540,\"PktDropBytes\":32,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":2379,\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"DstPort\":55806,\"DstMac\":\"0A:58:0A:81:00:36\",\"DstAddr\":\"10.129.0.54\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-apiserver", + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965012448000000", + "{\"SrcPort\":2379,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.89.254\",\"PktDropPackets\":1,\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":34494,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965012,\"PktDropBytes\":32,\"DstMac\":\"0A:58:0A:82:00:42\",\"SrcMac\":\"AA:90:3E:3B:3B:6F\",\"TimeFlowEndMs\":1696965012448,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstAddr\":\"10.130.0.66\",\"DstK8S_Name\":\"apiserver-55b8478bd5-d464g\",\"Proto\":6,\"PktDropLatestFlags\":16,\"Interface\":\"ens5\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.89.254\",\"Flags\":16,\"Etype\":2048,\"TimeFlowStartMs\":1696965012448}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-authentication", + "DstK8S_OwnerName": "oauth-openshift", + "DstK8S_Type": "Pod", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965013505999872", + "{\"SrcK8S_Name\":\"prometheus-k8s-1\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"oauth-openshift-85b5766b97-jpvw2\",\"SrcPort\":42972,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":1,\"DstMac\":\"0A:58:0A:81:00:3E\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"DstPort\":6443,\"Etype\":2048,\"Packets\":1,\"SrcAddr\":\"10.131.0.16\",\"DstK8S_OwnerType\":\"Deployment\",\"Bytes\":66,\"DstAddr\":\"10.129.0.62\",\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965013506,\"SrcMac\":\"0A:58:0A:81:00:01\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ac903690d92e25d\",\"TimeFlowStartMs\":1696965013506}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-console", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-ingress", + "SrcK8S_OwnerName": "router-default", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "console", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013264999936", + "{\"TimeReceived\":1696965013,\"TimeFlowStartMs\":1696965013265,\"DstK8S_Name\":\"console-f74d4f8c4-4lk65\",\"Packets\":1,\"SrcMac\":\"0A:58:0A:80:02:05\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcPort\":54820,\"DstK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"DstMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_OwnerType\":\"Deployment\",\"Bytes\":2336,\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"cbb8df58ce2326f\",\"DstPort\":8443,\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.128.2.5\",\"SrcK8S_Name\":\"router-default-5475f6bbc4-pf2s8\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Flags\":16,\"DstAddr\":\"10.128.0.117\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013265,\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "controller-manager", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-controller-manager" + }, + "values": [ + [ + "1696965014404000000", + "{\"Etype\":2048,\"Bytes\":323,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"DstPort\":8443,\"DstMac\":\"0A:58:0A:81:00:2C\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014404,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.129.0.44\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"controller-manager-59d75f4df5-c9pnz\",\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"SrcPort\":42862,\"Flags\":16,\"Interface\":\"ovn-k8s-mp0\",\"IfDirection\":1,\"TimeFlowStartMs\":1696965014404,\"Proto\":6,\"SrcAddr\":\"10.129.0.2\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-dns", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "dns-default", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965012504000000", + "{\"DstK8S_OwnerType\":\"DaemonSet\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012504,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.130.0.41\",\"Bytes\":106,\"Etype\":2048,\"SrcK8S_OwnerType\":\"StatefulSet\",\"TimeReceived\":1696965013,\"SrcMac\":\"0A:58:0A:80:02:10\",\"SrcAddr\":\"10.128.2.16\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965012504,\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"dns-default-2rdcs\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"AgentIP\":\"10.0.84.208\",\"DstPort\":9154,\"Interface\":\"98d610ffb34ea2c\",\"SrcK8S_Name\":\"prometheus-k8s-0\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:80:02:01\",\"SrcPort\":57458,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-ingress", + "DstK8S_OwnerName": "router-default", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-console", + "FlowDirection": "0", + "SrcK8S_OwnerName": "console", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012803000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcPort\":8443,\"DstMac\":\"0A:58:0A:83:00:08\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965012803,\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"router-default-5475f6bbc4-s5w5h\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":49494,\"Flags\":16,\"SrcAddr\":\"10.128.0.117\",\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"DstAddr\":\"10.131.0.8\",\"PktDropLatestFlags\":16,\"Etype\":2048,\"Interface\":\"ens5\",\"SrcK8S_Name\":\"console-f74d4f8c4-4lk65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"AgentIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"DstK8S_HostIP\":\"10.0.45.84\",\"Proto\":6,\"IfDirection\":0,\"TimeFlowEndMs\":1696965012803,\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-ingress", + "FlowDirection": "0", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "router-default", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-ingress-canary", + "SrcK8S_OwnerName": "ingress-canary", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965012927000064", + "{\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"router-default-5475f6bbc4-pf2s8\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.128.2.5\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ingress-canary-rwnhq\",\"Proto\":6,\"TimeFlowEndMs\":1696965012927,\"DstPort\":58784,\"Bytes\":74,\"Flags\":256,\"Interface\":\"genev_sys_6081\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"SrcAddr\":\"10.129.2.6\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"TimeFlowStartMs\":1696965012927,\"IfDirection\":0,\"AgentIP\":\"10.0.84.208\",\"Etype\":2048,\"SrcPort\":8080,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "router-default", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-ingress-canary", + "SrcK8S_OwnerName": "ingress-canary", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-ingress", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965012700000000", + "{\"DstMac\":\"0A:58:0A:83:00:08\",\"Etype\":2048,\"DstPort\":39260,\"DstK8S_Name\":\"router-default-5475f6bbc4-s5w5h\",\"SrcPort\":8080,\"Packets\":1,\"Flags\":256,\"IfDirection\":1,\"Interface\":\"99982eea42ddd43\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965012700,\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"ingress-canary-gsv8v\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":74,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012700,\"DstAddr\":\"10.131.0.8\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"SrcMac\":\"0A:58:0A:83:00:05\",\"Proto\":6,\"SrcAddr\":\"10.131.0.5\",\"SrcK8S_HostIP\":\"10.0.45.84\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ingress-canary", + "SrcK8S_Namespace": "openshift-ingress", + "SrcK8S_OwnerName": "router-default", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-ingress-canary", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965012747000064", + "{\"IfDirection\":0,\"SrcPort\":53464,\"Packets\":1,\"TimeFlowEndMs\":1696965012747,\"TimeReceived\":1696965014,\"DstK8S_Name\":\"ingress-canary-rwnhq\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":8080,\"Proto\":6,\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcAddr\":\"10.131.0.8\",\"Flags\":1024,\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965012747,\"Etype\":2048,\"SrcK8S_Name\":\"router-default-5475f6bbc4-s5w5h\",\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"DaemonSet\",\"DstK8S_HostIP\":\"10.0.18.124\",\"Interface\":\"genev_sys_6081\",\"DstAddr\":\"10.129.2.6\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-insights", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "insights-operator", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965012475000064", + "{\"TimeFlowEndMs\":1696965012475,\"SrcPort\":55580,\"Interface\":\"ens5\",\"SrcMac\":\"0A:58:0A:82:00:01\",\"DstK8S_Name\":\"insights-operator-757f5b9566-qj49p\",\"AgentIP\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965012,\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965012475,\"SrcK8S_Name\":\"prometheus-k8s-0\",\"IfDirection\":0,\"Etype\":2048,\"PktDropLatestFlags\":16,\"DstPort\":8443,\"Flags\":16,\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Deployment\",\"DstAddr\":\"10.130.0.13\",\"Proto\":6,\"DstMac\":\"0A:58:0A:82:00:0D\",\"SrcAddr\":\"10.128.2.16\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "community-operators", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "packageserver" + }, + "values": [ + [ + "1696965014105999872", + "{\"DstAddr\":\"10.129.0.113\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"CatalogSource\",\"Bytes\":6575,\"DstPort\":50051,\"Proto\":6,\"Interface\":\"47f5916aa7b6fb8\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:0A:81:00:71\",\"TimeReceived\":1696965015,\"IfDirection\":1,\"DstK8S_Name\":\"community-operators-6p2gv\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Packets\":82,\"SrcPort\":60034,\"TimeFlowEndMs\":1696965014106,\"SrcAddr\":\"10.129.0.11\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"TimeFlowStartMs\":1696965012183,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-marketplace", + "Duplicate": "false", + "FlowDirection": "1", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "community-operators", + "DstK8S_Type": "Service", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "packageserver", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014116999936", + "{\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstAddr\":\"172.30.47.181\",\"SrcMac\":\"0A:58:0A:81:00:0B\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"Interface\":\"a4e4d805138b1c9\",\"SrcAddr\":\"10.129.0.11\",\"Bytes\":8017,\"TimeFlowStartMs\":1696965012176,\"Packets\":89,\"DstMac\":\"0A:58:0A:81:00:01\",\"DstK8S_OwnerType\":\"Service\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"community-operators\",\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstPort\":50051,\"TimeFlowEndMs\":1696965014117,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":60034,\"Proto\":6,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":0}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "catalog-operator", + "DstK8S_OwnerName": "qe-unreleased-testing", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager" + }, + "values": [ + [ + "1696965012960999936", + "{\"Etype\":2048,\"TimeReceived\":1696965013,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965012961,\"PktDropBytes\":32,\"AgentIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"CatalogSource\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.130.0.14\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.128.2.22\",\"SrcPort\":49270,\"PktDropPackets\":1,\"Interface\":\"ens5\",\"DstMac\":\"0A:58:0A:80:02:16\",\"TimeFlowEndMs\":1696965012961,\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_Name\":\"catalog-operator-64ddc5c466-t4ngf\",\"PktDropLatestFlags\":16,\"DstPort\":50051,\"Proto\":6,\"SrcMac\":\"0A:58:0A:80:02:01\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_OwnerName": "qe-unreleased-testing", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "packageserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014638000128", + "{\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcPort\":55652,\"DstK8S_OwnerType\":\"CatalogSource\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":90,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstPort\":50051,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":1,\"SrcMac\":\"0A:58:A8:FE:00:04\",\"Bytes\":7756,\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"TimeFlowEndMs\":1696965014638,\"SrcAddr\":\"10.129.0.11\",\"Interface\":\"genev_sys_6081\",\"TimeFlowStartMs\":1696965011367,\"DstAddr\":\"10.128.2.22\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_Type": "Pod", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "qe-unreleased-testing", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "catalog-operator", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012985999872", + "{\"TimeFlowEndMs\":1696965012986,\"DstPort\":50051,\"DstAddr\":\"10.128.2.22\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcPort\":49270,\"Bytes\":66,\"SrcMac\":\"0A:58:A8:FE:00:02\",\"DstK8S_OwnerType\":\"CatalogSource\",\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.89.254\",\"IfDirection\":0,\"Packets\":1,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"SrcAddr\":\"10.130.0.14\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012986,\"SrcK8S_Name\":\"catalog-operator-64ddc5c466-t4ngf\",\"Interface\":\"genev_sys_6081\",\"AgentIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "qe-unreleased-testing", + "FlowDirection": "0", + "Duplicate": "true", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "packageserver", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013513999872", + "{\"DstPort\":50051,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"CatalogSource\",\"SrcAddr\":\"10.129.0.11\",\"TimeFlowEndMs\":1696965013514,\"IfDirection\":0,\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstAddr\":\"10.128.2.22\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"0A:58:A8:FE:00:04\",\"Bytes\":4818,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":58,\"AgentIP\":\"10.0.84.208\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"SrcPort\":55652,\"Proto\":6,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"genev_sys_6081\",\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"TimeFlowStartMs\":1696965011380,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013332999936", + "{\"SrcPort\":55652,\"Bytes\":4002,\"DstK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013333,\"DstPort\":50051,\"Packets\":47,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1696965011489,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.128.2.22\",\"DstK8S_OwnerType\":\"CatalogSource\",\"AgentIP\":\"10.0.84.208\",\"Etype\":2048,\"IfDirection\":1,\"SrcAddr\":\"10.129.0.11\",\"TimeReceived\":1696965013,\"DstMac\":\"0A:58:0A:80:02:16\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"1dd3c81374c0162\",\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "qe-unreleased-testing", + "DstK8S_Type": "Service", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "packageserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965014665999872", + "{\"Bytes\":7896,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"Etype\":2048,\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_OwnerType\":\"Service\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"qe-unreleased-testing\",\"TimeFlowStartMs\":1696965011490,\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeFlowEndMs\":1696965014666,\"DstMac\":\"0A:58:0A:81:00:01\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":50051,\"SrcAddr\":\"10.129.0.11\",\"Interface\":\"a4e4d805138b1c9\",\"Packets\":97,\"SrcMac\":\"0A:58:0A:81:00:0B\",\"SrcPort\":55652,\"TimeReceived\":1696965015,\"DstAddr\":\"172.30.25.205\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-marketplace", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "packageserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "redhat-marketplace", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965014312000000", + "{\"TimeFlowStartMs\":1696965014135,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"DstK8S_Name\":\"redhat-marketplace-z5v9g\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":50051,\"TimeFlowEndMs\":1696965014312,\"SrcAddr\":\"10.129.0.11\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":1,\"Interface\":\"genev_sys_6081\",\"SrcPort\":48474,\"Bytes\":390,\"SrcMac\":\"0A:58:A8:FE:00:04\",\"Packets\":5,\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"CatalogSource\",\"DstAddr\":\"10.128.0.14\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:58:A8:FE:00:03\",\"Etype\":2048,\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeReceived\":1696965015,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "DstK8S_OwnerName": "redhat-marketplace", + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Service", + "SrcK8S_OwnerName": "packageserver" + }, + "values": [ + [ + "1696965014305999872", + "{\"DstAddr\":\"172.30.66.127\",\"TimeReceived\":1696965015,\"SrcPort\":48474,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"Packets\":7,\"DstK8S_Name\":\"redhat-marketplace\",\"Proto\":6,\"DstPort\":50051,\"SrcAddr\":\"10.129.0.11\",\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"Etype\":2048,\"Bytes\":965,\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1696965014141,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Service\",\"Interface\":\"a4e4d805138b1c9\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"0A:58:0A:81:00:01\",\"SrcMac\":\"0A:58:0A:81:00:0B\",\"Flags\":16,\"TimeFlowEndMs\":1696965014306,\"IfDirection\":0}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-marketplace", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "packageserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "redhat-operators", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965015348999936", + "{\"IfDirection\":1,\"Etype\":2048,\"Flags\":16,\"SrcMac\":\"0A:58:A8:FE:00:04\",\"DstK8S_Name\":\"redhat-operators-zz2wd\",\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstPort\":50051,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"Packets\":7,\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"SrcPort\":45200,\"Proto\":6,\"DstMac\":\"0A:58:A8:FE:00:03\",\"Bytes\":462,\"TimeFlowStartMs\":1696965014488,\"SrcAddr\":\"10.129.0.11\",\"TimeFlowEndMs\":1696965015349,\"DstAddr\":\"10.128.0.11\",\"DstK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"CatalogSource\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "redhat-operators", + "DstK8S_Type": "Service", + "FlowDirection": "1", + "SrcK8S_OwnerName": "packageserver", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-marketplace", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965015227000064", + "{\"Packets\":5,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"redhat-operators\",\"DstPort\":50051,\"SrcK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965015227,\"SrcPort\":45200,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Service\",\"Interface\":\"a4e4d805138b1c9\",\"SrcK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeReceived\":1696965015,\"SrcMac\":\"0A:58:0A:81:00:0B\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.129.0.11\",\"Bytes\":330,\"DstAddr\":\"172.30.226.68\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014924,\"DstMac\":\"0A:58:0A:81:00:01\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "SrcK8S_OwnerName": "aws-ebs-csi-driver-controller", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-cluster-csi-drivers" + }, + "values": [ + [ + "1696965012803000064", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcPort\":9206,\"DstMac\":\"0A:58:0A:80:02:10\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"PktDropPackets\":1,\"DstK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"TimeFlowEndMs\":1696965012803,\"SrcAddr\":\"10.128.0.20\",\"PktDropBytes\":32,\"DstPort\":55844,\"SrcK8S_OwnerType\":\"Deployment\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstAddr\":\"10.128.2.16\",\"Etype\":2048,\"TimeFlowStartMs\":1696965012803,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"aws-ebs-csi-driver-controller-55b6bb5f69-8x86n\",\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"TimeReceived\":1696965013}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "prometheus-k8s", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-controller-manager", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_Type": "Pod", + "SrcK8S_OwnerName": "controller-manager", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013019000064", + "{\"DstK8S_Name\":\"prometheus-k8s-1\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstK8S_OwnerType\":\"StatefulSet\",\"DstPort\":43922,\"Etype\":2048,\"DstAddr\":\"10.131.0.16\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcPort\":8443,\"IfDirection\":1,\"DstMac\":\"0A:58:0A:83:00:10\",\"SrcK8S_Name\":\"controller-manager-59d75f4df5-wwjd5\",\"Flags\":16,\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013019,\"AgentIP\":\"10.0.45.84\",\"Interface\":\"f8cb4acfe3f2797\",\"Bytes\":4184,\"TimeFlowEndMs\":1696965013019,\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcAddr\":\"10.130.0.60\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeReceived\":1696965013}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "SrcK8S_OwnerName": "kube-apiserver-operator", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013211000064", + "{\"SrcAddr\":\"10.130.0.22\",\"SrcMac\":\"0A:58:A8:FE:00:02\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"kube-apiserver-operator-5dcd56467d-dd2k6\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowStartMs\":1696965013211,\"DstMac\":\"0A:58:A8:FE:00:05\",\"Interface\":\"genev_sys_6081\",\"DstAddr\":\"10.131.0.16\",\"AgentIP\":\"10.0.45.84\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcPort\":8443,\"DstPort\":38886,\"DstK8S_Name\":\"prometheus-k8s-1\",\"Bytes\":4193,\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965013211,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "thanos-querier", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "DstK8S_OwnerName": "prometheus-k8s", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012475000064", + "{\"Etype\":2048,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"StatefulSet\",\"IfDirection\":0,\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965012475,\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"prometheus-k8s-1\",\"SrcK8S_Name\":\"thanos-querier-bb5c9d6f5-7f5lw\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.15\",\"TimeFlowEndMs\":1696965012475,\"DstPort\":55656,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965013,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcPort\":9094,\"DstAddr\":\"10.131.0.16\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstMac\":\"0A:58:0A:83:00:10\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-multus", + "SrcK8S_OwnerName": "multus-admission-controller", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012960999936", + "{\"SrcPort\":8443,\"SrcK8S_Name\":\"multus-admission-controller-77fdd6bcb7-kfc5j\",\"Etype\":2048,\"DstK8S_Name\":\"prometheus-k8s-0\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":42596,\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965012961,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Interface\":\"ens5\",\"SrcAddr\":\"10.130.0.42\",\"Proto\":6,\"DstAddr\":\"10.128.2.16\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"DstMac\":\"0A:58:0A:80:02:10\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965013,\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965012961,\"IfDirection\":0,\"PktDropBytes\":32}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_OwnerName": "catalog-operator", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + "1696965013472999936", + "{\"SrcK8S_OwnerType\":\"Deployment\",\"PktDropPackets\":1,\"DstK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"TimeFlowStartMs\":1696965013473,\"AgentIP\":\"10.0.84.208\",\"DstMac\":\"0A:58:0A:80:02:10\",\"PktDropBytes\":32,\"SrcAddr\":\"10.130.0.14\",\"PktDropLatestFlags\":16,\"TimeReceived\":1696965013,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcPort\":8443,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.84.208\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"DstAddr\":\"10.128.2.16\",\"Interface\":\"ens5\",\"DstPort\":37262,\"SrcK8S_Name\":\"catalog-operator-64ddc5c466-t4ngf\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"TimeFlowEndMs\":1696965013473,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965012566000128", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":4193,\"TimeReceived\":1696965013,\"DstK8S_HostIP\":\"10.0.84.208\",\"AgentIP\":\"10.0.84.208\",\"DstMac\":\"0A:58:0A:80:02:10\",\"DstPort\":52692,\"Etype\":2048,\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"98d610ffb34ea2c\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":6443,\"DstK8S_Name\":\"prometheus-k8s-0\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"StatefulSet\",\"DstAddr\":\"10.128.2.16\",\"TimeFlowStartMs\":1696965012566,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.14.70\",\"Proto\":6,\"Flags\":16,\"TimeFlowEndMs\":1696965012566,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Packets\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012448000000", + "{\"SrcPort\":10250,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"prometheus-k8s-1\",\"PktDropPackets\":1,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowEndMs\":1696965012448,\"DstMac\":\"0A:58:0A:83:00:10\",\"SrcMac\":\"0A:58:0A:83:00:01\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"StatefulSet\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Flags\":16,\"TimeFlowStartMs\":1696965012448,\"SrcAddr\":\"10.0.89.254\",\"Interface\":\"ens5\",\"AgentIP\":\"10.0.45.84\",\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstAddr\":\"10.131.0.16\",\"DstPort\":35380,\"TimeReceived\":1696965013}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-compactor", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013119000064", + "{\"SrcK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013119,\"Etype\":2048,\"DstK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"DstAddr\":\"10.128.2.16\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"DstPort\":56864,\"SrcPort\":3100,\"IfDirection\":1,\"AgentIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"Interface\":\"genev_sys_6081\",\"TimeFlowEndMs\":1696965013119,\"Bytes\":124,\"Packets\":1,\"SrcK8S_Name\":\"lokistack-compactor-0\",\"Proto\":6,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.20\",\"DstMac\":\"0A:58:A8:FE:00:06\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "DstK8S_Namespace": "openshift-monitoring", + "Duplicate": "false", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965013008999936", + "{\"Interface\":\"genev_sys_6081\",\"SrcAddr\":\"10.129.2.17\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"TimeReceived\":1696965014,\"TimeFlowEndMs\":1696965013009,\"DstMac\":\"0A:58:A8:FE:00:05\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"prometheus-k8s-1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcPort\":3100,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"DstAddr\":\"10.131.0.16\",\"TimeFlowStartMs\":1696965013009,\"IfDirection\":1,\"DstPort\":36714,\"DstK8S_OwnerType\":\"StatefulSet\",\"AgentIP\":\"10.0.18.124\",\"Flags\":16,\"Proto\":6,\"Bytes\":4193,\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "SrcK8S_OwnerName": "oauth-openshift", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-authentication" + }, + "values": [ + [ + "1696965013505999872", + "{\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"StatefulSet\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"Bytes\":4184,\"SrcMac\":\"0A:58:A8:FE:00:04\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Packets\":1,\"DstK8S_Name\":\"prometheus-k8s-1\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_Name\":\"oauth-openshift-85b5766b97-jpvw2\",\"TimeFlowStartMs\":1696965013506,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013506,\"DstPort\":42972,\"SrcPort\":6443,\"IfDirection\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.16\",\"SrcAddr\":\"10.129.0.62\",\"Flags\":16,\"TimeReceived\":1696965015}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "SrcK8S_Type": "Pod", + "SrcK8S_OwnerName": "lokistack-gateway", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2" + }, + "values": [ + [ + "1696965013382000128", + "{\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstMac\":\"0A:58:0A:83:00:10\",\"DstAddr\":\"10.131.0.16\",\"SrcMac\":\"0A:58:0A:83:00:15\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965013382,\"AgentIP\":\"10.0.45.84\",\"SrcPort\":8083,\"IfDirection\":0,\"TimeFlowStartMs\":1696965013382,\"PktDropLatestFlags\":16,\"Interface\":\"ens5\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":34602,\"TimeReceived\":1696965013,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"Etype\":2048,\"SrcAddr\":\"10.131.0.21\",\"Flags\":16,\"DstK8S_Name\":\"prometheus-k8s-1\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"lokistack-gateway-856f4fb587-f2hk6\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s" + }, + "values": [ + [ + "1696965012985999872", + "{\"AgentIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965012986,\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"prometheus-k8s-0\",\"DstK8S_OwnerType\":\"StatefulSet\",\"DstK8S_HostIP\":\"10.0.84.208\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"Proto\":6,\"DstPort\":51784,\"TimeReceived\":1696965013,\"SrcPort\":10250,\"SrcAddr\":\"10.0.84.208\",\"SrcMac\":\"A2:02:A3:E5:01:A8\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"PktDropLatestFlags\":16,\"TimeFlowEndMs\":1696965012986,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:80:02:10\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstAddr\":\"10.128.2.16\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-authentication", + "SrcK8S_OwnerName": "oauth-openshift", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "prometheus-k8s", + "Duplicate": "true", + "FlowDirection": "1", + "DstK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + "1696965013505999872", + "{\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.131.0.16\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcPort\":6443,\"Packets\":1,\"Flags\":16,\"Proto\":6,\"Bytes\":4184,\"SrcK8S_Name\":\"oauth-openshift-85b5766b97-jpvw2\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"prometheus-k8s-1\",\"SrcAddr\":\"10.129.0.62\",\"SrcMac\":\"0A:58:0A:81:00:3E\",\"DstK8S_OwnerType\":\"StatefulSet\",\"TimeFlowStartMs\":1696965013506,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965015,\"Etype\":2048,\"TimeFlowEndMs\":1696965013506,\"IfDirection\":0,\"DstMac\":\"0A:58:0A:81:00:01\",\"Interface\":\"ac903690d92e25d\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":42972}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-multus", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "multus-admission-controller", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + "1696965012960999936", + "{\"Flags\":16,\"SrcAddr\":\"10.128.2.16\",\"DstK8S_Name\":\"multus-admission-controller-77fdd6bcb7-kfc5j\",\"DstPort\":8443,\"DstAddr\":\"10.130.0.42\",\"SrcK8S_Name\":\"prometheus-k8s-0\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"98d610ffb34ea2c\",\"TimeFlowStartMs\":1696965012961,\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.84.208\",\"Proto\":6,\"DstMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcMac\":\"0A:58:0A:80:02:10\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Deployment\",\"TimeFlowEndMs\":1696965012961,\"SrcPort\":42596,\"DstK8S_HostIP\":\"10.0.89.254\",\"Bytes\":66,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-netobserv-operator", + "DstK8S_OwnerName": "netobserv-controller-manager", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013380999936", + "{\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"TimeFlowEndMs\":1696965013381,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":8443,\"TimeFlowStartMs\":1696965013381,\"SrcAddr\":\"10.131.0.16\",\"AgentIP\":\"10.0.84.208\",\"SrcPort\":44922,\"Proto\":6,\"Interface\":\"ens5\",\"PktDropLatestFlags\":16,\"SrcMac\":\"0A:58:0A:80:02:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.128.2.29\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"0A:58:0A:80:02:1D\",\"PktDropBytes\":32,\"TimeReceived\":1696965013,\"PktDropPackets\":1,\"Etype\":2048,\"SrcK8S_Name\":\"prometheus-k8s-1\",\"Flags\":16,\"DstK8S_Name\":\"netobserv-controller-manager-6bdf675664-n2kjz\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "apiserver", + "Duplicate": "false", + "SrcK8S_Namespace": "default", + "SrcK8S_OwnerName": "kubernetes", + "SrcK8S_Type": "Service", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-oauth-apiserver", + "DstK8S_Type": "Pod", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965012798000128", + "{\"SrcPort\":443,\"DstMac\":\"0A:58:0A:81:00:32\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":280,\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.129.0.50\",\"TimeFlowStartMs\":1696965012798,\"Packets\":1,\"DstK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"Proto\":6,\"DstPort\":59852,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"Etype\":2048,\"Interface\":\"22705feb9fb802a\",\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"IfDirection\":1,\"Flags\":16,\"SrcK8S_OwnerType\":\"Service\",\"TimeFlowEndMs\":1696965012798,\"SrcAddr\":\"172.30.0.1\",\"SrcK8S_Name\":\"kubernetes\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-oauth-apiserver", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965015035000064", + "{\"Etype\":2048,\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:81:00:32\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"ens5\",\"SrcPort\":42334,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Deployment\",\"PktDropBytes\":32,\"SrcMac\":\"0A:58:0A:81:00:01\",\"TimeFlowEndMs\":1696965015035,\"DstPort\":8443,\"TimeFlowStartMs\":1696965015035,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.129.0.50\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.128.2.16\",\"PktDropPackets\":1,\"SrcK8S_Name\":\"prometheus-k8s-0\",\"Flags\":16,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-oauth-apiserver", + "DstK8S_OwnerName": "apiserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013766000128", + "{\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":35364,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"ovn-k8s-mp0\",\"DstPort\":8443,\"DstAddr\":\"10.129.0.50\",\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"DstK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"Bytes\":139,\"Etype\":2048,\"TimeFlowStartMs\":1696965013766,\"DstK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"SrcAddr\":\"10.129.0.2\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:58:0A:81:00:32\",\"TimeFlowEndMs\":1696965013766,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013564000000", + "{\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"Etype\":2048,\"SrcPort\":2379,\"TimeFlowEndMs\":1696965013564,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.129.0.50\",\"Interface\":\"ens5\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"TimeReceived\":1696965015,\"IfDirection\":0,\"TimeFlowStartMs\":1696965013564,\"DstPort\":40522,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:81:00:32\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Deployment\",\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965013564000000", + "{\"DstK8S_OwnerType\":\"Deployment\",\"PktDropLatestFlags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"Flags\":16,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":2379,\"TimeFlowStartMs\":1696965013564,\"DstAddr\":\"10.129.0.50\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965013564,\"DstMac\":\"0A:58:0A:81:00:32\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstPort\":40752,\"PktDropBytes\":32,\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-oauth-apiserver", + "DstK8S_OwnerName": "apiserver" + }, + "values": [ + [ + "1696965012448000000", + "{\"TimeFlowEndMs\":1696965012448,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965012,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.130.0.62\",\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012448,\"Proto\":6,\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"DstMac\":\"0A:58:0A:82:00:3E\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":43332,\"DstK8S_HostIP\":\"10.0.89.254\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"AA:90:3E:3B:3B:6F\",\"AgentIP\":\"10.0.89.254\",\"Etype\":2048,\"DstK8S_Name\":\"apiserver-7c9977dbbc-7jcr4\",\"Flags\":16,\"SrcPort\":2379}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "catalog-operator", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_OwnerName": "qe-unreleased-testing", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965012960999936", + "{\"SrcPort\":50051,\"SrcMac\":\"0A:58:A8:FE:00:06\",\"Proto\":6,\"SrcK8S_OwnerType\":\"CatalogSource\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048,\"DstK8S_Name\":\"catalog-operator-64ddc5c466-t4ngf\",\"DstMac\":\"0A:58:A8:FE:00:02\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":1,\"Interface\":\"genev_sys_6081\",\"SrcAddr\":\"10.128.2.22\",\"DstK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.130.0.14\",\"TimeFlowStartMs\":1696965012961,\"DstK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965013,\"Packets\":1,\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"TimeFlowEndMs\":1696965012961,\"DstPort\":49270,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "community-operators", + "SrcK8S_Type": "Service", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-marketplace", + "DstK8S_OwnerName": "packageserver", + "Duplicate": "false", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014108000000", + "{\"Proto\":6,\"DstPort\":60034,\"SrcPort\":50051,\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"IfDirection\":1,\"SrcAddr\":\"172.30.47.181\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":1446613,\"Flags\":16,\"Etype\":2048,\"DstK8S_OwnerType\":\"Deployment\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"a4e4d805138b1c9\",\"DstAddr\":\"10.129.0.11\",\"SrcK8S_Name\":\"community-operators\",\"SrcMac\":\"0A:58:0A:81:00:71\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":108,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Service\",\"DstMac\":\"0A:58:0A:81:00:0B\",\"TimeFlowEndMs\":1696965014108,\"TimeFlowStartMs\":1696965012201,\"TimeReceived\":1696965015}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "packageserver", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_Type": "Pod", + "SrcK8S_OwnerName": "qe-unreleased-testing" + }, + "values": [ + [ + "1696965014649999872", + "{\"Packets\":146,\"DstK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"SrcK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"DstK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"DstMac\":\"0A:58:A8:FE:00:04\",\"DstPort\":55652,\"Bytes\":1210208,\"Proto\":6,\"SrcAddr\":\"10.128.2.22\",\"DstAddr\":\"10.129.0.11\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965014650,\"TimeReceived\":1696965015,\"Interface\":\"genev_sys_6081\",\"TimeFlowStartMs\":1696965011370,\"SrcK8S_OwnerType\":\"CatalogSource\",\"IfDirection\":0,\"Etype\":2048,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":50051,\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "SrcK8S_OwnerName": "redhat-marketplace", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "packageserver", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-marketplace" + }, + "values": [ + [ + "1696965014323000064", + "{\"Proto\":6,\"DstK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"SrcK8S_Name\":\"redhat-marketplace-z5v9g\",\"SrcAddr\":\"10.128.0.14\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014168,\"SrcMac\":\"0A:58:A8:FE:00:03\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"genev_sys_6081\",\"DstAddr\":\"10.129.0.11\",\"SrcPort\":50051,\"Packets\":20,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"CatalogSource\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:58:A8:FE:00:04\",\"TimeFlowEndMs\":1696965014323,\"IfDirection\":0,\"DstPort\":48474,\"Bytes\":164104,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_OwnerName": "redhat-marketplace", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "packageserver", + "DstK8S_Type": "Pod", + "SrcK8S_Type": "Service" + }, + "values": [ + [ + "1696965014316999936", + "{\"DstAddr\":\"10.129.0.11\",\"Interface\":\"a4e4d805138b1c9\",\"TimeReceived\":1696965015,\"Bytes\":163207,\"SrcK8S_Name\":\"redhat-marketplace\",\"Packets\":10,\"Etype\":2048,\"TimeFlowEndMs\":1696965014317,\"Proto\":6,\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":48474,\"Flags\":16,\"SrcK8S_OwnerType\":\"Service\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":50051,\"SrcMac\":\"0A:58:0A:81:00:01\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"172.30.66.127\",\"TimeFlowStartMs\":1696965014292,\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"0A:58:0A:81:00:0B\",\"IfDirection\":1}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Pod", + "Duplicate": "false", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "packageserver", + "FlowDirection": "0", + "SrcK8S_OwnerName": "redhat-operators" + }, + "values": [ + [ + "1696965015264999936", + "{\"IfDirection\":0,\"SrcK8S_Name\":\"redhat-operators-zz2wd\",\"Interface\":\"genev_sys_6081\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965015265,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965014446,\"Etype\":2048,\"SrcAddr\":\"10.128.0.11\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":50051,\"DstMac\":\"0A:58:A8:FE:00:04\",\"TimeReceived\":1696965015,\"Packets\":11,\"Bytes\":10466,\"DstK8S_OwnerType\":\"Deployment\",\"DstAddr\":\"10.129.0.11\",\"DstPort\":45200,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:A8:FE:00:03\",\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"SrcK8S_OwnerType\":\"CatalogSource\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_OwnerName": "qe-unreleased-testing", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "packageserver", + "DstK8S_Type": "Pod" + }, + "values": [ + [ + "1696965013428000000", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:A8:FE:00:06\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"DstPort\":55652,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"CatalogSource\",\"TimeFlowStartMs\":1696965011383,\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"TimeFlowEndMs\":1696965013428,\"Packets\":33,\"DstMac\":\"0A:58:A8:FE:00:04\",\"IfDirection\":1,\"SrcPort\":50051,\"TimeReceived\":1696965013,\"Bytes\":23236,\"DstK8S_OwnerType\":\"Deployment\",\"Proto\":6,\"DstAddr\":\"10.129.0.11\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.128.2.22\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"Flags\":16}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "community-operators", + "DstK8S_OwnerName": "packageserver", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014129999872", + "{\"Interface\":\"47f5916aa7b6fb8\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":60034,\"Proto\":6,\"SrcMac\":\"0A:58:0A:81:00:71\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_OwnerType\":\"CatalogSource\",\"TimeFlowEndMs\":1696965014130,\"Flags\":16,\"SrcK8S_Name\":\"community-operators-6p2gv\",\"SrcAddr\":\"10.129.0.113\",\"DstAddr\":\"10.129.0.11\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Bytes\":1412946,\"TimeReceived\":1696965015,\"Packets\":128,\"SrcPort\":50051,\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstMac\":\"0A:58:0A:81:00:0B\",\"Etype\":2048,\"TimeFlowStartMs\":1696965012183,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_Type": "Service", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "DstK8S_OwnerName": "packageserver", + "Duplicate": "true", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_OwnerName": "qe-unreleased-testing" + }, + "values": [ + [ + "1696965014665999872", + "{\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Deployment\",\"Bytes\":863737,\"SrcMac\":\"0A:58:0A:81:00:01\",\"Flags\":16,\"Etype\":2048,\"Packets\":118,\"SrcK8S_Name\":\"qe-unreleased-testing\",\"Interface\":\"a4e4d805138b1c9\",\"DstAddr\":\"10.129.0.11\",\"TimeFlowStartMs\":1696965011490,\"TimeFlowEndMs\":1696965014666,\"Proto\":6,\"SrcPort\":50051,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstPort\":55652,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"172.30.25.205\",\"DstMac\":\"0A:58:0A:81:00:0B\",\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Service\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "packageserver", + "DstK8S_Type": "Pod", + "FlowDirection": "0", + "SrcK8S_OwnerName": "redhat-operators", + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "Duplicate": "true", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_Type": "Service", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015214000128", + "{\"Etype\":2048,\"SrcK8S_OwnerType\":\"Service\",\"SrcPort\":50051,\"TimeReceived\":1696965015,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"Flags\":16,\"DstMac\":\"0A:58:0A:81:00:0B\",\"Interface\":\"a4e4d805138b1c9\",\"Bytes\":7169,\"TimeFlowEndMs\":1696965015214,\"AgentIP\":\"10.0.60.65\",\"DstPort\":45200,\"Proto\":6,\"SrcAddr\":\"172.30.226.68\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"TimeFlowStartMs\":1696965014422,\"Packets\":9,\"DstAddr\":\"10.129.0.11\",\"SrcK8S_Name\":\"redhat-operators\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "Duplicate": "true", + "SrcK8S_Namespace": "openshift-marketplace", + "SrcK8S_OwnerName": "qe-unreleased-testing", + "SrcK8S_Type": "Pod", + "DstK8S_OwnerName": "packageserver", + "DstK8S_Type": "Pod", + "FlowDirection": "1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013449999872", + "{\"SrcMac\":\"0A:58:0A:80:02:16\",\"TimeFlowEndMs\":1696965013450,\"SrcK8S_OwnerType\":\"CatalogSource\",\"Flags\":16,\"DstMac\":\"0A:58:0A:80:02:01\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcPort\":50051,\"DstK8S_HostIP\":\"10.0.60.65\",\"Packets\":40,\"Proto\":6,\"SrcAddr\":\"10.128.2.22\",\"DstPort\":55652,\"AgentIP\":\"10.0.84.208\",\"DstAddr\":\"10.129.0.11\",\"Interface\":\"1dd3c81374c0162\",\"TimeFlowStartMs\":1696965011353,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"packageserver-76b8587f89-jjj7s\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"qe-unreleased-testing-m5cb2\",\"IfDirection\":0,\"Bytes\":25448}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "openshift-route-controller-manager", + "DstK8S_OwnerName": "route-controller-manager", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2" + }, + "values": [ + [ + "1696965014401999872", + "{\"SrcMac\":\"3A:E6:0C:3E:16:BC\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014402,\"DstK8S_Name\":\"route-controller-manager-7f6cc88b77-trnjq\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":8443,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":1,\"Flags\":16,\"DstK8S_OwnerType\":\"Deployment\",\"Bytes\":160,\"DstAddr\":\"10.129.0.43\",\"TimeFlowEndMs\":1696965014402,\"Interface\":\"ovn-k8s-mp0\",\"AgentIP\":\"10.0.60.65\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcAddr\":\"10.129.0.2\",\"DstMac\":\"0A:58:0A:81:00:2B\",\"Etype\":2048,\"SrcPort\":36842,\"TimeReceived\":1696965015}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965015267000064", + "{\"TimeReceived\":1696965015,\"Bytes\":66,\"Etype\":2048,\"DstPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965015267,\"SrcPort\":33930,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015267,\"IfDirection\":1,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\"}" + ], + [ + "1696965015204999936", + "{\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015205,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014501,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Interface\":\"ens5\",\"DstAddr\":\"10.0.14.70\",\"Etype\":2048,\"Packets\":5,\"SrcMac\":\"06:45:0B:D4:57:61\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"Bytes\":620,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":53623,\"DstPort\":6081,\"IfDirection\":1,\"Proto\":17,\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965015088999936", + "{\"SrcMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965010870,\"DstPort\":2380,\"SrcPort\":42844,\"Proto\":6,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":1,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":11,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965015089,\"DstMac\":\"06:D3:86:10:5C:57\",\"Bytes\":726}" + ], + [ + "1696965015081999872", + "{\"DstPort\":55568,\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965010789,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Proto\":6,\"Bytes\":1916,\"DstAddr\":\"10.0.14.70\",\"Packets\":12,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965015082,\"Interface\":\"ens5\",\"Etype\":2048,\"SrcPort\":2380,\"IfDirection\":1,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015}" + ], + [ + "1696965015078000128", + "{\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":42856,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"Bytes\":132,\"DstPort\":2380,\"DstAddr\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965013869,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015078,\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Packets\":2,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":1,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965015076000000", + "{\"DstAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":108,\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965015076,\"SrcPort\":2379,\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":1,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"SrcAddr\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.14.70\",\"Interface\":\"br-ex\",\"DstPort\":60140,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015076,\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"06:D3:86:10:5C:57\"}" + ], + [ + "1696965014819000064", + "{\"IfDirection\":1,\"TimeFlowEndMs\":1696965014819,\"SrcPort\":2379,\"Bytes\":112,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.60.65\",\"Packets\":1,\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.14.70\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstPort\":59804,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"Proto\":6,\"TimeFlowStartMs\":1696965014819,\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965014360999936", + "{\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014359,\"TimeFlowEndMs\":1696965014361,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":1,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"SrcPort\":34530,\"Packets\":3,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"Flags\":16,\"Bytes\":198}" + ], + [ + "1696965014312999936", + "{\"Proto\":17,\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":868,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965014313,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":7,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014146,\"SrcAddr\":\"10.0.60.65\",\"SrcPort\":27248,\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.14.70\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014246000128", + "{\"DstPort\":2379,\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965014246,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"TimeFlowEndMs\":1696965014246,\"SrcPort\":60982,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Bytes\":66,\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"Interface\":\"ens5\",\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.14.70\",\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014023000064", + "{\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.14.70\",\"DstPort\":60280,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcAddr\":\"10.0.60.65\",\"Bytes\":105,\"TimeFlowEndMs\":1696965014023,\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965014023,\"SrcMac\":\"06:45:0B:D4:57:61\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013918000128", + "{\"TimeFlowEndMs\":1696965013918,\"TimeFlowStartMs\":1696965013918,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"Bytes\":66,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":34328,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Packets\":1}" + ], + [ + "1696965013216999936", + "{\"TimeFlowStartMs\":1696965013217,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":1,\"AgentIP\":\"10.0.60.65\",\"SrcPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.14.70\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013217,\"DstK8S_HostIP\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Bytes\":105,\"Interface\":\"br-ex\",\"DstMac\":\"06:D3:86:10:5C:57\",\"DstPort\":36988}" + ], + [ + "1696965012801999872", + "{\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowEndMs\":1696965012802,\"DstAddr\":\"10.0.14.70\",\"Flags\":16,\"SrcPort\":2379,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":40464,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":66,\"DstMac\":\"06:D3:86:10:5C:57\",\"Packets\":1,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Proto\":6,\"TimeFlowStartMs\":1696965012802,\"IfDirection\":1,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965012751000064", + "{\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowStartMs\":1696965012751,\"DstPort\":2379,\"TimeFlowEndMs\":1696965012751,\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"Packets\":1,\"Flags\":16,\"IfDirection\":1,\"DstAddr\":\"10.0.14.70\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":34264,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":125,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965015212000000", + "{\"TimeReceived\":1696965015,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":53623,\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Bytes\":620,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015212,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"Proto\":17,\"TimeFlowStartMs\":1696965014739,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":5,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"Etype\":2048}" + ], + [ + "1696965014364999936", + "{\"Flags\":16,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"SrcPort\":42844,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965014365,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.60.65\",\"Interface\":\"ens5\",\"IfDirection\":1,\"Etype\":2048,\"DstPort\":2380,\"DstK8S_HostIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965010788,\"Packets\":12,\"DstAddr\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Bytes\":792,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"SrcMac\":\"06:45:0B:D4:57:61\"}" + ], + [ + "1696965014360999936", + "{\"DstAddr\":\"10.0.14.70\",\"IfDirection\":1,\"Bytes\":132,\"DstPort\":2379,\"Proto\":6,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.14.70\",\"Packets\":2,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965014361,\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":34530,\"SrcAddr\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014360,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965014316000000", + "{\"Packets\":10,\"TimeFlowEndMs\":1696965014316,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":27248,\"DstK8S_HostIP\":\"10.0.14.70\",\"Bytes\":1330,\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.14.70\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":17,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014141}" + ], + [ + "1696965014276999936", + "{\"DstPort\":55568,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014277,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Proto\":6,\"SrcAddr\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":2450,\"Packets\":15,\"TimeReceived\":1696965015,\"IfDirection\":1,\"AgentIP\":\"10.0.60.65\",\"SrcPort\":2380,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965010907,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013216999936", + "{\"TimeReceived\":1696965015,\"Bytes\":105,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":1,\"SrcMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013217,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013217,\"DstPort\":36988,\"Packets\":1,\"DstAddr\":\"10.0.14.70\",\"Etype\":2048,\"Interface\":\"ens5\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965014060999936", + "{\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcPort\":7936,\"TimeReceived\":1696965014,\"DstAddr\":\"10.0.18.124\",\"Proto\":17,\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014061,\"Bytes\":124,\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965014061,\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013846000128", + "{\"IfDirection\":0,\"Proto\":17,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Etype\":2048,\"Bytes\":250,\"SrcPort\":63110,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstAddr\":\"10.0.18.124\",\"Interface\":\"br-ex\",\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013846,\"AgentIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013846}" + ], + [ + "1696965013639000064", + "{\"Interface\":\"ens5\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013639,\"Proto\":17,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcAddr\":\"10.0.45.84\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcPort\":53969,\"TimeReceived\":1696965014,\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeFlowStartMs\":1696965013639,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"IfDirection\":0,\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013491000064", + "{\"Etype\":2048,\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Bytes\":132,\"SrcPort\":29157,\"Proto\":17,\"SrcAddr\":\"10.0.45.84\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965014,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013491,\"DstAddr\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013491}" + ], + [ + "1696965013439000064", + "{\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013439,\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":45464,\"Interface\":\"ens5\",\"Etype\":2048,\"Proto\":17,\"Bytes\":132,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowStartMs\":1696965013439,\"IfDirection\":0,\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\"}" + ], + [ + "1696965013391000064", + "{\"DstPort\":6081,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":140,\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.45.84\",\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965013391,\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"IfDirection\":0,\"SrcPort\":43801,\"Etype\":2048,\"TimeFlowStartMs\":1696965013391,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"Proto\":17}" + ], + [ + "1696965013009999872", + "{\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":54792,\"TimeReceived\":1696965014,\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"DstAddr\":\"10.0.18.124\",\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowStartMs\":1696965013010,\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965013010,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":172,\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.45.84\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014289999872", + "{\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Bytes\":132,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"Packets\":1,\"TimeReceived\":1696965014,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014290,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":7145,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"SrcAddr\":\"10.0.84.208\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965014290}" + ], + [ + "1696965014235000064", + "{\"IfDirection\":0,\"Interface\":\"br-ex\",\"SrcPort\":56406,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstPort\":9537,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcAddr\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965014235,\"DstAddr\":\"10.0.18.124\",\"Bytes\":66,\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Flags\":16,\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowStartMs\":1696965014235,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"Proto\":6}" + ], + [ + "1696965014060999936", + "{\"SrcPort\":46627,\"SrcAddr\":\"10.0.84.208\",\"Proto\":17,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":6081,\"TimeFlowStartMs\":1696965014061,\"TimeFlowEndMs\":1696965014061,\"Etype\":2048,\"DstAddr\":\"10.0.18.124\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Packets\":1,\"Bytes\":124,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"AgentIP\":\"10.0.18.124\",\"DstMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013863000064", + "{\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowEndMs\":1696965013863,\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013863,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":27260,\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"DstPort\":6081,\"TimeReceived\":1696965014,\"Bytes\":271,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"Proto\":17,\"SrcAddr\":\"10.0.84.208\",\"DstAddr\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\"}" + ], + [ + "1696965013747000064", + "{\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":124,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"DstAddr\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013747,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965014,\"DstMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":59740,\"TimeFlowEndMs\":1696965013747,\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965013545999872", + "{\"SrcPort\":57441,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965013546,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.0.18.124\",\"DstPort\":6081,\"DstK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"Bytes\":140,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013546,\"Proto\":17,\"TimeReceived\":1696965014,\"SrcAddr\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"02:E7:EA:46:6A:33\"}" + ], + [ + "1696965013491000064", + "{\"TimeReceived\":1696965014,\"Packets\":2,\"SrcAddr\":\"10.0.84.208\",\"Interface\":\"ens5\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965013491,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013491,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Bytes\":248,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstPort\":6081,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":6528,\"Proto\":17,\"Etype\":2048,\"DstMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.18.124\"}" + ], + [ + "1696965013462000128", + "{\"Proto\":17,\"AgentIP\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013462,\"TimeFlowEndMs\":1696965013462,\"Bytes\":124,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":25989,\"DstMac\":\"02:79:42:1F:26:B7\",\"Packets\":1,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\"}" + ], + [ + "1696965012620999936", + "{\"TimeFlowEndMs\":1696965012621,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":132,\"Packets\":1,\"SrcPort\":65447,\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965014,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"DstPort\":6081,\"DstK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcAddr\":\"10.0.84.208\",\"Proto\":17,\"DstAddr\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012621,\"Interface\":\"br-ex\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013020999936", + "{\"IfDirection\":1,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowEndMs\":1696965013021,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013021,\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"Bytes\":140,\"DstAddr\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcPort\":10905,\"DstK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.84.208\"}" + ], + [ + "1696965012624000000", + "{\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.18.124\",\"Packets\":1,\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":17,\"DstK8S_HostIP\":\"10.0.18.124\",\"TimeFlowEndMs\":1696965012624,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048,\"AgentIP\":\"10.0.84.208\",\"SrcPort\":36640,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012624,\"IfDirection\":1,\"Bytes\":124,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.84.208\",\"TimeReceived\":1696965013,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965012623000064", + "{\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"SrcAddr\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965012623,\"TimeFlowEndMs\":1696965012623,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":1,\"SrcPort\":21314,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"DstAddr\":\"10.0.18.124\",\"Proto\":17,\"Bytes\":124,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"AgentIP\":\"10.0.84.208\",\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\"}" + ], + [ + "1696965012622000128", + "{\"TimeFlowStartMs\":1696965012622,\"AgentIP\":\"10.0.84.208\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstAddr\":\"10.0.18.124\",\"TimeReceived\":1696965013,\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965012622,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":65447,\"Etype\":2048,\"Bytes\":142,\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":1,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcAddr\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-gateway" + }, + "values": [ + [ + "1696965014564000000", + "{\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014564,\"DstPort\":49566,\"TimeReceived\":1696965014,\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowEndMs\":1696965014564,\"AgentIP\":\"10.0.18.124\",\"Bytes\":101,\"Interface\":\"abe73e0313a4c0f\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-gateway-856f4fb587-6vhvv\",\"DstAddr\":\"10.129.2.2\",\"SrcMac\":\"0A:58:0A:81:02:13\",\"IfDirection\":0,\"Flags\":16,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstMac\":\"26:10:35:4E:D0:50\",\"Proto\":6,\"SrcPort\":8083,\"Packets\":1,\"SrcAddr\":\"10.129.2.19\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965013639000064", + "{\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstPort\":6081,\"DstMac\":\"02:79:42:1F:26:B7\",\"TimeFlowEndMs\":1696965013639,\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013639,\"DstAddr\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":53969,\"Packets\":1,\"AgentIP\":\"10.0.18.124\",\"Bytes\":140,\"SrcAddr\":\"10.0.45.84\",\"TimeReceived\":1696965014,\"Proto\":17,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_HostIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965013382000128", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"Bytes\":124,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":17,\"Etype\":2048,\"DstPort\":6081,\"Interface\":\"br-ex\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:94:FC:23:41:67\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013382,\"TimeFlowStartMs\":1696965013382,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Packets\":1,\"TimeReceived\":1696965013,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"SrcPort\":32119,\"DstK8S_HostIP\":\"10.0.45.84\"}" + ], + [ + "1696965013267000064", + "{\"DstPort\":6081,\"DstK8S_HostIP\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965013267,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013267,\"SrcMac\":\"06:D3:86:10:5C:57\",\"IfDirection\":0,\"DstMac\":\"06:94:FC:23:41:67\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"SrcPort\":48773,\"Interface\":\"br-ex\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":124}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013009999872", + "{\"IfDirection\":0,\"TimeFlowStartMs\":1696965013010,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013010,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965013,\"DstMac\":\"06:94:FC:23:41:67\",\"Bytes\":124,\"Proto\":17,\"SrcPort\":56697,\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.18.124\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965013352999936", + "{\"TimeReceived\":1696965013,\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":124,\"TimeFlowStartMs\":1696965013353,\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.45.84\",\"AgentIP\":\"10.0.45.84\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":17,\"IfDirection\":0,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstMac\":\"06:94:FC:23:41:67\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":60305,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"TimeFlowEndMs\":1696965013353}" + ], + [ + "1696965012820999936", + "{\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcPort\":16739,\"Proto\":17,\"TimeFlowStartMs\":1696965012821,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.45.84\",\"Etype\":2048,\"Bytes\":132,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965012821,\"TimeReceived\":1696965013,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"06:94:FC:23:41:67\",\"DstK8S_HostIP\":\"10.0.45.84\",\"IfDirection\":0,\"DstPort\":6081,\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.45.84\",\"SrcAddr\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965013211000064", + "{\"IfDirection\":0,\"AgentIP\":\"10.0.45.84\",\"Interface\":\"ens5\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.89.254\",\"Packets\":1,\"Proto\":17,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965013,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.45.84\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"06:94:FC:23:41:67\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":62691,\"TimeFlowEndMs\":1696965013211,\"Etype\":2048,\"TimeFlowStartMs\":1696965013211,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965012960000000", + "{\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965012960,\"DstAddr\":\"10.0.45.84\",\"AgentIP\":\"10.0.45.84\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"TimeReceived\":1696965013,\"IfDirection\":0,\"SrcAddr\":\"10.0.59.108\",\"SrcMac\":\"06:C5:F7:84:19:85\",\"SrcPort\":6443,\"DstPort\":54742,\"Bytes\":166,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"DstMac\":\"06:94:FC:23:41:67\",\"Packets\":1,\"TimeFlowStartMs\":1696965012960}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965014190000128", + "{\"Proto\":17,\"SrcAddr\":\"10.0.18.124\",\"SrcPort\":32302,\"DstPort\":6081,\"SrcMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014190,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":132,\"Etype\":2048,\"TimeFlowStartMs\":1696965014190,\"DstMac\":\"02:E7:EA:46:6A:33\",\"TimeReceived\":1696965014,\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstAddr\":\"10.0.45.84\",\"IfDirection\":1,\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\"}" + ], + [ + "1696965013288999936", + "{\"SrcMac\":\"02:79:42:1F:26:B7\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":48419,\"DstAddr\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965013289,\"TimeFlowEndMs\":1696965013289,\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Proto\":17,\"TimeReceived\":1696965014,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":1,\"SrcAddr\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"Interface\":\"ens5\",\"DstPort\":6081,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstMac\":\"02:E7:EA:46:6A:33\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965012969999872", + "{\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":1,\"Etype\":2048,\"TimeReceived\":1696965015,\"Bytes\":66,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965012970,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:94:FC:23:41:67\",\"TimeFlowEndMs\":1696965012970,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"Proto\":6,\"SrcPort\":6443,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.45.84\",\"DstPort\":59910}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013548000000", + "{\"Bytes\":124,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965013,\"IfDirection\":1,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcPort\":9774,\"Proto\":17,\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Packets\":1,\"TimeFlowStartMs\":1696965013548,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"Interface\":\"ens5\",\"DstAddr\":\"10.0.45.84\",\"AgentIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013548}" + ], + [ + "1696965013352999936", + "{\"Bytes\":179,\"TimeFlowStartMs\":1696965013353,\"IfDirection\":1,\"DstAddr\":\"10.0.45.84\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcPort\":60305,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"TimeReceived\":1696965013,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"TimeFlowEndMs\":1696965013353,\"SrcMac\":\"0A:38:CA:F8:28:19\"}" + ], + [ + "1696965012945999872", + "{\"IfDirection\":1,\"SrcAddr\":\"10.0.84.208\",\"SrcPort\":43691,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"Interface\":\"br-ex\",\"Proto\":17,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":6081,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Bytes\":124,\"TimeReceived\":1696965013,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965012946,\"AgentIP\":\"10.0.84.208\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowEndMs\":1696965012946,\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-dns", + "SrcK8S_OwnerName": "dns-default", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012528999936", + "{\"Interface\":\"ovn-k8s-mp0\",\"DstMac\":\"4A:12:8D:5D:F8:A1\",\"DstAddr\":\"10.131.0.2\",\"TimeFlowEndMs\":1696965012529,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":8080,\"IfDirection\":0,\"SrcAddr\":\"10.131.0.6\",\"SrcMac\":\"0A:58:0A:83:00:06\",\"DstPort\":36336,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.45.84\",\"Packets\":1,\"Bytes\":66,\"Etype\":2048,\"SrcK8S_Name\":\"dns-default-z67mg\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012529,\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013352999936", + "{\"Interface\":\"ens5\",\"TimeReceived\":1696965013,\"DstMac\":\"06:94:FC:23:41:67\",\"SrcPort\":60305,\"TimeFlowEndMs\":1696965013353,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":17,\"TimeFlowStartMs\":1696965013353,\"Etype\":2048,\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.45.84\",\"IfDirection\":0,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.84.208\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"AgentIP\":\"10.0.45.84\",\"SrcK8S_HostIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965012960000000", + "{\"SrcAddr\":\"10.0.59.108\",\"DstMac\":\"06:94:FC:23:41:67\",\"DstAddr\":\"10.0.45.84\",\"DstPort\":54742,\"IfDirection\":0,\"Interface\":\"br-ex\",\"SrcPort\":6443,\"Flags\":16,\"SrcMac\":\"06:C5:F7:84:19:85\",\"TimeFlowStartMs\":1696965012960,\"TimeFlowEndMs\":1696965012960,\"AgentIP\":\"10.0.45.84\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"Bytes\":166,\"TimeReceived\":1696965013,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-cloud-credential-operator", + "SrcK8S_OwnerName": "pod-identity-webhook", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012960999936", + "{\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.129.0.2\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965012961,\"Proto\":6,\"TimeFlowEndMs\":1696965012961,\"SrcMac\":\"0A:58:0A:81:00:01\",\"IfDirection\":0,\"SrcK8S_Name\":\"pod-identity-webhook-5dc6dcc464-p8njl\",\"Etype\":2048,\"SrcAddr\":\"10.130.0.53\",\"Interface\":\"ovn-k8s-mp0\",\"TimeReceived\":1696965015,\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":9443,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":55406,\"AgentIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965015252000000", + "{\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Proto\":17,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"DstPort\":6081,\"SrcPort\":62861,\"IfDirection\":0,\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Packets\":14,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965014331,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965015252,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":14247,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965015225999872", + "{\"SrcPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"DstPort\":33930,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"SrcAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965015226,\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"Bytes\":139,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965015226}" + ], + [ + "1696965015108000000", + "{\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965015108,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":139,\"Flags\":16,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"DstPort\":33848,\"SrcPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015108,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014958000128", + "{\"Proto\":6,\"TimeFlowStartMs\":1696965010886,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2380,\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":462,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965014958,\"TimeReceived\":1696965015,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":55568,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":7}" + ], + [ + "1696965014851000064", + "{\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965014851,\"Etype\":2048,\"PktDropPackets\":1,\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014851,\"PktDropLatestFlags\":16,\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.14.70\",\"DstPort\":34012,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014849999872", + "{\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"TimeFlowEndMs\":1696965014850,\"DstK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"SrcPort\":40462,\"SrcAddr\":\"10.0.14.70\",\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"Proto\":6,\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965014850,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"Interface\":\"br-ex\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\"}" + ], + [ + "1696965014849999872", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965014850,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcPort\":51180,\"TimeFlowEndMs\":1696965014850,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965014360999936", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Bytes\":64345,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965010952,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"SrcPort\":2379,\"SrcK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":34530,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"Interface\":\"ens5\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Packets\":7,\"SrcAddr\":\"10.0.14.70\",\"DstAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965014361,\"Proto\":6,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965014339000064", + "{\"SrcAddr\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":51316,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014339,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstPort\":2379,\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropBytes\":32,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstMac\":\"06:45:0B:D4:57:61\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965014339,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1}" + ], + [ + "1696965014339000064", + "{\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcPort\":59774,\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965014339,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965014339,\"Flags\":16,\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"DstPort\":2379,\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\"}" + ], + [ + "1696965014339000064", + "{\"PktDropBytes\":32,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"Etype\":2048,\"Flags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"TimeFlowStartMs\":1696965014339,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcPort\":51172,\"Interface\":\"br-ex\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014339,\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\"}" + ], + [ + "1696965014339000064", + "{\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Interface\":\"br-ex\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcPort\":59846,\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965014339,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestFlags\":16,\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965014339,\"PktDropBytes\":32,\"DstAddr\":\"10.0.60.65\",\"Proto\":6}" + ], + [ + "1696965014321999872", + "{\"SrcPort\":60413,\"SrcAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"Interface\":\"ens5\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":20,\"TimeFlowStartMs\":1696965014240,\"Bytes\":288361,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":6081,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstAddr\":\"10.0.60.65\",\"Proto\":17,\"TimeFlowEndMs\":1696965014322,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965014296000000", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":2380,\"DstPort\":42844,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"TimeReceived\":1696965015,\"Bytes\":1159,\"TimeFlowStartMs\":1696965010891,\"Packets\":7,\"TimeFlowEndMs\":1696965014296,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"IfDirection\":0,\"Proto\":6,\"Interface\":\"ens5\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\"}" + ], + [ + "1696965014196000000", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":34670,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":112,\"TimeFlowStartMs\":1696965014196,\"SrcPort\":2379,\"TimeFlowEndMs\":1696965014196,\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16}" + ], + [ + "1696965014075000064", + "{\"TimeFlowEndMs\":1696965014075,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"Bytes\":66,\"SrcAddr\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"Etype\":2048,\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014075,\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Packets\":1,\"DstPort\":48572,\"IfDirection\":0}" + ], + [ + "1696965014008999936", + "{\"TimeFlowEndMs\":1696965014009,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"Bytes\":139,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":51048,\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeReceived\":1696965015,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Packets\":1,\"Etype\":2048,\"SrcAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965014009,\"Interface\":\"ens5\"}" + ], + [ + "1696965013825999872", + "{\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":59766,\"Etype\":2048,\"SrcAddr\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965013826,\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Proto\":6,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965013826,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013825999872", + "{\"Interface\":\"br-ex\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013826,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"SrcPort\":51238,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965013826,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013825999872", + "{\"DstPort\":34274,\"SrcK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":0,\"SrcPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013826,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965013826,\"Proto\":6,\"SrcAddr\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Etype\":2048,\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965013313999872", + "{\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965013314,\"Interface\":\"br-ex\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013314,\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstPort\":34652,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":2379,\"SrcK8S_HostIP\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"PktDropBytes\":32,\"Flags\":16,\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013313999872", + "{\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"PktDropPackets\":1,\"Proto\":6,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":34000,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965013314,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcPort\":2379,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013314,\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048}" + ], + [ + "1696965013313999872", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":60128,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Proto\":6,\"PktDropLatestFlags\":16,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013314,\"PktDropPackets\":1,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013314,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"SrcAddr\":\"10.0.14.70\",\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\"}" + ], + [ + "1696965013313999872", + "{\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"IfDirection\":0,\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropBytes\":32,\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379,\"TimeFlowEndMs\":1696965013314,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013314,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcPort\":60046}" + ], + [ + "1696965013313999872", + "{\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013314,\"TimeFlowEndMs\":1696965013314,\"DstPort\":2379,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":51300,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32}" + ], + [ + "1696965013313999872", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":34088,\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965013314,\"PktDropBytes\":32,\"Etype\":2048,\"PktDropPackets\":1,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"SrcPort\":2379,\"TimeFlowEndMs\":1696965013314,\"DstMac\":\"06:45:0B:D4:57:61\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013313999872", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowStartMs\":1696965013314,\"Interface\":\"br-ex\",\"PktDropBytes\":32,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"SrcPort\":51212,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstPort\":2379,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965013314,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\"}" + ], + [ + "1696965013313999872", + "{\"SrcMac\":\"06:D3:86:10:5C:57\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Interface\":\"br-ex\",\"Proto\":6,\"TimeFlowEndMs\":1696965013314,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":51112,\"PktDropPackets\":1,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013314,\"DstPort\":2379,\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16}" + ], + [ + "1696965013313999872", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965013314,\"SrcAddr\":\"10.0.14.70\",\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965013314,\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"DstPort\":2379,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":51000,\"TimeReceived\":1696965015,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013095000064", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_NO_SOCKET\",\"DstPort\":43954,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"Flags\":512,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"SrcAddr\":\"10.0.14.70\",\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":2380,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestFlags\":512,\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013095,\"TimeFlowStartMs\":1696965013095}" + ], + [ + "1696965013087000064", + "{\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2380,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.14.70\",\"TimeFlowStartMs\":1696965013087,\"DstPort\":42878,\"Flags\":16,\"Etype\":2048,\"Bytes\":256,\"TimeReceived\":1696965015,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965013087,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965012801999872", + "{\"PktDropPackets\":1,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"IfDirection\":0,\"TimeFlowStartMs\":1696965012802,\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965012802,\"DstPort\":2379,\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"Proto\":6,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcPort\":40464,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\"}" + ], + [ + "1696965012801999872", + "{\"Interface\":\"br-ex\",\"Proto\":6,\"SrcAddr\":\"10.0.14.70\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcPort\":51168,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965012802,\"Flags\":16,\"TimeFlowStartMs\":1696965012802,\"DstPort\":2379,\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048}" + ], + [ + "1696965012801999872", + "{\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":59984,\"Interface\":\"br-ex\",\"TimeReceived\":1696965015,\"DstPort\":2379,\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965012802,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012802,\"IfDirection\":0,\"Etype\":2048,\"Proto\":6}" + ], + [ + "1696965012801999872", + "{\"TimeFlowEndMs\":1696965012802,\"Etype\":2048,\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"Proto\":6,\"TimeFlowStartMs\":1696965012802,\"DstPort\":48580,\"SrcPort\":2379,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965012801999872", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012802,\"TimeFlowEndMs\":1696965012802,\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":51082,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcAddr\":\"10.0.14.70\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965012801999872", + "{\"TimeFlowStartMs\":1696965012802,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"SrcPort\":40078,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"Flags\":16,\"SrcAddr\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"PktDropBytes\":32,\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965012802,\"DstAddr\":\"10.0.60.65\"}" + ], + [ + "1696965012801999872", + "{\"PktDropBytes\":32,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.0.14.70\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":33998,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012802,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"Etype\":2048,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"Proto\":6,\"Interface\":\"br-ex\",\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965012802}" + ], + [ + "1696965012801999872", + "{\"PktDropLatestFlags\":16,\"SrcPort\":60142,\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012802,\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"TimeFlowStartMs\":1696965012802,\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.14.70\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965014656000000", + "{\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"Packets\":101,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":31178,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Bytes\":654396,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965011397,\"TimeFlowEndMs\":1696965014656,\"IfDirection\":0,\"Etype\":2048,\"Interface\":\"br-ex\",\"Proto\":17}" + ], + [ + "1696965014011000064", + "{\"TimeFlowEndMs\":1696965014011,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"br-ex\",\"SrcPort\":52506,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"IfDirection\":0,\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":10259,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014011,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015}" + ], + [ + "1696965013736999936", + "{\"Packets\":1,\"TimeFlowEndMs\":1696965013737,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":124,\"SrcAddr\":\"10.0.84.208\",\"Proto\":17,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":65210,\"TimeFlowStartMs\":1696965013737,\"IfDirection\":0,\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":6081,\"Interface\":\"ens5\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013579000064", + "{\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.84.208\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013579,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"TimeFlowStartMs\":1696965013579,\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"DstPort\":6443,\"SrcPort\":40464,\"Proto\":6,\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013059000064", + "{\"AgentIP\":\"10.0.60.65\",\"SrcPort\":59932,\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965013059,\"Packets\":1,\"SrcAddr\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013059,\"DstMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"DstPort\":6443,\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"Bytes\":66,\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965015158000128", + "{\"DstPort\":6443,\"AgentIP\":\"10.0.60.65\",\"Packets\":2,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Proto\":6,\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965011754,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":44066,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015158,\"Etype\":2048,\"Bytes\":250,\"Interface\":\"br-ex\"}" + ], + [ + "1696965015099000064", + "{\"TimeFlowStartMs\":1696965015099,\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.89.254\",\"Packets\":1,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"IfDirection\":0,\"TimeFlowEndMs\":1696965015099,\"SrcPort\":51806,\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Bytes\":66,\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965015008000000", + "{\"Flags\":16,\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"TimeFlowEndMs\":1696965015008,\"TimeReceived\":1696965015,\"SrcPort\":38670,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Interface\":\"br-ex\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropBytes\":32,\"Proto\":6,\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965015008,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965015008000000", + "{\"DstAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965015008,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":2379,\"TimeReceived\":1696965015,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"Proto\":6,\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965015008,\"DstPort\":52006,\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048}" + ], + [ + "1696965015008000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":51796,\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965015008,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965015008,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\"}" + ], + [ + "1696965015008000000", + "{\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015008,\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0,\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Proto\":6,\"Interface\":\"br-ex\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965015008,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":38822,\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014972000000", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014972,\"Proto\":6,\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":125,\"Etype\":2048,\"TimeFlowEndMs\":1696965014972,\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"SrcPort\":38588,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstPort\":2379,\"TimeReceived\":1696965015}" + ], + [ + "1696965014875000064", + "{\"TimeFlowStartMs\":1696965014875,\"Packets\":1,\"DstPort\":2379,\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"Proto\":6,\"SrcAddr\":\"10.0.89.254\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014875,\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":66,\"DstAddr\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcPort\":51882,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965014631000064", + "{\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Bytes\":201,\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"SrcPort\":51976,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965014631,\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"Etype\":2048,\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965014631,\"Packets\":1,\"DstPort\":2379}" + ], + [ + "1696965014569999872", + "{\"TimeFlowStartMs\":1696965010912,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965014570,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"Etype\":2048,\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":6443,\"DstMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"Bytes\":66,\"PktDropBytes\":32,\"SrcPort\":37464,\"Packets\":1,\"SrcAddr\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015}" + ], + [ + "1696965014496000000", + "{\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"PktDropBytes\":32,\"SrcPort\":48402,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014496,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropPackets\":1,\"IfDirection\":0,\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstPort\":2379,\"TimeFlowStartMs\":1696965014496,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965014496000000", + "{\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014496,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"PktDropPackets\":1,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"DstPort\":49952,\"SrcMac\":\"06:D3:86:10:5C:57\",\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965014496,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"PktDropBytes\":32,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965014496000000", + "{\"TimeFlowStartMs\":1696965014496,\"TimeFlowEndMs\":1696965014496,\"Interface\":\"br-ex\",\"PktDropLatestFlags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"SrcPort\":52262,\"SrcAddr\":\"10.0.89.254\",\"DstAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965014496000000", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"SrcPort\":38504,\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965014496,\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965014496,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"PktDropBytes\":32}" + ], + [ + "1696965014496000000", + "{\"TimeReceived\":1696965015,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcAddr\":\"10.0.89.254\",\"PktDropPackets\":1,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014496,\"TimeFlowStartMs\":1696965014496,\"SrcPort\":58048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.89.254\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965014496000000", + "{\"Flags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropBytes\":32,\"Proto\":6,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965014496,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcPort\":34632,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"TimeFlowEndMs\":1696965014496,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\"}" + ], + [ + "1696965014496000000", + "{\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965014496,\"DstPort\":52080,\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965014496,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"PktDropLatestFlags\":16}" + ], + [ + "1696965014334000128", + "{\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014334,\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965010798,\"Proto\":6,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcPort\":48754,\"IfDirection\":0,\"Packets\":9,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":6443,\"TimeReceived\":1696965015,\"DstK8S_HostIP\":\"10.0.60.65\",\"Bytes\":1076,\"DstMac\":\"06:45:0B:D4:57:61\"}" + ], + [ + "1696965014332999936", + "{\"Flags\":16,\"Bytes\":18030,\"DstPort\":49756,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014333,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965010903,\"SrcPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":2,\"Interface\":\"ens5\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014304999936", + "{\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"DstPort\":6443,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.0.89.254\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"PktDropPackets\":1,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"TimeFlowStartMs\":1696965014305,\"Etype\":2048,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965014305,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":38228,\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965014292000000", + "{\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":2379,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":51392,\"Packets\":1,\"DstMac\":\"06:45:0B:D4:57:61\",\"IfDirection\":0,\"Etype\":2048,\"SrcAddr\":\"10.0.89.254\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":112,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965014292,\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965014292,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965014203000064", + "{\"TimeFlowEndMs\":1696965014203,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstPort\":2379,\"SrcAddr\":\"10.0.89.254\",\"Bytes\":66,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":52198,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014203,\"Interface\":\"br-ex\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013984999936", + "{\"DstPort\":2379,\"Proto\":6,\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"SrcAddr\":\"10.0.89.254\",\"Etype\":2048,\"TimeFlowStartMs\":1696965013985,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcPort\":52082,\"IfDirection\":0,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"br-ex\",\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013985,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013984000000", + "{\"TimeFlowStartMs\":1696965013984,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"Flags\":16,\"SrcPort\":2379,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstPort\":51728,\"Proto\":6,\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"DstMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"PktDropLatestFlags\":16,\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965013984,\"SrcK8S_HostIP\":\"10.0.89.254\"}" + ], + [ + "1696965013984000000", + "{\"TimeFlowStartMs\":1696965013984,\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"Etype\":2048,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965013984,\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcAddr\":\"10.0.89.254\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"PktDropBytes\":32,\"DstPort\":51344,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013984000000", + "{\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropPackets\":1,\"SrcPort\":47558,\"DstAddr\":\"10.0.60.65\",\"Etype\":2048,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965013984,\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965013984,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6}" + ], + [ + "1696965013984000000", + "{\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965013984,\"Etype\":2048,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"DstPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013984,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":38344,\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Flags\":16}" + ], + [ + "1696965013984000000", + "{\"DstPort\":2379,\"Etype\":2048,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcPort\":56080,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965013984,\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965013984,\"DstMac\":\"06:45:0B:D4:57:61\"}" + ], + [ + "1696965013984000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowStartMs\":1696965013984,\"TimeFlowEndMs\":1696965013984,\"DstPort\":49880,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.0.89.254\",\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.89.254\"}" + ], + [ + "1696965013937999872", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Packets\":1,\"TimeFlowStartMs\":1696965013938,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":66,\"SrcAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965013938,\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"SrcPort\":43760,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":2379}" + ], + [ + "1696965013648999936", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965013649,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.60.65\",\"SrcPort\":54392,\"TimeReceived\":1696965015,\"Etype\":2048,\"TimeFlowStartMs\":1696965013649,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"DstPort\":6443,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"SrcAddr\":\"10.0.89.254\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013504000000", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Proto\":6,\"SrcPort\":6443,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.89.254\",\"DstPort\":37626,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":641,\"Flags\":16,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"TimeFlowStartMs\":1696965013504,\"TimeFlowEndMs\":1696965013504,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013472000000", + "{\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965013472,\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":34690,\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013472,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Proto\":6,\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Flags\":16}" + ], + [ + "1696965013472000000", + "{\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965013472,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcAddr\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965013472,\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"SrcPort\":38748,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32}" + ], + [ + "1696965013472000000", + "{\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstPort\":50054,\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965013472,\"Proto\":6,\"Etype\":2048,\"SrcAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965013472,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013472000000", + "{\"DstPort\":2379,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965013472,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":54606,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965013472,\"IfDirection\":0,\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013472000000", + "{\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":2379,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965013472,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965013472,\"Flags\":16,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"SrcPort\":52184}" + ], + [ + "1696965013472000000", + "{\"DstAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.0.89.254\",\"DstPort\":2379,\"TimeFlowEndMs\":1696965013472,\"PktDropPackets\":1,\"SrcMac\":\"06:D3:86:10:5C:57\",\"IfDirection\":0,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013472,\"TimeReceived\":1696965015,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":38486,\"PktDropLatestFlags\":16,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013472000000", + "{\"Flags\":16,\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstPort\":2379,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013472,\"TimeFlowEndMs\":1696965013472,\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"SrcPort\":38572,\"PktDropLatestFlags\":16,\"PktDropPackets\":1,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013392000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6443,\"PktDropPackets\":1,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"PktDropLatestFlags\":16,\"TimeFlowEndMs\":1696965013392,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"IfDirection\":0,\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965013392,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeReceived\":1696965015,\"SrcPort\":45104,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013092000000", + "{\"AgentIP\":\"10.0.60.65\",\"Bytes\":66,\"TimeFlowStartMs\":1696965013092,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_NO_SOCKET\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Packets\":1,\"PktDropLatestFlags\":512,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcPort\":2380,\"TimeFlowEndMs\":1696965013092,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_OwnerType\":\"Node\",\"Flags\":512,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":38650,\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"Interface\":\"br-ex\",\"Proto\":6,\"TimeReceived\":1696965015}" + ], + [ + "1696965012960000000", + "{\"IfDirection\":0,\"TimeReceived\":1696965015,\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965012960,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":51972,\"SrcPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965012960,\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.89.254\"}" + ], + [ + "1696965012960000000", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstPort\":33542,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012960,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965012960,\"IfDirection\":0,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropBytes\":32,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":2379,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965012960000000", + "{\"Flags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":52320,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"DstPort\":2379,\"Etype\":2048,\"Proto\":6,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012960,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.89.254\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965012960,\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965012960000000", + "{\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"Flags\":16,\"SrcPort\":52088,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965012960,\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965012960,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048}" + ], + [ + "1696965012960000000", + "{\"SrcPort\":2379,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012960,\"SrcAddr\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965012960,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeReceived\":1696965015,\"Interface\":\"br-ex\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"IfDirection\":0,\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"PktDropLatestFlags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":40938,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965012840999936", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012841,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"SrcPort\":51930,\"Proto\":6,\"Flags\":16,\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"PktDropPackets\":1,\"SrcAddr\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965012841}" + ], + [ + "1696965012448000000", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"DstPort\":2379,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965012448,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965012448,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.89.254\",\"Flags\":16,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"PktDropPackets\":1,\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"AgentIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":38770,\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965012448000000", + "{\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcAddr\":\"10.0.89.254\",\"Interface\":\"br-ex\",\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965012448,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"Flags\":16,\"TimeFlowEndMs\":1696965012448,\"DstAddr\":\"10.0.60.65\",\"SrcPort\":51840,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965012448000000", + "{\"Interface\":\"br-ex\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012448,\"TimeFlowStartMs\":1696965012448,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropPackets\":1,\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"SrcPort\":42414,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965012448000000", + "{\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012448,\"PktDropBytes\":32,\"Flags\":16,\"SrcAddr\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":38792,\"Interface\":\"br-ex\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropPackets\":1,\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965012448,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"Proto\":6,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965012448000000", + "{\"Flags\":16,\"SrcMac\":\"06:D3:86:10:5C:57\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"TimeReceived\":1696965015,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstPort\":49790,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012448,\"Etype\":2048,\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":2379,\"IfDirection\":0,\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012448,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965012448000000", + "{\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowEndMs\":1696965012448,\"DstAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"SrcPort\":52316,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965012448,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":2379,\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015305999872", + "{\"Flags\":16,\"IfDirection\":0,\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Bytes\":97,\"Interface\":\"br-ex\",\"Proto\":6,\"TimeFlowStartMs\":1696965015306,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965015306,\"Packets\":1,\"DstAddr\":\"10.0.60.65\",\"DstPort\":6443,\"SrcAddr\":\"10.0.67.89\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":3312,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965014998000128", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:C5:F7:84:19:85\",\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowEndMs\":1696965014998,\"AgentIP\":\"10.0.60.65\",\"SrcPort\":27796,\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"DstPort\":22623,\"TimeReceived\":1696965015,\"Proto\":6,\"SrcAddr\":\"10.0.59.108\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Interface\":\"ens5\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014998,\"Bytes\":66,\"Flags\":16}" + ], + [ + "1696965014596999936", + "{\"Bytes\":66,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965014597,\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":8698,\"Etype\":2048,\"SrcAddr\":\"10.0.26.111\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6443,\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"IfDirection\":0,\"Packets\":1,\"Interface\":\"ens5\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014597}" + ], + [ + "1696965014592000000", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014592,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.146.161\",\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"Bytes\":66,\"DstPort\":6443,\"Packets\":1,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"TimeFlowEndMs\":1696965014592,\"SrcPort\":43034}" + ], + [ + "1696965014496999936", + "{\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"PktDropBytes\":32,\"DstPort\":6443,\"SrcPort\":38106,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965014497,\"Flags\":16,\"PktDropLatestFlags\":16,\"Proto\":6,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.26.111\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965014497,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013980000000", + "{\"Packets\":2,\"TimeFlowEndMs\":1696965013980,\"DstAddr\":\"10.0.60.65\",\"SrcMac\":\"06:C5:F7:84:19:85\",\"SrcAddr\":\"10.0.59.108\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"Bytes\":132,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstPort\":6443,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013979,\"Interface\":\"br-ex\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":62040}" + ], + [ + "1696965013980000000", + "{\"Packets\":1,\"SrcPort\":40413,\"TimeReceived\":1696965015,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965013980,\"SrcAddr\":\"10.0.67.89\",\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013980,\"DstK8S_HostIP\":\"10.0.60.65\",\"Bytes\":66,\"Interface\":\"ens5\",\"Proto\":6,\"DstMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6443,\"DstAddr\":\"10.0.60.65\"}" + ], + [ + "1696965013953999872", + "{\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"br-ex\",\"Flags\":16,\"SrcAddr\":\"10.0.26.111\",\"TimeFlowEndMs\":1696965013954,\"TimeFlowStartMs\":1696965013954,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"DstPort\":6443,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":62143,\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013424000000", + "{\"Flags\":16,\"SrcAddr\":\"10.0.67.89\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013424,\"Etype\":2048,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":32784,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":6443,\"IfDirection\":0,\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":165,\"TimeFlowStartMs\":1696965013424,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"Packets\":1,\"DstAddr\":\"10.0.60.65\",\"Interface\":\"ens5\"}" + ], + [ + "1696965013212000000", + "{\"TimeFlowStartMs\":1696965013212,\"AgentIP\":\"10.0.60.65\",\"Bytes\":66,\"TimeReceived\":1696965015,\"SrcPort\":1414,\"Proto\":6,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":22623,\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"Interface\":\"ens5\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":512,\"TimeFlowEndMs\":1696965013212,\"SrcAddr\":\"10.0.67.89\",\"SrcMac\":\"06:D3:86:10:5C:57\"}" + ], + [ + "1696965013001999872", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:C5:F7:84:19:85\",\"Bytes\":204,\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.59.108\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":55289,\"Packets\":1,\"Interface\":\"ens5\",\"Proto\":6,\"TimeReceived\":1696965015,\"DstPort\":6443,\"TimeFlowStartMs\":1696965013002,\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013002,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0}" + ], + [ + "1696965012960999936", + "{\"TimeFlowEndMs\":1696965012961,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstPort\":6443,\"SrcPort\":37525,\"SrcMac\":\"06:C5:F7:84:19:85\",\"TimeReceived\":1696965015,\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965012961,\"SrcAddr\":\"10.0.59.108\",\"Packets\":1,\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"Bytes\":66}" + ], + [ + "1696965012892999936", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:C5:F7:84:19:85\",\"SrcAddr\":\"10.0.59.108\",\"Etype\":2048,\"TimeFlowStartMs\":1696965012891,\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965012893,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcPort\":3783,\"TimeReceived\":1696965015,\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstPort\":6443,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"Bytes\":180,\"Packets\":2}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-oauth-apiserver", + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012608999936", + "{\"SrcAddr\":\"10.130.0.62\",\"Flags\":16,\"AgentIP\":\"10.0.89.254\",\"SrcMac\":\"0A:58:0A:82:00:3E\",\"Interface\":\"10bacecd3ce82cb\",\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1696965012,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:58:0A:82:00:01\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965012609,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012609,\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcK8S_Name\":\"apiserver-7c9977dbbc-7jcr4\",\"SrcPort\":51204,\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Proto\":6,\"Packets\":1,\"Bytes\":125}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013271000064", + "{\"SrcMac\":\"06:94:FC:23:41:67\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":114,\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965013271,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"AgentIP\":\"10.0.45.84\",\"Flags\":16,\"SrcAddr\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcPort\":52328,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013271,\"DstPort\":9100}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013548999936", + "{\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":44,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965011373,\"TimeFlowEndMs\":1696965013549,\"Etype\":2048,\"Proto\":17,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":31178,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"IfDirection\":1,\"SrcAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":33429,\"DstAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"TimeReceived\":1696965013,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013055000064", + "{\"DstPort\":6443,\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965013055,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.84.208\",\"SrcPort\":59932,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"DstAddr\":\"10.0.60.65\",\"Bytes\":1602,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"SrcAddr\":\"10.0.84.208\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013055,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965012608999936", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"SrcMac\":\"0A:B9:3A:21:FF:AD\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"AgentIP\":\"10.0.89.254\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Packets\":1,\"SrcAddr\":\"10.0.89.254\",\"IfDirection\":1,\"Bytes\":66,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012609,\"TimeReceived\":1696965012,\"Flags\":16,\"TimeFlowEndMs\":1696965012609,\"Interface\":\"ens5\",\"SrcPort\":51204}" + ], + [ + "1696965012539000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"Bytes\":66,\"SrcPort\":2379,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowStartMs\":1696965012539,\"SrcAddr\":\"10.0.89.254\",\"SrcMac\":\"0A:B9:3A:21:FF:AD\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Proto\":6,\"TimeReceived\":1696965012,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.60.65\",\"Packets\":1,\"IfDirection\":1,\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965012539,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":51416}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "openshift-apiserver", + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2" + }, + "values": [ + [ + "1696965014588000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropPackets\":1,\"Proto\":6,\"TimeFlowEndMs\":1696965014588,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcPort\":55806,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"SrcAddr\":\"10.129.0.54\",\"SrcK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014588,\"Interface\":\"ovn-k8s-mp0\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965014587000064", + "{\"TimeFlowStartMs\":1696965014587,\"SrcK8S_Name\":\"apiserver-55b8478bd5-sphxc\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.129.0.54\",\"TimeFlowEndMs\":1696965014587,\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"TimeReceived\":1696965015,\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"Interface\":\"ovn-k8s-mp0\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"IfDirection\":0,\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":36730,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-controller-manager", + "SrcK8S_OwnerName": "controller-manager", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014407000064", + "{\"IfDirection\":0,\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"DstAddr\":\"10.129.0.2\",\"SrcPort\":8443,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"Bytes\":54,\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"controller-manager-59d75f4df5-c9pnz\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:58:0A:81:00:2C\",\"TimeFlowEndMs\":1696965014407,\"Interface\":\"b636030aefd6dd5\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Flags\":4,\"TimeFlowStartMs\":1696965014407,\"SrcAddr\":\"10.129.0.44\",\"DstPort\":42860,\"Proto\":6,\"SrcK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-oauth-apiserver", + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014587000064", + "{\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"10.129.0.50\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014587,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Deployment\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"Flags\":16,\"TimeReceived\":1696965015,\"SrcMac\":\"0A:58:0A:81:00:01\",\"Interface\":\"ovn-k8s-mp0\",\"TimeFlowEndMs\":1696965014587,\"Etype\":2048,\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstPort\":2379,\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"SrcPort\":40562}" + ], + [ + "1696965014075000064", + "{\"Interface\":\"ovn-k8s-mp0\",\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"DstAddr\":\"10.0.60.65\",\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":40764,\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"SrcAddr\":\"10.129.0.50\",\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"TimeFlowEndMs\":1696965014075,\"TimeFlowStartMs\":1696965014075,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-route-controller-manager", + "SrcK8S_OwnerName": "route-controller-manager", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965014404000000", + "{\"SrcK8S_Name\":\"route-controller-manager-7f6cc88b77-trnjq\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":8443,\"Packets\":1,\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"TimeFlowEndMs\":1696965014404,\"DstAddr\":\"10.129.0.2\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"dbf2ee6d0ce9eb9\",\"TimeReceived\":1696965015,\"SrcK8S_OwnerType\":\"Deployment\",\"DstPort\":36842,\"SrcAddr\":\"10.129.0.43\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":127,\"Proto\":6,\"SrcMac\":\"0A:58:0A:81:00:2B\",\"Flags\":16,\"TimeFlowStartMs\":1696965014404,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048}" + ], + [ + "1696965013564000000", + "{\"SrcK8S_Name\":\"route-controller-manager-7f6cc88b77-trnjq\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"ovn-k8s-mp0\",\"PktDropPackets\":1,\"Flags\":16,\"SrcAddr\":\"10.129.0.43\",\"SrcMac\":\"0A:58:0A:81:00:01\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":36638,\"SrcK8S_OwnerType\":\"Deployment\",\"Etype\":2048,\"DstPort\":6443,\"TimeFlowStartMs\":1696965013564,\"TimeFlowEndMs\":1696965013564,\"DstAddr\":\"10.0.60.65\",\"TimeReceived\":1696965015}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965015099000064", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965015099,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965015099,\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":42092,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":2379}" + ], + [ + "1696965015099000064", + "{\"TimeFlowStartMs\":1696965015099,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":54416,\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"TimeReceived\":1696965015,\"Proto\":6,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965015099,\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965015099000064", + "{\"IfDirection\":0,\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015099,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965015099,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcPort\":54968,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965015099000064", + "{\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965015099,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"DstPort\":55110,\"SrcPort\":2379,\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965015099,\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048}" + ], + [ + "1696965015099000064", + "{\"AgentIP\":\"10.0.60.65\",\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965015099,\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":54486,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"Interface\":\"lo\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":2379,\"SrcMac\":\"00:00:00:00:00:00\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015099,\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965015099000064", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":2379,\"Flags\":16,\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcPort\":42616,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965015099,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965015099,\"TimeReceived\":1696965015,\"Etype\":2048,\"Proto\":6,\"Interface\":\"lo\",\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965015099000064", + "{\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"TimeFlowStartMs\":1696965015099,\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":54382,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015099,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"DstPort\":2379,\"SrcAddr\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965015099000064", + "{\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965015099,\"DstPort\":54740,\"Proto\":6,\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965015099,\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":2379}" + ], + [ + "1696965015099000064", + "{\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"PktDropPackets\":1,\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015099,\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":54690,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"TimeFlowStartMs\":1696965015099,\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965015099000064", + "{\"TimeFlowStartMs\":1696965015099,\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"Etype\":2048,\"TimeFlowEndMs\":1696965015099,\"PktDropBytes\":32,\"Interface\":\"lo\",\"DstPort\":2379,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":54546,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015}" + ], + [ + "1696965015099000064", + "{\"TimeFlowStartMs\":1696965015099,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"DstPort\":2379,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":55362,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965015099}" + ], + [ + "1696965015099000064", + "{\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"00:00:00:00:00:00\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965015099,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965015099,\"SrcAddr\":\"10.0.60.65\",\"SrcPort\":43354,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"Interface\":\"lo\"}" + ], + [ + "1696965014588000000", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":54624,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014588,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014588,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965014587000064", + "{\"PktDropPackets\":1,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"DstPort\":54374,\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014587,\"TimeFlowEndMs\":1696965014587,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"Proto\":6,\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"Flags\":16,\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\"}" + ], + [ + "1696965014587000064", + "{\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014587,\"DstPort\":42398,\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":0,\"Interface\":\"lo\",\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965014587,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965014587000064", + "{\"SrcPort\":55294,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"PktDropPackets\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014587,\"PktDropLatestFlags\":16,\"Flags\":16,\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014587,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965014587000064", + "{\"DstMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014587,\"SrcAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":55342,\"IfDirection\":0,\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstPort\":2379,\"PktDropBytes\":32,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965014587,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014075000064", + "{\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"PktDropBytes\":32,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014075,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowStartMs\":1696965014075,\"SrcPort\":55448,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965014075000064", + "{\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"Interface\":\"lo\",\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":54488,\"Etype\":2048,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965014075,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"IfDirection\":0,\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965014075,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965014075000064", + "{\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"SrcMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965014075,\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"SrcPort\":54844,\"TimeFlowStartMs\":1696965014075,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965014075000064", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":42650,\"Flags\":16,\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965014075,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"DstAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"DstPort\":2379,\"TimeFlowEndMs\":1696965014075}" + ], + [ + "1696965014075000064", + "{\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014075,\"DstK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"Interface\":\"lo\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"SrcPort\":55146,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965014075,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"PktDropPackets\":1}" + ], + [ + "1696965014075000064", + "{\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965014075,\"Proto\":6,\"SrcAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014075,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":42352}" + ], + [ + "1696965014075000064", + "{\"DstPort\":2379,\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"Proto\":6,\"Flags\":16,\"PktDropPackets\":1,\"Etype\":2048,\"TimeFlowStartMs\":1696965014075,\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":42126,\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965014075,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965014075000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"SrcPort\":54774,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965014075,\"TimeFlowEndMs\":1696965014075,\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"Proto\":6,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965013564000000", + "{\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":0,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013564,\"Flags\":16,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"DstPort\":2379,\"PktDropBytes\":32,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":54984,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013564,\"Etype\":2048}" + ], + [ + "1696965013564000000", + "{\"DstAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013564,\"SrcPort\":54596,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965013564,\"SrcAddr\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"PktDropPackets\":1,\"Flags\":16,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013564000000", + "{\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013564,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Flags\":16,\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"DstPort\":2379,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":55184,\"TimeFlowStartMs\":1696965013564,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"IfDirection\":0}" + ], + [ + "1696965013564000000", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"lo\",\"SrcPort\":2379,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"TimeFlowStartMs\":1696965013564,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965013564,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":54682,\"TimeReceived\":1696965015,\"Flags\":16,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013564000000", + "{\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965013564,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013564,\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.60.65\",\"SrcPort\":55032,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965013563000064", + "{\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"00:00:00:00:00:00\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":54966,\"TimeFlowEndMs\":1696965013563,\"DstPort\":2379,\"TimeFlowStartMs\":1696965013563,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"PktDropBytes\":32,\"Proto\":6,\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013052000000", + "{\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013052,\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"SrcPort\":54446,\"PktDropBytes\":32,\"Interface\":\"lo\",\"SrcAddr\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"TimeFlowEndMs\":1696965013052,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013052000000", + "{\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":54520,\"DstAddr\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013052,\"TimeFlowEndMs\":1696965013052,\"TimeReceived\":1696965015,\"DstPort\":2379,\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965013051000064", + "{\"SrcK8S_OwnerType\":\"Node\",\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013051,\"DstK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"Proto\":6,\"SrcAddr\":\"10.0.60.65\",\"SrcPort\":54380,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"TimeFlowEndMs\":1696965013051,\"DstPort\":2379,\"PktDropLatestFlags\":16,\"SrcMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965013051000064", + "{\"DstMac\":\"00:00:00:00:00:00\",\"IfDirection\":0,\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013051,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013051,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"Interface\":\"lo\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":42272}" + ], + [ + "1696965012540000000", + "{\"IfDirection\":0,\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"SrcAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965012540,\"Interface\":\"lo\",\"SrcPort\":2379,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":42516,\"Flags\":16,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965012540,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965012540000000", + "{\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012540,\"IfDirection\":0,\"SrcPort\":55200,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"lo\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"DstPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965012540,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32}" + ], + [ + "1696965012540000000", + "{\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"TimeFlowEndMs\":1696965012540,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":55014,\"TimeFlowStartMs\":1696965012540,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"lo\"}" + ], + [ + "1696965012539000064", + "{\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012539,\"PktDropPackets\":1,\"DstAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"TimeReceived\":1696965015,\"PktDropLatestFlags\":16,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":54488,\"PktDropBytes\":32,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965012539,\"SrcMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"IfDirection\":0}" + ], + [ + "1696965012539000064", + "{\"DstPort\":2379,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012539,\"SrcAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcPort\":42100,\"PktDropPackets\":1,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"Proto\":6,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965012539,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\"}" + ], + [ + "1696965012539000064", + "{\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"TimeFlowStartMs\":1696965012539,\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965012539,\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":2048,\"PktDropBytes\":32,\"Proto\":6,\"PktDropLatestFlags\":16,\"SrcPort\":2379,\"TimeReceived\":1696965015,\"PktDropPackets\":1,\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":51574}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true" + }, + "values": [ + [ + "1696965015340000000", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeReceived\":1696965015,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Bytes\":13699,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965015340,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014347,\"Etype\":2048,\"DstAddr\":\"10.0.60.65\",\"SrcPort\":62861,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":17,\"DstK8S_OwnerType\":\"Node\",\"Packets\":11,\"DstPort\":6081,\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965015190000128", + "{\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"DstPort\":32866,\"TimeFlowEndMs\":1696965015190,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":1,\"Proto\":6,\"DstMac\":\"06:45:0B:D4:57:61\",\"TimeFlowStartMs\":1696965015190,\"SrcAddr\":\"10.0.14.70\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"TimeReceived\":1696965015,\"Bytes\":139,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965015156000000", + "{\"Proto\":6,\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Packets\":15,\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"SrcPort\":2380,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965015156,\"DstPort\":42844,\"Bytes\":2435,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeReceived\":1696965015,\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965010838}" + ], + [ + "1696965014956999936", + "{\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965014957,\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":2380,\"Packets\":18,\"Bytes\":1188,\"Interface\":\"ens5\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.14.70\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965010861,\"SrcPort\":55568,\"IfDirection\":0}" + ], + [ + "1696965014360999936", + "{\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014360,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0,\"SrcPort\":2379,\"Bytes\":312,\"TimeFlowEndMs\":1696965014361,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstPort\":34530,\"Packets\":3,\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"br-ex\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.14.70\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"Flags\":16,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.14.70\"}" + ], + [ + "1696965014323000064", + "{\"Bytes\":256152,\"Packets\":21,\"DstAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014323,\"Proto\":17,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"IfDirection\":0,\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965014148,\"SrcPort\":60413,\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstPort\":6081,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\"}" + ], + [ + "1696965013313999872", + "{\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013314,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":51212,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"DstPort\":2379,\"Interface\":\"ens5\",\"SrcAddr\":\"10.0.14.70\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965013314,\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"Bytes\":66,\"Packets\":1,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965015088999936", + "{\"TimeFlowEndMs\":1696965015089,\"DstAddr\":\"10.0.60.65\",\"Bytes\":66,\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.84.208\",\"TimeReceived\":1696965015,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":39152,\"TimeFlowStartMs\":1696965015089,\"Flags\":16,\"Packets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Etype\":2048,\"DstMac\":\"06:45:0B:D4:57:61\",\"DstPort\":6443,\"DstK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965014654000128", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":31178,\"DstPort\":6081,\"Packets\":136,\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowEndMs\":1696965014654,\"Bytes\":917924,\"Interface\":\"ens5\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Proto\":17,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965011350,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965015}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true" + }, + "values": [ + [ + "1696965014758000128", + "{\"Etype\":2048,\"TimeFlowEndMs\":1696965014758,\"Interface\":\"ens5\",\"Bytes\":217,\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Proto\":6,\"Flags\":16,\"IfDirection\":0,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Packets\":2,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965012357,\"SrcAddr\":\"10.0.89.254\",\"DstPort\":50280}" + ], + [ + "1696965014624999936", + "{\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":56820,\"TimeFlowEndMs\":1696965014625,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"DstPort\":6443,\"TimeFlowStartMs\":1696965012026,\"Interface\":\"ens5\",\"Packets\":3,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"IfDirection\":0,\"Bytes\":233,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048}" + ], + [ + "1696965014376000000", + "{\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"Packets\":20,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965014376,\"TimeFlowStartMs\":1696965010792,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Bytes\":2721,\"Flags\":16,\"Proto\":6,\"Etype\":2048,\"IfDirection\":0,\"TimeReceived\":1696965015,\"SrcPort\":48754,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":6443}" + ], + [ + "1696965014355000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.60.65\",\"Interface\":\"ens5\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965010758,\"DstPort\":6443,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":409,\"Packets\":3,\"Etype\":2048,\"SrcPort\":44066,\"TimeFlowEndMs\":1696965014355,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":0}" + ], + [ + "1696965013984000000", + "{\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"IfDirection\":0,\"SrcPort\":54922,\"DstK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"PktDropBytes\":32,\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965013984,\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965013984,\"Interface\":\"br-ex\",\"SrcAddr\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"PktDropLatestFlags\":16,\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013563000064", + "{\"SrcAddr\":\"10.0.89.254\",\"Flags\":16,\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"SrcPort\":56080,\"SrcMac\":\"06:D3:86:10:5C:57\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":66,\"TimeFlowStartMs\":1696965013563,\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.60.65\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013563,\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965013087000064", + "{\"Etype\":2048,\"Packets\":1,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcPort\":2380,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Bytes\":66,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965013087,\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965013087,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"DstAddr\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.89.254\",\"Proto\":6,\"DstPort\":38650}" + ], + [ + "1696965013048000000", + "{\"TimeFlowEndMs\":1696965013048,\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"DstPort\":6443,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"Bytes\":132,\"TimeReceived\":1696965015,\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965010464,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.60.65\",\"Flags\":16,\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":2,\"Proto\":6,\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcPort\":55124}" + ], + [ + "1696965012960000000", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcPort\":2379,\"SrcK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"Bytes\":66,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstPort\":51972,\"Flags\":16,\"TimeFlowEndMs\":1696965012960,\"SrcAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012960,\"SrcMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"Interface\":\"ens5\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"TimeReceived\":1696965015,\"IfDirection\":0}" + ], + [ + "1696965012960000000", + "{\"TimeFlowStartMs\":1696965012960,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965012960,\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"Proto\":6,\"Interface\":\"br-ex\",\"DstPort\":2379,\"DstMac\":\"06:45:0B:D4:57:61\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":51976,\"Etype\":2048,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropPackets\":1,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"PktDropBytes\":32,\"DstAddr\":\"10.0.60.65\",\"PktDropLatestFlags\":16}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965013011000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcAddr\":\"10.0.26.111\",\"Packets\":1,\"Etype\":2048,\"Interface\":\"br-ex\",\"Bytes\":101,\"TimeFlowEndMs\":1696965013011,\"TimeFlowStartMs\":1696965013011,\"IfDirection\":0,\"SrcPort\":8698,\"DstAddr\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstPort\":6443,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013390000128", + "{\"SrcPort\":31178,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.84.208\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":31038,\"Packets\":40,\"TimeFlowStartMs\":1696965011370,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"Proto\":17,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"TimeReceived\":1696965013,\"SrcAddr\":\"10.0.84.208\",\"DstPort\":6081,\"TimeFlowEndMs\":1696965013390}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-oauth-apiserver", + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013259000064", + "{\"Interface\":\"ovn-k8s-mp0\",\"Proto\":6,\"Etype\":2048,\"TimeFlowStartMs\":1696965013218,\"TimeReceived\":1696965015,\"SrcAddr\":\"10.129.0.50\",\"DstMac\":\"3A:E6:0C:3E:16:BC\",\"Bytes\":191,\"SrcK8S_OwnerType\":\"Deployment\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"Packets\":2,\"SrcK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013259,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcPort\":40512,\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"0A:58:0A:81:00:01\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012568999936", + "{\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"Packets\":3,\"DstMac\":\"0A:38:CA:F8:28:19\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Flags\":16,\"DstPort\":52692,\"SrcPort\":6443,\"IfDirection\":0,\"Bytes\":12579,\"Interface\":\"ens5\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965012569,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965012549,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstAddr\":\"10.0.84.208\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965013491000064", + "{\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Etype\":2048,\"Packets\":1,\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965013491,\"DstMac\":\"0A:38:CA:F8:28:19\",\"AgentIP\":\"10.0.84.208\",\"Interface\":\"br-ex\",\"DstPort\":6081,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":17596,\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013491,\"SrcAddr\":\"10.0.18.124\",\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"Proto\":17}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013422000128", + "{\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013422,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.84.208\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowStartMs\":1696965013422,\"Etype\":2048,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":17,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.45.84\",\"SrcPort\":38045,\"IfDirection\":0,\"AgentIP\":\"10.0.84.208\",\"DstPort\":6081,\"Bytes\":124,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\"}" + ], + [ + "1696965012839000064", + "{\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcPort\":38467,\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"SrcAddr\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965013,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"TimeFlowStartMs\":1696965012839,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Bytes\":124,\"Proto\":17,\"Packets\":1,\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowEndMs\":1696965012839}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965013391000064", + "{\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965013,\"Packets\":48,\"IfDirection\":0,\"DstMac\":\"0A:38:CA:F8:28:19\",\"TimeFlowStartMs\":1696965011482,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":6732,\"SrcK8S_HostIP\":\"10.0.60.65\",\"AgentIP\":\"10.0.84.208\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstPort\":6081,\"Proto\":17,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":63727,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"TimeFlowEndMs\":1696965013391,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013057999872", + "{\"DstMac\":\"0A:38:CA:F8:28:19\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeReceived\":1696965013,\"Bytes\":2242,\"DstK8S_HostIP\":\"10.0.84.208\",\"Interface\":\"ens5\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":59932,\"SrcPort\":6443,\"Flags\":16,\"TimeFlowStartMs\":1696965013058,\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965013058,\"AgentIP\":\"10.0.84.208\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"IfDirection\":0,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012960000000", + "{\"IfDirection\":0,\"Etype\":2048,\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965012960,\"Proto\":6,\"AgentIP\":\"10.0.84.208\",\"Packets\":2,\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"Flags\":16,\"SrcAddr\":\"10.0.59.108\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"TimeFlowStartMs\":1696965008736,\"Bytes\":299,\"TimeReceived\":1696965013,\"DstAddr\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"DstPort\":34526,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcPort\":6443,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965014289999872", + "{\"SrcAddr\":\"10.0.18.124\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Packets\":1,\"SrcPort\":42252,\"TimeFlowStartMs\":1696965014290,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"AgentIP\":\"10.0.18.124\",\"Etype\":2048,\"Interface\":\"br-ex\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":6081,\"DstAddr\":\"10.0.84.208\",\"Proto\":17,\"TimeFlowEndMs\":1696965014290,\"DstMac\":\"02:E7:EA:46:6A:33\"}" + ], + [ + "1696965013889999872", + "{\"Proto\":17,\"SrcAddr\":\"10.0.18.124\",\"DstMac\":\"02:E7:EA:46:6A:33\",\"IfDirection\":1,\"SrcPort\":43694,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"Bytes\":124,\"TimeFlowEndMs\":1696965013890,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"TimeFlowStartMs\":1696965013890,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Packets\":1,\"DstPort\":6081,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965013862000128", + "{\"DstMac\":\"02:E7:EA:46:6A:33\",\"Bytes\":132,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcAddr\":\"10.0.18.124\",\"Packets\":1,\"TimeReceived\":1696965014,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013862,\"Proto\":17,\"SrcPort\":16799,\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6081,\"IfDirection\":1,\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965013862,\"AgentIP\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013745999872", + "{\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013746,\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":17,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"IfDirection\":1,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"02:E7:EA:46:6A:33\",\"Packets\":1,\"TimeFlowEndMs\":1696965013746,\"SrcPort\":6848,\"Etype\":2048,\"SrcMac\":\"02:79:42:1F:26:B7\",\"Bytes\":124}" + ], + [ + "1696965013347000064", + "{\"Bytes\":144,\"SrcAddr\":\"10.0.18.124\",\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965013347,\"DstPort\":6081,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"DstMac\":\"02:E7:EA:46:6A:33\",\"TimeFlowEndMs\":1696965013347,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"IfDirection\":1,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.18.124\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":39851,\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\"}" + ], + [ + "1696965013089999872", + "{\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"TimeFlowEndMs\":1696965013090,\"SrcMac\":\"02:79:42:1F:26:B7\",\"Bytes\":124,\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"TimeReceived\":1696965014,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.18.124\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Packets\":1,\"DstMac\":\"02:E7:EA:46:6A:33\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"AgentIP\":\"10.0.18.124\",\"SrcPort\":32309,\"Proto\":17,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965013090}" + ], + [ + "1696965013022000128", + "{\"TimeReceived\":1696965014,\"TimeFlowStartMs\":1696965013022,\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"Interface\":\"ens5\",\"AgentIP\":\"10.0.18.124\",\"DstMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013022,\"Packets\":1,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"Etype\":2048,\"SrcPort\":63716,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"IfDirection\":1,\"Proto\":17}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965013284999936", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":3800,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"Packets\":1,\"SrcMac\":\"06:94:FC:23:41:67\",\"Interface\":\"ens5\",\"IfDirection\":1,\"DstPort\":6081,\"Proto\":17,\"SrcPort\":6387,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965013,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.84.208\",\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowStartMs\":1696965013285,\"AgentIP\":\"10.0.45.84\",\"SrcAddr\":\"10.0.45.84\",\"TimeFlowEndMs\":1696965013285,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965012844999936", + "{\"DstK8S_HostIP\":\"10.0.84.208\",\"Interface\":\"ens5\",\"AgentIP\":\"10.0.45.84\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Bytes\":2739,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965012845,\"TimeReceived\":1696965013,\"SrcMac\":\"06:94:FC:23:41:67\",\"Etype\":2048,\"SrcAddr\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":17,\"SrcPort\":45599,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":1,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstAddr\":\"10.0.84.208\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstPort\":6081,\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965012845}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965015054000128", + "{\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowStartMs\":1696965015054,\"Packets\":1,\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":4193,\"TimeFlowEndMs\":1696965015054,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"DstPort\":58300,\"SrcPort\":10250,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstAddr\":\"10.0.84.208\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ], + [ + "1696965014657999872", + "{\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"SrcPort\":63727,\"Interface\":\"br-ex\",\"Bytes\":11265,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"SrcMac\":\"06:45:0B:D4:57:61\",\"Proto\":17,\"TimeFlowStartMs\":1696965011497,\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965014658,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6081,\"Packets\":80,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013057999872", + "{\"TimeFlowStartMs\":1696965013058,\"Interface\":\"br-ex\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":6443,\"DstK8S_HostIP\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"TimeReceived\":1696965015,\"Packets\":1,\"DstPort\":59932,\"TimeFlowEndMs\":1696965013058,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstAddr\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":157}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965012985999872", + "{\"DstPort\":10250,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"PktDropBytes\":32,\"DstMac\":\"A2:02:A3:E5:01:A8\",\"SrcPort\":51784,\"AgentIP\":\"10.0.84.208\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcMac\":\"0A:58:0A:80:02:01\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"DstAddr\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965012986,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.128.2.16\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965013,\"Interface\":\"ovn-k8s-mp0\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"PktDropPackets\":1,\"Proto\":6,\"TimeFlowEndMs\":1696965012986,\"SrcK8S_Name\":\"prometheus-k8s-0\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965013376000000", + "{\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcAddr\":\"10.0.60.65\",\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965011565,\"AgentIP\":\"10.0.84.208\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"Etype\":2048,\"DstPort\":6081,\"TimeReceived\":1696965013,\"Packets\":44,\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":63727,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstAddr\":\"10.0.84.208\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965013376,\"Bytes\":6146,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true" + }, + "values": [ + [ + "1696965013326000128", + "{\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Bytes\":124,\"TimeReceived\":1696965013,\"TimeFlowEndMs\":1696965013326,\"DstK8S_HostIP\":\"10.0.84.208\",\"AgentIP\":\"10.0.45.84\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":6387,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"06:94:FC:23:41:67\",\"SrcAddr\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013326,\"Etype\":2048,\"DstAddr\":\"10.0.84.208\",\"DstPort\":6081,\"Proto\":17}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true" + }, + "values": [ + [ + "1696965014664000000", + "{\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Bytes\":13257,\"DstK8S_OwnerType\":\"Node\",\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965011386,\"TimeFlowEndMs\":1696965014664,\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.84.208\",\"Proto\":17,\"SrcPort\":63727,\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":1,\"DstAddr\":\"10.0.84.208\",\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"Packets\":94}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node" + }, + "values": [ + [ + "1696965012448999936", + "{\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965012,\"AgentIP\":\"10.0.89.254\",\"Flags\":16,\"Etype\":2048,\"IfDirection\":0,\"Interface\":\"br-ex\",\"TimeFlowStartMs\":1696965012449,\"DstPort\":2379,\"Proto\":6,\"DstAddr\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"Bytes\":66,\"SrcPort\":33316,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012449,\"SrcK8S_HostIP\":\"10.0.14.70\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"SrcAddr\":\"10.0.14.70\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965012540000000", + "{\"SrcAddr\":\"10.0.60.65\",\"TimeReceived\":1696965012,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcPort\":50144,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowStartMs\":1696965012540,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"Etype\":2048,\"Proto\":6,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.89.254\",\"PktDropPackets\":1,\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012540,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.89.254\"}" + ], + [ + "1696965012540000000", + "{\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowEndMs\":1696965012540,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012540,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"PktDropPackets\":1,\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":49790,\"AgentIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"PktDropBytes\":32,\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"DstK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"PktDropLatestFlags\":16,\"TimeReceived\":1696965012,\"IfDirection\":0}" + ], + [ + "1696965012540000000", + "{\"TimeFlowStartMs\":1696965012540,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6,\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":2379,\"TimeFlowEndMs\":1696965012540,\"TimeReceived\":1696965012,\"DstPort\":38486,\"AgentIP\":\"10.0.89.254\",\"PktDropPackets\":1,\"DstAddr\":\"10.0.89.254\",\"Flags\":16,\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.89.254\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965012540000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":0,\"Interface\":\"br-ex\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"Proto\":6,\"Etype\":2048,\"AgentIP\":\"10.0.89.254\",\"DstPort\":2379,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":49768,\"PktDropBytes\":32,\"DstAddr\":\"10.0.89.254\",\"PktDropPackets\":1,\"Flags\":16,\"TimeFlowStartMs\":1696965012540,\"TimeFlowEndMs\":1696965012540,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"TimeReceived\":1696965012}" + ], + [ + "1696965012539000064", + "{\"DstPort\":2379,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowStartMs\":1696965012539,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965012539,\"SrcK8S_HostIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.89.254\",\"Proto\":6,\"PktDropBytes\":32,\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"DstK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropPackets\":1,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":0,\"Etype\":2048,\"TimeReceived\":1696965012,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":51772,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965012539000064", + "{\"AgentIP\":\"10.0.89.254\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012539,\"DstPort\":34632,\"TimeReceived\":1696965012,\"Interface\":\"br-ex\",\"IfDirection\":0,\"SrcPort\":2379,\"SrcAddr\":\"10.0.60.65\",\"PktDropPackets\":1,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"DstAddr\":\"10.0.89.254\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965012539,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32}" + ], + [ + "1696965012539000064", + "{\"Proto\":6,\"Interface\":\"br-ex\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012539,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965012539,\"PktDropPackets\":1,\"DstAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965012,\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"SrcPort\":51416,\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965012507000064", + "{\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeReceived\":1696965012,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"Interface\":\"ens5\",\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"TimeFlowStartMs\":1696965012507,\"Bytes\":124,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Proto\":17,\"DstPort\":6081,\"TimeFlowEndMs\":1696965012507,\"AgentIP\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"SrcAddr\":\"10.0.84.208\",\"DstAddr\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"SrcPort\":3434,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965012868999936", + "{\"DstK8S_HostIP\":\"10.0.89.254\",\"DstPort\":6081,\"IfDirection\":1,\"SrcAddr\":\"10.0.45.84\",\"Interface\":\"ens5\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.89.254\",\"TimeReceived\":1696965013,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":17,\"Packets\":1,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":31518,\"TimeFlowStartMs\":1696965012869,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012869,\"Bytes\":124,\"SrcMac\":\"06:94:FC:23:41:67\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965014587000064", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"Bytes\":66,\"Interface\":\"br-ex\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965014587,\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowEndMs\":1696965014587,\"Flags\":16,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"DstPort\":2379,\"DstAddr\":\"10.0.89.254\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Packets\":1,\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":51942}" + ], + [ + "1696965014496000000", + "{\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":48402,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Etype\":2048,\"TimeReceived\":1696965015,\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":2379,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"ens5\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.89.254\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":66,\"TimeFlowStartMs\":1696965014496,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"IfDirection\":1,\"Packets\":1,\"TimeFlowEndMs\":1696965014496}" + ], + [ + "1696965014392999936", + "{\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":66,\"Packets\":1,\"Proto\":6,\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965014393,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"TimeFlowStartMs\":1696965014393,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":50030,\"TimeReceived\":1696965015,\"IfDirection\":1,\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965014348999936", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.89.254\",\"IfDirection\":1,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Packets\":8,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014349,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965010865,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"Flags\":16,\"SrcPort\":6443,\"DstAddr\":\"10.0.89.254\",\"DstPort\":48754,\"DstMac\":\"06:D3:86:10:5C:57\",\"Bytes\":4064}" + ], + [ + "1696965014332000000", + "{\"TimeFlowEndMs\":1696965014332,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"IfDirection\":1,\"DstPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"SrcPort\":49756,\"DstMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014332,\"TimeReceived\":1696965015,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Bytes\":66,\"Proto\":6,\"DstAddr\":\"10.0.89.254\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965014116000000", + "{\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"Flags\":16,\"Bytes\":112,\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Proto\":6,\"DstAddr\":\"10.0.89.254\",\"IfDirection\":1,\"SrcPort\":2379,\"SrcMac\":\"06:45:0B:D4:57:61\",\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Packets\":1,\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965014116,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014116,\"DstPort\":42474,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\"}" + ], + [ + "1696965013940000000", + "{\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013940,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":2379,\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.60.65\",\"Bytes\":112,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"Interface\":\"ens5\",\"DstPort\":43760,\"IfDirection\":1,\"DstAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965013940,\"AgentIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\"}" + ], + [ + "1696965013659000064", + "{\"DstAddr\":\"10.0.89.254\",\"DstK8S_HostIP\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":2379,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Bytes\":138,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstPort\":43806,\"Interface\":\"ens5\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965013659,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"TimeFlowEndMs\":1696965013659,\"TimeReceived\":1696965015,\"IfDirection\":1,\"Etype\":2048,\"Packets\":1}" + ], + [ + "1696965013564000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstPort\":2379,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013564,\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"SrcPort\":51330,\"TimeFlowEndMs\":1696965013564,\"IfDirection\":1,\"TimeReceived\":1696965015,\"Bytes\":66,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstAddr\":\"10.0.89.254\"}" + ], + [ + "1696965013364999936", + "{\"Packets\":1,\"SrcPort\":2379,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"Interface\":\"ens5\",\"TimeReceived\":1696965015,\"Bytes\":138,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013365,\"DstAddr\":\"10.0.89.254\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965013365,\"DstK8S_HostIP\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":38522,\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"Proto\":6,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013091000064", + "{\"TimeFlowEndMs\":1696965013091,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"br-ex\",\"Flags\":512,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965013091,\"DstMac\":\"06:D3:86:10:5C:57\",\"DstPort\":2380,\"SrcAddr\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":1,\"Etype\":2048,\"SrcPort\":38650,\"Bytes\":66,\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.89.254\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013081999872", + "{\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"IfDirection\":1,\"TimeReceived\":1696965015,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013082,\"Flags\":16,\"TimeFlowStartMs\":1696965013082,\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Bytes\":854,\"DstAddr\":\"10.0.89.254\",\"Interface\":\"br-ex\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":51362,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcAddr\":\"10.0.60.65\"}" + ], + [ + "1696965012960000000", + "{\"DstPort\":51976,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"TimeFlowStartMs\":1696965012960,\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012960,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"Proto\":6,\"SrcMac\":\"06:45:0B:D4:57:61\",\"Packets\":1,\"Interface\":\"br-ex\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"IfDirection\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.89.254\",\"Bytes\":66,\"SrcPort\":2379,\"DstAddr\":\"10.0.89.254\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965012448000000", + "{\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"PktDropBytes\":32,\"TimeFlowStartMs\":1696965012448,\"Interface\":\"lo\",\"SrcPort\":57032,\"TimeReceived\":1696965012,\"PktDropPackets\":1,\"AgentIP\":\"10.0.89.254\",\"DstMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"10.0.89.254\",\"PktDropLatestFlags\":16,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.89.254\",\"Flags\":16,\"DstPort\":2379,\"SrcMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965012448,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965012448000000", + "{\"Interface\":\"lo\",\"TimeFlowStartMs\":1696965012448,\"AgentIP\":\"10.0.89.254\",\"PktDropLatestFlags\":16,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048,\"SrcPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.89.254\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"IfDirection\":0,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.89.254\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965012,\"PktDropPackets\":1,\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965012448,\"DstPort\":57104,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965012448000000", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"SrcK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"DstMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"SrcK8S_HostIP\":\"10.0.89.254\",\"DstK8S_OwnerType\":\"Node\",\"IfDirection\":0,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965012448,\"Flags\":16,\"PktDropLatestFlags\":16,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstPort\":2379,\"SrcK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeFlowEndMs\":1696965012448,\"Interface\":\"lo\",\"AgentIP\":\"10.0.89.254\",\"TimeReceived\":1696965012,\"SrcAddr\":\"10.0.89.254\",\"DstAddr\":\"10.0.89.254\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"Proto\":6,\"SrcPort\":43742,\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965012529999872", + "{\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcAddr\":\"10.0.14.70\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965007925,\"DstMac\":\"0A:B9:3A:21:FF:AD\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"IfDirection\":0,\"DstAddr\":\"10.0.89.254\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstPort\":46542,\"AgentIP\":\"10.0.89.254\",\"Flags\":16,\"Bytes\":3733,\"Packets\":23,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6,\"Interface\":\"br-ex\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965012,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"SrcPort\":2380,\"TimeFlowEndMs\":1696965012530}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965014400000000", + "{\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965015,\"IfDirection\":1,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.89.254\",\"DstAddr\":\"10.0.89.254\",\"Interface\":\"br-ex\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Bytes\":1676,\"SrcPort\":2379,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"Packets\":1,\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965014400,\"Etype\":2048,\"TimeFlowEndMs\":1696965014400,\"SrcAddr\":\"10.0.60.65\",\"DstPort\":52116}" + ], + [ + "1696965014351000064", + "{\"IfDirection\":1,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcPort\":6443,\"Flags\":16,\"TimeFlowStartMs\":1696965010815,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"TimeReceived\":1696965015,\"Packets\":13,\"Proto\":6,\"DstAddr\":\"10.0.89.254\",\"SrcAddr\":\"10.0.60.65\",\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Etype\":2048,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"TimeFlowEndMs\":1696965014351,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":48754,\"Bytes\":25389,\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965013159000064", + "{\"TimeFlowStartMs\":1696965011757,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965013159,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Flags\":16,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":470,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.89.254\",\"SrcPort\":6443,\"DstK8S_HostIP\":\"10.0.89.254\",\"Etype\":2048,\"Proto\":6,\"IfDirection\":1,\"TimeReceived\":1696965015,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":44066,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Packets\":2,\"SrcAddr\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\"}" + ], + [ + "1696965013084999936", + "{\"TimeFlowEndMs\":1696965013085,\"IfDirection\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstAddr\":\"10.0.89.254\",\"TimeReceived\":1696965015,\"Flags\":16,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.89.254\",\"DstPort\":2379,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013085,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":51362,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"Bytes\":66,\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965015099000064", + "{\"SrcAddr\":\"::1\",\"TimeFlowStartMs\":1696965015099,\"Proto\":6,\"TimeFlowEndMs\":1696965015099,\"Interface\":\"lo\",\"IfDirection\":0,\"PktDropLatestFlags\":16,\"Etype\":34525,\"SrcPort\":59214,\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"DstAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965015099000064", + "{\"SrcAddr\":\"::1\",\"AgentIP\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":48048,\"DstMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965015099,\"DstPort\":2379,\"IfDirection\":0,\"Interface\":\"lo\",\"PktDropBytes\":32,\"Etype\":34525,\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965015099,\"PktDropPackets\":1,\"Flags\":16,\"DstAddr\":\"::1\"}" + ], + [ + "1696965015099000064", + "{\"PktDropBytes\":32,\"DstPort\":2379,\"SrcAddr\":\"::1\",\"Etype\":34525,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"TimeFlowEndMs\":1696965015099,\"Interface\":\"lo\",\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":59540,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965015099,\"DstAddr\":\"::1\",\"Proto\":6,\"TimeReceived\":1696965015,\"IfDirection\":0}" + ], + [ + "1696965015099000064", + "{\"DstPort\":2379,\"IfDirection\":0,\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"Flags\":16,\"TimeFlowEndMs\":1696965015099,\"PktDropBytes\":32,\"DstAddr\":\"::1\",\"Etype\":34525,\"SrcPort\":48086,\"TimeFlowStartMs\":1696965015099,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"::1\"}" + ], + [ + "1696965015099000064", + "{\"DstAddr\":\"::1\",\"PktDropPackets\":1,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965015099,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379,\"SrcPort\":59374,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"Etype\":34525,\"SrcAddr\":\"::1\",\"IfDirection\":0,\"PktDropBytes\":32,\"TimeFlowStartMs\":1696965015099,\"Interface\":\"lo\",\"TimeReceived\":1696965015,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965015099000064", + "{\"PktDropLatestFlags\":16,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"::1\",\"DstPort\":2379,\"TimeReceived\":1696965015,\"IfDirection\":0,\"TimeFlowEndMs\":1696965015099,\"Proto\":6,\"PktDropPackets\":1,\"SrcAddr\":\"::1\",\"TimeFlowStartMs\":1696965015099,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":58884,\"Etype\":34525}" + ], + [ + "1696965015099000064", + "{\"AgentIP\":\"10.0.60.65\",\"Etype\":34525,\"TimeFlowStartMs\":1696965015099,\"SrcAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"DstAddr\":\"::1\",\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":2379,\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"Interface\":\"lo\",\"Proto\":6,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965015099,\"SrcPort\":59218,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965015099000064", + "{\"TimeFlowStartMs\":1696965015099,\"PktDropPackets\":1,\"DstAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"IfDirection\":0,\"Interface\":\"lo\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"Etype\":34525,\"SrcPort\":59578,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"Flags\":16,\"DstPort\":2379,\"TimeFlowEndMs\":1696965015099,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965014588000000", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965014588,\"DstPort\":6443,\"TimeReceived\":1696965015,\"Etype\":34525,\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965014588,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"Flags\":16,\"DstAddr\":\"::1\",\"Proto\":6,\"IfDirection\":0,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"SrcPort\":35346}" + ], + [ + "1696965014587000064", + "{\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965014587,\"PktDropBytes\":32,\"IfDirection\":0,\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"Proto\":6,\"DstPort\":41852,\"TimeFlowStartMs\":1696965014587,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"::1\",\"Etype\":34525,\"SrcAddr\":\"::1\",\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":2379,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965014587000064", + "{\"PktDropPackets\":1,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"SrcPort\":58728,\"DstPort\":2379,\"SrcAddr\":\"::1\",\"TimeFlowEndMs\":1696965014587,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\",\"TimeFlowStartMs\":1696965014587,\"IfDirection\":0,\"Etype\":34525}" + ], + [ + "1696965014587000064", + "{\"SrcPort\":59158,\"TimeReceived\":1696965015,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"::1\",\"DstMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\",\"TimeFlowStartMs\":1696965014587,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":2379,\"Etype\":34525,\"TimeFlowEndMs\":1696965014587,\"AgentIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"Interface\":\"lo\",\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965014587000064", + "{\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965014587,\"Etype\":34525,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"DstPort\":48414,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"::1\",\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"TimeReceived\":1696965015,\"Proto\":6,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965014587,\"SrcPort\":2379,\"SrcAddr\":\"::1\"}" + ], + [ + "1696965014587000064", + "{\"PktDropLatestFlags\":16,\"IfDirection\":0,\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":48074,\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965014587,\"TimeFlowStartMs\":1696965014587,\"SrcAddr\":\"::1\",\"Etype\":34525,\"PktDropBytes\":32,\"DstPort\":2379,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"Flags\":16}" + ], + [ + "1696965014587000064", + "{\"Etype\":34525,\"DstMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\",\"Proto\":6,\"SrcPort\":48226,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"::1\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"TimeFlowStartMs\":1696965014587,\"DstPort\":2379,\"Flags\":16,\"TimeFlowEndMs\":1696965014587,\"Interface\":\"lo\",\"SrcMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965014587000064", + "{\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014587,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965014587,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"DstPort\":2379,\"Etype\":34525,\"SrcPort\":48366,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"::1\",\"Proto\":6,\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"DstAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"TimeReceived\":1696965015,\"Flags\":16}" + ], + [ + "1696965014587000064", + "{\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"DstPort\":48226,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965014587,\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965014587,\"PktDropPackets\":1,\"IfDirection\":0,\"SrcAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":34525,\"Flags\":16,\"SrcPort\":2379,\"DstAddr\":\"::1\"}" + ], + [ + "1696965014587000064", + "{\"TimeReceived\":1696965015,\"SrcPort\":59614,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"TimeFlowStartMs\":1696965014587,\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"DstAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":34525,\"IfDirection\":0,\"TimeFlowEndMs\":1696965014587,\"Proto\":6,\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"PktDropLatestFlags\":16}" + ], + [ + "1696965014587000064", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowStartMs\":1696965014587,\"Proto\":6,\"PktDropPackets\":1,\"SrcAddr\":\"::1\",\"SrcPort\":59582,\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"Etype\":34525,\"Interface\":\"lo\",\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965014587,\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16}" + ], + [ + "1696965014204000000", + "{\"Flags\":16,\"TimeFlowEndMs\":1696965014204,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"DstPort\":6443,\"SrcAddr\":\"::1\",\"SrcPort\":35198,\"Etype\":34525,\"TimeFlowStartMs\":1696965014204,\"IfDirection\":0,\"TimeReceived\":1696965015,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"DstAddr\":\"::1\"}" + ], + [ + "1696965014187000064", + "{\"SrcPort\":35218,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":6443,\"IfDirection\":0,\"Etype\":34525,\"Proto\":6,\"SrcAddr\":\"::1\",\"TimeFlowEndMs\":1696965014187,\"TimeReceived\":1696965015,\"DstAddr\":\"::1\",\"TimeFlowStartMs\":1696965014187,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"PktDropBytes\":32,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"lo\",\"Flags\":16,\"PktDropPackets\":1,\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\"}" + ], + [ + "1696965014075000064", + "{\"SrcAddr\":\"::1\",\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":59678,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"Interface\":\"lo\",\"TimeFlowEndMs\":1696965014075,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965014075,\"SrcMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"PktDropPackets\":1,\"Etype\":34525,\"PktDropBytes\":32,\"DstAddr\":\"::1\"}" + ], + [ + "1696965014075000064", + "{\"DstPort\":2379,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"SrcPort\":58756,\"TimeFlowEndMs\":1696965014075,\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"TimeFlowStartMs\":1696965014075,\"Etype\":34525,\"IfDirection\":0,\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstAddr\":\"::1\",\"SrcAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"Proto\":6}" + ], + [ + "1696965014075000064", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowEndMs\":1696965014075,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"Etype\":34525,\"TimeFlowStartMs\":1696965014075,\"SrcPort\":48280,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"DstAddr\":\"::1\",\"DstPort\":2379,\"TimeReceived\":1696965015,\"Flags\":16,\"SrcAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"Interface\":\"lo\",\"PktDropPackets\":1}" + ], + [ + "1696965014075000064", + "{\"Flags\":16,\"PktDropLatestFlags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"00:00:00:00:00:00\",\"IfDirection\":0,\"TimeFlowEndMs\":1696965014075,\"SrcAddr\":\"::1\",\"TimeFlowStartMs\":1696965014075,\"PktDropBytes\":32,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"lo\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"Proto\":6,\"SrcPort\":2379,\"DstPort\":59638,\"AgentIP\":\"10.0.60.65\",\"Etype\":34525,\"DstAddr\":\"::1\"}" + ], + [ + "1696965014075000064", + "{\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"::1\",\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"SrcPort\":59060,\"SrcAddr\":\"::1\",\"DstPort\":2379,\"TimeFlowEndMs\":1696965014075,\"Proto\":6,\"TimeReceived\":1696965015,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":34525,\"Interface\":\"lo\",\"TimeFlowStartMs\":1696965014075,\"IfDirection\":0}" + ], + [ + "1696965014075000064", + "{\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965014075,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":34525,\"Interface\":\"lo\",\"Proto\":6,\"DstMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"SrcAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965014075,\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"IfDirection\":0,\"DstAddr\":\"::1\",\"SrcPort\":58714}" + ], + [ + "1696965014075000064", + "{\"TimeFlowEndMs\":1696965014075,\"DstAddr\":\"::1\",\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965014075,\"SrcPort\":48402,\"Proto\":6,\"SrcAddr\":\"::1\",\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"Etype\":34525,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"TimeReceived\":1696965015,\"Flags\":16,\"DstPort\":2379,\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965014075000064", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"PktDropPackets\":1,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965014075,\"PktDropBytes\":32,\"DstAddr\":\"::1\",\"TimeReceived\":1696965015,\"Proto\":6,\"Etype\":34525,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":2379,\"PktDropLatestFlags\":16,\"DstPort\":58728,\"Interface\":\"lo\",\"TimeFlowEndMs\":1696965014075}" + ], + [ + "1696965013564000000", + "{\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"Proto\":6,\"PktDropPackets\":1,\"SrcAddr\":\"::1\",\"Etype\":34525,\"SrcPort\":59492,\"TimeReceived\":1696965015,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"Flags\":16,\"DstPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"lo\",\"TimeFlowStartMs\":1696965013564,\"TimeFlowEndMs\":1696965013564,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\"}" + ], + [ + "1696965013564000000", + "{\"Interface\":\"lo\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestFlags\":16,\"DstAddr\":\"::1\",\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"DstPort\":2379,\"TimeFlowEndMs\":1696965013564,\"SrcAddr\":\"::1\",\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965013564,\"DstMac\":\"00:00:00:00:00:00\",\"Etype\":34525,\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"SrcPort\":59344}" + ], + [ + "1696965013564000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcPort\":48060,\"TimeFlowStartMs\":1696965013564,\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"SrcAddr\":\"::1\",\"TimeFlowEndMs\":1696965013564,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"Flags\":16,\"Etype\":34525,\"PktDropBytes\":32,\"DstAddr\":\"::1\"}" + ], + [ + "1696965013564000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013564,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"IfDirection\":0,\"Etype\":34525,\"DstPort\":2379,\"SrcMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"PktDropPackets\":1,\"SrcPort\":48164,\"PktDropLatestFlags\":16,\"DstAddr\":\"::1\",\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"TimeFlowEndMs\":1696965013564,\"TimeReceived\":1696965015}" + ], + [ + "1696965013564000000", + "{\"TimeFlowEndMs\":1696965013564,\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":6443,\"SrcMac\":\"00:00:00:00:00:00\",\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":39970,\"Proto\":6,\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965013564,\"Flags\":16,\"PktDropLatestFlags\":16,\"SrcAddr\":\"::1\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":34525,\"DstAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"lo\"}" + ], + [ + "1696965013563000064", + "{\"SrcAddr\":\"::1\",\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965013563,\"PktDropPackets\":1,\"TimeFlowStartMs\":1696965013563,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":34525,\"DstAddr\":\"::1\",\"IfDirection\":0,\"DstPort\":41806,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"SrcPort\":2379,\"Interface\":\"lo\",\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013052000000", + "{\"TimeFlowStartMs\":1696965013052,\"TimeReceived\":1696965015,\"SrcPort\":59198,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"::1\",\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965013052,\"Etype\":34525,\"Interface\":\"lo\",\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"IfDirection\":0,\"DstPort\":2379,\"DstAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"PktDropPackets\":1}" + ], + [ + "1696965013052000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeFlowEndMs\":1696965013052,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"PktDropBytes\":32,\"DstPort\":6443,\"Interface\":\"lo\",\"Proto\":6,\"DstAddr\":\"::1\",\"Etype\":34525,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":35226,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"PktDropPackets\":1,\"Flags\":16,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965013052,\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965013052000000", + "{\"DstPort\":2379,\"PktDropPackets\":1,\"Interface\":\"lo\",\"PktDropBytes\":32,\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"Etype\":34525,\"TimeFlowStartMs\":1696965013052,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestFlags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"SrcAddr\":\"::1\",\"Proto\":6,\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965013052,\"AgentIP\":\"10.0.60.65\",\"SrcPort\":59662,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013052000000", + "{\"Etype\":34525,\"DstMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\",\"PktDropBytes\":32,\"IfDirection\":0,\"DstPort\":2379,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":58944,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"::1\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"PktDropPackets\":1,\"Proto\":6,\"TimeFlowEndMs\":1696965013052,\"TimeFlowStartMs\":1696965013052,\"Interface\":\"lo\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965013052000000", + "{\"DstPort\":2379,\"Flags\":16,\"IfDirection\":0,\"DstAddr\":\"::1\",\"PktDropLatestFlags\":16,\"Interface\":\"lo\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"SrcPort\":59580,\"TimeReceived\":1696965015,\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965013052,\"SrcAddr\":\"::1\",\"TimeFlowEndMs\":1696965013052,\"PktDropBytes\":32,\"Proto\":6,\"Etype\":34525,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965013052000000", + "{\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"DstAddr\":\"::1\",\"Proto\":6,\"PktDropPackets\":1,\"PktDropBytes\":32,\"SrcMac\":\"00:00:00:00:00:00\",\"Etype\":34525,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013052,\"PktDropLatestFlags\":16,\"SrcPort\":59636,\"TimeFlowEndMs\":1696965013052,\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"::1\",\"DstPort\":2379,\"TimeReceived\":1696965015}" + ], + [ + "1696965013052000000", + "{\"TimeFlowStartMs\":1696965013052,\"DstAddr\":\"::1\",\"Flags\":16,\"Etype\":34525,\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"Proto\":6,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"::1\",\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"PktDropBytes\":32,\"AgentIP\":\"10.0.60.65\",\"DstPort\":59614,\"TimeFlowEndMs\":1696965013052,\"SrcPort\":2379}" + ], + [ + "1696965013051000064", + "{\"PktDropPackets\":1,\"IfDirection\":0,\"Proto\":6,\"TimeFlowStartMs\":1696965013051,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"lo\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"DstPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965015,\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":59424,\"TimeFlowEndMs\":1696965013051,\"DstAddr\":\"::1\",\"Etype\":34525,\"PktDropBytes\":32}" + ], + [ + "1696965013051000064", + "{\"Etype\":34525,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"TimeFlowStartMs\":1696965013051,\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"DstAddr\":\"::1\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Interface\":\"lo\",\"PktDropBytes\":32,\"Proto\":6,\"TimeFlowEndMs\":1696965013051,\"SrcPort\":48136,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965013051000064", + "{\"PktDropBytes\":32,\"Flags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":34525,\"TimeFlowStartMs\":1696965013051,\"IfDirection\":0,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"::1\",\"AgentIP\":\"10.0.60.65\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"Interface\":\"lo\",\"DstPort\":58884,\"PktDropPackets\":1,\"DstAddr\":\"::1\",\"SrcPort\":2379,\"TimeFlowEndMs\":1696965013051,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16}" + ], + [ + "1696965013051000064", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropBytes\":32,\"DstPort\":2379,\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Proto\":6,\"SrcAddr\":\"::1\",\"Flags\":16,\"TimeFlowStartMs\":1696965013051,\"IfDirection\":0,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965013051,\"AgentIP\":\"10.0.60.65\",\"SrcPort\":58824,\"PktDropPackets\":1,\"Etype\":34525}" + ], + [ + "1696965013051000064", + "{\"TimeFlowStartMs\":1696965013051,\"PktDropLatestFlags\":16,\"IfDirection\":0,\"TimeFlowEndMs\":1696965013051,\"Flags\":16,\"TimeReceived\":1696965015,\"SrcPort\":59048,\"Interface\":\"lo\",\"PktDropBytes\":32,\"DstPort\":2379,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcAddr\":\"::1\",\"Etype\":34525,\"AgentIP\":\"10.0.60.65\",\"DstAddr\":\"::1\",\"Proto\":6}" + ], + [ + "1696965012540000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcAddr\":\"::1\",\"TimeFlowEndMs\":1696965012540,\"DstAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"PktDropPackets\":1,\"Interface\":\"lo\",\"SrcPort\":59092,\"DstPort\":2379,\"IfDirection\":0,\"Etype\":34525,\"AgentIP\":\"10.0.60.65\",\"Flags\":16,\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965012540,\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ], + [ + "1696965012540000000", + "{\"Proto\":6,\"PktDropPackets\":1,\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"Etype\":34525,\"TimeReceived\":1696965015,\"Flags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"::1\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcPort\":59660,\"DstPort\":2379,\"SrcMac\":\"00:00:00:00:00:00\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965012540,\"TimeFlowEndMs\":1696965012540,\"IfDirection\":0,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965012540000000", + "{\"SrcPort\":59444,\"Flags\":16,\"SrcAddr\":\"::1\",\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"TimeReceived\":1696965015,\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012540,\"Interface\":\"lo\",\"AgentIP\":\"10.0.60.65\",\"DstPort\":2379,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":34525,\"TimeFlowStartMs\":1696965012540,\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"DstAddr\":\"::1\"}" + ], + [ + "1696965012540000000", + "{\"IfDirection\":0,\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965012540,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965012540,\"SrcPort\":48318,\"PktDropBytes\":32,\"Flags\":16,\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":34525,\"PktDropPackets\":1,\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Proto\":6,\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestFlags\":16,\"SrcMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\"}" + ], + [ + "1696965012540000000", + "{\"Interface\":\"lo\",\"TimeReceived\":1696965015,\"IfDirection\":0,\"SrcAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"DstAddr\":\"::1\",\"SrcPort\":58966,\"TimeFlowStartMs\":1696965012540,\"TimeFlowEndMs\":1696965012540,\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"Proto\":6,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"Etype\":34525}" + ], + [ + "1696965012540000000", + "{\"TimeFlowStartMs\":1696965012540,\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"Etype\":34525,\"Interface\":\"lo\",\"DstAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965012540,\"PktDropPackets\":1,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"SrcPort\":59130}" + ], + [ + "1696965012540000000", + "{\"Etype\":34525,\"DstAddr\":\"::1\",\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":59368,\"TimeFlowStartMs\":1696965012540,\"PktDropLatestFlags\":16,\"SrcPort\":2379,\"IfDirection\":0,\"Proto\":6,\"PktDropPackets\":1,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965012540,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Flags\":16,\"Interface\":\"lo\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965015,\"SrcMac\":\"00:00:00:00:00:00\"}" + ], + [ + "1696965012540000000", + "{\"SrcMac\":\"00:00:00:00:00:00\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"DstAddr\":\"::1\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"SrcAddr\":\"::1\",\"Flags\":16,\"DstPort\":2379,\"PktDropPackets\":1,\"PktDropBytes\":32,\"Interface\":\"lo\",\"Etype\":34525,\"SrcPort\":59296,\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965012540,\"TimeFlowStartMs\":1696965012540}" + ], + [ + "1696965012540000000", + "{\"SrcPort\":59656,\"PktDropBytes\":32,\"PktDropPackets\":1,\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstPort\":2379,\"Interface\":\"lo\",\"Etype\":34525,\"AgentIP\":\"10.0.60.65\",\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeReceived\":1696965015,\"SrcAddr\":\"::1\",\"TimeFlowStartMs\":1696965012540,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"TimeFlowEndMs\":1696965012540,\"Flags\":16,\"IfDirection\":0,\"DstAddr\":\"::1\"}" + ], + [ + "1696965012540000000", + "{\"TimeFlowStartMs\":1696965012540,\"DstMac\":\"00:00:00:00:00:00\",\"SrcAddr\":\"::1\",\"PktDropLatestFlags\":16,\"Flags\":16,\"PktDropPackets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"SrcPort\":59368,\"DstPort\":2379,\"Etype\":34525,\"TimeFlowEndMs\":1696965012540,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.60.65\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeReceived\":1696965015,\"PktDropBytes\":32,\"Interface\":\"lo\",\"DstAddr\":\"::1\",\"SrcMac\":\"00:00:00:00:00:00\",\"IfDirection\":0}" + ], + [ + "1696965012540000000", + "{\"PktDropPackets\":1,\"SrcPort\":41860,\"AgentIP\":\"10.0.60.65\",\"Etype\":34525,\"Proto\":6,\"TimeFlowEndMs\":1696965012540,\"IfDirection\":0,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropBytes\":32,\"DstAddr\":\"::1\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"00:00:00:00:00:00\",\"Flags\":16,\"PktDropLatestFlags\":16,\"SrcAddr\":\"::1\",\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965012540,\"DstPort\":2379,\"TimeReceived\":1696965015,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\"}" + ], + [ + "1696965012473999872", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"DstPort\":9096,\"TimeFlowEndMs\":1696965012474,\"TimeReceived\":1696965013,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"AgentIP\":\"10.0.84.208\",\"SrcAddr\":\"127.0.0.1\",\"PktDropBytes\":32,\"Proto\":6,\"Flags\":16,\"PktDropLatestFlags\":16,\"DstMac\":\"00:00:00:00:00:00\",\"Interface\":\"lo\",\"DstAddr\":\"127.0.0.1\",\"SrcPort\":42848,\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965012474,\"PktDropPackets\":1}" + ], + [ + "1696965012473999872", + "{\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"lo\",\"SrcAddr\":\"127.0.0.1\",\"PktDropLatestFlags\":16,\"IfDirection\":0,\"PktDropBytes\":32,\"Flags\":16,\"AgentIP\":\"10.0.84.208\",\"PktDropPackets\":1,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"DstMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"TimeFlowEndMs\":1696965012474,\"TimeReceived\":1696965013,\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965012474,\"DstAddr\":\"127.0.0.1\",\"DstPort\":42848,\"SrcPort\":9096}" + ], + [ + "1696965012448000000", + "{\"PktDropBytes\":32,\"PktDropLatestFlags\":16,\"SrcAddr\":\"::1\",\"AgentIP\":\"10.0.89.254\",\"Flags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Etype\":34525,\"TimeFlowStartMs\":1696965012448,\"IfDirection\":0,\"Interface\":\"lo\",\"DstPort\":2379,\"DstAddr\":\"::1\",\"TimeReceived\":1696965012,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":37888,\"PktDropPackets\":1,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965012448}" + ], + [ + "1696965012448000000", + "{\"DstAddr\":\"::1\",\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"TimeReceived\":1696965012,\"Flags\":16,\"Proto\":6,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"SrcPort\":37874,\"Interface\":\"lo\",\"TimeFlowEndMs\":1696965012448,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":0,\"PktDropPackets\":1,\"Etype\":34525,\"SrcMac\":\"00:00:00:00:00:00\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"TimeFlowStartMs\":1696965012448,\"AgentIP\":\"10.0.89.254\",\"DstPort\":2379}" + ], + [ + "1696965012448000000", + "{\"TimeFlowStartMs\":1696965012448,\"Flags\":16,\"IfDirection\":0,\"Interface\":\"lo\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"SrcMac\":\"00:00:00:00:00:00\",\"DstPort\":2379,\"PktDropBytes\":32,\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcPort\":37726,\"Etype\":34525,\"Proto\":6,\"TimeReceived\":1696965012,\"DstAddr\":\"::1\",\"TimeFlowEndMs\":1696965012448,\"SrcAddr\":\"::1\"}" + ], + [ + "1696965012448000000", + "{\"TimeReceived\":1696965012,\"DstPort\":37874,\"TimeFlowEndMs\":1696965012448,\"DstAddr\":\"::1\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"AgentIP\":\"10.0.89.254\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Flags\":16,\"TimeFlowStartMs\":1696965012448,\"SrcPort\":2379,\"Interface\":\"lo\",\"PktDropBytes\":32,\"DstMac\":\"00:00:00:00:00:00\",\"Proto\":6,\"IfDirection\":0,\"SrcMac\":\"00:00:00:00:00:00\",\"Etype\":34525,\"SrcAddr\":\"::1\"}" + ], + [ + "1696965012448000000", + "{\"PktDropBytes\":32,\"DstAddr\":\"::1\",\"AgentIP\":\"10.0.89.254\",\"SrcMac\":\"00:00:00:00:00:00\",\"IfDirection\":0,\"TimeReceived\":1696965012,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"Etype\":34525,\"PktDropLatestFlags\":16,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"Interface\":\"lo\",\"DstMac\":\"00:00:00:00:00:00\",\"PktDropPackets\":1,\"SrcAddr\":\"::1\",\"Flags\":16,\"TimeFlowEndMs\":1696965012448,\"TimeFlowStartMs\":1696965012448,\"SrcPort\":2379,\"DstPort\":37704,\"Proto\":6}" + ], + [ + "1696965012448000000", + "{\"PktDropLatestFlags\":16,\"DstPort\":2379,\"Interface\":\"lo\",\"SrcPort\":37898,\"TimeFlowEndMs\":1696965012448,\"Flags\":16,\"Etype\":34525,\"PktDropBytes\":32,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"TimeReceived\":1696965012,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"PktDropPackets\":1,\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"00:00:00:00:00:00\",\"SrcMac\":\"00:00:00:00:00:00\",\"TimeFlowStartMs\":1696965012448,\"IfDirection\":0,\"SrcAddr\":\"::1\",\"Proto\":6,\"AgentIP\":\"10.0.89.254\",\"DstAddr\":\"::1\"}" + ], + [ + "1696965012448000000", + "{\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"DstPort\":2379,\"Etype\":34525,\"SrcPort\":39064,\"SrcMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\",\"PktDropLatestState\":\"TCP_INVALID_STATE\",\"DstMac\":\"00:00:00:00:00:00\",\"TimeFlowEndMs\":1696965012448,\"Flags\":16,\"PktDropPackets\":1,\"TimeReceived\":1696965012,\"Proto\":6,\"AgentIP\":\"10.0.89.254\",\"TimeFlowStartMs\":1696965012448,\"PktDropLatestFlags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"lo\",\"PktDropBytes\":32,\"SrcAddr\":\"::1\",\"IfDirection\":0}" + ], + [ + "1696965012448000000", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"::1\",\"PktDropPackets\":1,\"PktDropLatestFlags\":16,\"PktDropLatestDropCause\":\"SKB_DROP_REASON_TCP_INVALID_SEQUENCE\",\"IfDirection\":0,\"DstMac\":\"00:00:00:00:00:00\",\"DstAddr\":\"::1\",\"Flags\":16,\"TimeReceived\":1696965012,\"SrcPort\":37738,\"Interface\":\"lo\",\"DstPort\":2379,\"PktDropBytes\":32,\"TimeFlowEndMs\":1696965012448,\"AgentIP\":\"10.0.89.254\",\"Etype\":34525,\"TimeFlowStartMs\":1696965012448,\"Proto\":6,\"SrcMac\":\"00:00:00:00:00:00\",\"PktDropLatestState\":\"TCP_INVALID_STATE\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "Duplicate": "false" + }, + "values": [ + [ + "1696965015225999872", + "{\"Bytes\":221,\"Flags\":16,\"TimeFlowStartMs\":1696965015226,\"Interface\":\"ens5\",\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":58132,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":1,\"SrcPort\":6443,\"DstAddr\":\"10.0.59.108\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"Etype\":2048,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstMac\":\"06:C5:F7:84:19:85\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965015226,\"Packets\":1}" + ], + [ + "1696965014998000128", + "{\"DstAddr\":\"10.0.59.108\",\"Flags\":4,\"DstPort\":27796,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014998,\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":54,\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"IfDirection\":1,\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965014998,\"SrcPort\":22623,\"SrcK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.60.65\",\"DstMac\":\"06:C5:F7:84:19:85\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Proto\":6,\"Packets\":1,\"Interface\":\"ens5\"}" + ], + [ + "1696965014190000128", + "{\"Etype\":2048,\"Interface\":\"br-ex\",\"TimeFlowEndMs\":1696965014190,\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"Bytes\":169,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":40413,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":6443,\"TimeFlowStartMs\":1696965014190,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"IfDirection\":1,\"TimeReceived\":1696965015,\"DstAddr\":\"10.0.67.89\"}" + ], + [ + "1696965014110000128", + "{\"TimeReceived\":1696965015,\"SrcAddr\":\"10.0.60.65\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"IfDirection\":1,\"Packets\":1,\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965014110,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstPort\":58828,\"Bytes\":97,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965014110,\"DstMac\":\"06:C5:F7:84:19:85\",\"SrcPort\":6443,\"SrcMac\":\"06:45:0B:D4:57:61\",\"Flags\":16,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstAddr\":\"10.0.59.108\"}" + ], + [ + "1696965013876000000", + "{\"Flags\":16,\"SrcPort\":6443,\"Interface\":\"ens5\",\"SrcAddr\":\"10.0.60.65\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Packets\":1,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013876,\"TimeReceived\":1696965015,\"Bytes\":1021,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965013876,\"Proto\":6,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"DstPort\":36840,\"Etype\":2048,\"DstAddr\":\"10.0.67.89\",\"DstMac\":\"06:D3:86:10:5C:57\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ], + [ + "1696965013596000000", + "{\"TimeFlowEndMs\":1696965013596,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":14426,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965015,\"SrcPort\":6443,\"Etype\":2048,\"TimeFlowStartMs\":1696965013596,\"DstAddr\":\"10.0.167.70\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"SrcAddr\":\"10.0.60.65\",\"DstMac\":\"06:D3:86:10:5C:57\",\"Packets\":1,\"Proto\":6,\"IfDirection\":1,\"SrcMac\":\"06:45:0B:D4:57:61\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":563,\"Interface\":\"br-ex\"}" + ], + [ + "1696965013345999872", + "{\"Bytes\":66,\"Interface\":\"ens5\",\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965013346,\"SrcMac\":\"06:45:0B:D4:57:61\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"SrcPort\":6443,\"DstAddr\":\"10.0.67.89\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013346,\"Proto\":6,\"Etype\":2048,\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeReceived\":1696965015,\"DstPort\":49190,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":1}" + ], + [ + "1696965013212000000", + "{\"Packets\":1,\"IfDirection\":1,\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965013212,\"DstMac\":\"06:D3:86:10:5C:57\",\"Proto\":6,\"SrcMac\":\"06:45:0B:D4:57:61\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcPort\":22623,\"DstAddr\":\"10.0.67.89\",\"SrcAddr\":\"10.0.60.65\",\"Etype\":2048,\"DstPort\":1414,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Bytes\":54,\"TimeReceived\":1696965015,\"TimeFlowEndMs\":1696965013212,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":4,\"SrcK8S_HostIP\":\"10.0.60.65\"}" + ], + [ + "1696965012892999936", + "{\"SrcMac\":\"06:45:0B:D4:57:61\",\"Proto\":6,\"TimeFlowEndMs\":1696965012893,\"Bytes\":66,\"TimeReceived\":1696965015,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"IfDirection\":1,\"TimeFlowStartMs\":1696965012893,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":6443,\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"06:C5:F7:84:19:85\",\"DstPort\":3783,\"DstAddr\":\"10.0.59.108\",\"SrcAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Interface\":\"br-ex\",\"Flags\":16}" + ], + [ + "1696965012476999936", + "{\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Etype\":2048,\"AgentIP\":\"10.0.60.65\",\"Bytes\":101,\"DstPort\":6443,\"SrcAddr\":\"10.0.60.65\",\"TimeFlowStartMs\":1696965012477,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":47416,\"DstMac\":\"06:D3:86:10:5C:57\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"ens5\",\"IfDirection\":1,\"TimeReceived\":1696965015,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"Flags\":16,\"DstAddr\":\"10.0.26.111\",\"TimeFlowEndMs\":1696965012477,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965013494000128", + "{\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"Flags\":16,\"SrcAddr\":\"10.0.84.208\",\"Interface\":\"ens5\",\"Packets\":1,\"TimeFlowEndMs\":1696965013494,\"DstAddr\":\"10.0.26.111\",\"TimeReceived\":1696965013,\"SrcMac\":\"0A:38:CA:F8:28:19\",\"SrcPort\":57890,\"DstPort\":6443,\"AgentIP\":\"10.0.84.208\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowStartMs\":1696965013494,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":66,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"Proto\":6,\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965013551000064", + "{\"Proto\":6,\"DstMac\":\"06:D3:86:10:5C:57\",\"Flags\":16,\"TimeFlowEndMs\":1696965013551,\"SrcAddr\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.60.65\",\"Etype\":2048,\"SrcPort\":6443,\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstPort\":36840,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"DstAddr\":\"10.0.67.89\",\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965013551,\"Bytes\":190,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\"}" + ], + [ + "1696965013494000128", + "{\"AgentIP\":\"10.0.60.65\",\"Packets\":3,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965010600,\"Etype\":2048,\"DstPort\":8698,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965013494,\"TimeReceived\":1696965015,\"Bytes\":389,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Proto\":6,\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"Interface\":\"ens5\",\"DstAddr\":\"10.0.26.111\",\"SrcPort\":6443}" + ], + [ + "1696965012892000000", + "{\"DstPort\":3783,\"AgentIP\":\"10.0.60.65\",\"SrcAddr\":\"10.0.60.65\",\"Packets\":1,\"SrcPort\":6443,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Flags\":16,\"Bytes\":16534,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstMac\":\"06:C5:F7:84:19:85\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"IfDirection\":1,\"TimeFlowEndMs\":1696965012892,\"TimeReceived\":1696965015,\"TimeFlowStartMs\":1696965012892,\"Proto\":6,\"DstAddr\":\"10.0.59.108\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Interface\":\"ens5\"}" + ] + ] + } + ], + "stats": { + "summary": { + "bytesProcessedPerSecond": 1047952418, + "linesProcessedPerSecond": 1396655, + "totalBytesProcessed": 298834621, + "totalLinesProcessed": 398271, + "execTime": 0.285160486, + "queueTime": 3.3027e-05, + "subqueries": 1, + "totalEntriesReturned": 500 + }, + "querier": { + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + }, + "ingester": { + "totalReached": 1, + "totalChunksMatched": 1896, + "totalBatches": 4, + "totalLinesSent": 500, + "store": { + "totalChunksRef": 73, + "totalChunksDownloaded": 73, + "chunksDownloadTime": 1710374, + "chunk": { + "headChunkBytes": 92786004, + "headChunkLines": 125622, + "decompressedBytes": 206048617, + "decompressedLines": 272649, + "compressedBytes": 68295557, + "totalDuplicates": 0 + } + } + } + } + } +} diff --git a/web/cypress/fixtures/flowmetrics/without_drops.json b/web/cypress/fixtures/flowmetrics/without_drops.json new file mode 100644 index 000000000..0fa7ba69a --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/without_drops.json @@ -0,0 +1,503 @@ +{ + "status": "success", + "data": { + "resultType": "streams", + "result": [ + { + "stream": { + "Duplicate": "true", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018159000064", + "{\"DstAddr\":\"10.0.59.108\",\"SrcPort\":54742,\"Flags\":16,\"TimeFlowEndMs\":1696965018159,\"TimeFlowStartMs\":1696965018159,\"Bytes\":66,\"Etype\":2048,\"Interface\":\"ens5\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965018,\"AgentIP\":\"10.0.45.84\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"SrcMac\":\"06:94:FC:23:41:67\",\"DstPort\":6443,\"DstMac\":\"06:C5:F7:84:19:85\",\"SrcAddr\":\"10.0.45.84\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"IfDirection\":1,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018051000064", + "{\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcPort\":2379,\"Flags\":16,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"IfDirection\":1,\"DstPort\":38734,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"TimeFlowEndMs\":1696965018051,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstAddr\":\"10.0.89.254\",\"Bytes\":138,\"TimeReceived\":1696965020,\"SrcMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"TimeFlowStartMs\":1696965018051,\"SrcAddr\":\"10.0.60.65\",\"Packets\":1,\"AgentIP\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-89-254.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-oauth-apiserver" + }, + "values": [ + [ + "1696965018171000064", + "{\"Etype\":2048,\"DstK8S_Name\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"apiserver-7c9977dbbc-jdgkv\",\"SrcMac\":\"0A:58:0A:81:00:32\",\"IfDirection\":0,\"Proto\":6,\"DstK8S_HostName\":\"ip-10-0-89-254.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.89.254\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965018171,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstPort\":2379,\"SrcAddr\":\"10.129.0.50\",\"AgentIP\":\"10.0.60.65\",\"Interface\":\"22705feb9fb802a\",\"SrcPort\":40754,\"DstMac\":\"0A:58:0A:81:00:01\",\"DstAddr\":\"10.0.89.254\",\"TimeReceived\":1696965020,\"TimeFlowEndMs\":1696965018171,\"SrcK8S_HostIP\":\"10.0.60.65\",\"Flags\":16,\"Bytes\":66,\"Packets\":1}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965018088000000", + "{\"SrcAddr\":\"10.0.60.65\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"SrcPort\":40506,\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":92,\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.84.208\",\"Proto\":6,\"DstPort\":10250,\"DstMac\":\"06:D3:86:10:5C:57\",\"TimeFlowStartMs\":1696965018088,\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"TimeReceived\":1696965020,\"IfDirection\":1,\"Packets\":1,\"TimeFlowEndMs\":1696965018088,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.60.65\",\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965018144000000", + "{\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"02:79:42:1F:26:B7\",\"IfDirection\":1,\"SrcPort\":7445,\"Interface\":\"br-ex\",\"Etype\":2048,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstPort\":6081,\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":1,\"SrcAddr\":\"10.0.18.124\",\"DstAddr\":\"10.0.84.208\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965018144,\"DstMac\":\"02:E7:EA:46:6A:33\",\"DstK8S_HostIP\":\"10.0.84.208\",\"TimeReceived\":1696965019,\"SrcK8S_HostIP\":\"10.0.18.124\",\"Proto\":17,\"Bytes\":132,\"TimeFlowStartMs\":1696965018144}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965018262000128", + "{\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Flags\":16,\"AgentIP\":\"10.0.84.208\",\"Packets\":2,\"Interface\":\"ens5\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcPort\":40506,\"DstPort\":10250,\"Bytes\":181,\"IfDirection\":0,\"DstMac\":\"0A:38:CA:F8:28:19\",\"SrcAddr\":\"10.0.60.65\",\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"TimeReceived\":1696965018,\"TimeFlowEndMs\":1696965018262,\"TimeFlowStartMs\":1696965017048,\"Etype\":2048,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"DstAddr\":\"10.0.84.208\",\"SrcK8S_HostIP\":\"10.0.60.65\",\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965018044999936", + "{\"TimeReceived\":1696965018,\"DstK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.45.84\",\"DstK8S_HostIP\":\"10.0.84.208\",\"Bytes\":140,\"SrcMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowEndMs\":1696965018045,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Etype\":2048,\"SrcPort\":31023,\"Interface\":\"ens5\",\"AgentIP\":\"10.0.84.208\",\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstAddr\":\"10.0.84.208\",\"IfDirection\":0,\"DstPort\":6081,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"0A:38:CA:F8:28:19\",\"Proto\":17,\"TimeFlowStartMs\":1696965018045,\"DstK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018108999936", + "{\"DstPort\":40506,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"Interface\":\"br-ex\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcAddr\":\"10.0.84.208\",\"SrcK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965018109,\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Packets\":4,\"Flags\":16,\"IfDirection\":0,\"Proto\":6,\"DstAddr\":\"10.0.60.65\",\"AgentIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"Bytes\":61928,\"SrcK8S_HostIP\":\"10.0.84.208\",\"SrcPort\":10250,\"TimeReceived\":1696965020,\"TimeFlowStartMs\":1696965016460}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965018199000064", + "{\"DstPort\":40506,\"SrcK8S_HostIP\":\"10.0.84.208\",\"Etype\":2048,\"Proto\":6,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstAddr\":\"10.0.60.65\",\"TimeReceived\":1696965018,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"Flags\":16,\"SrcAddr\":\"10.0.84.208\",\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Bytes\":4296,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"TimeFlowStartMs\":1696965015468,\"TimeFlowEndMs\":1696965018199,\"DstK8S_HostIP\":\"10.0.60.65\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"Packets\":2,\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcPort\":10250}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018190000128", + "{\"DstMac\":\"06:45:0B:D4:57:61\",\"Interface\":\"ens5\",\"IfDirection\":0,\"TimeFlowStartMs\":1696965016196,\"TimeReceived\":1696965020,\"SrcPort\":40413,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"SrcMac\":\"06:D3:86:10:5C:57\",\"SrcAddr\":\"10.0.67.89\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"AgentIP\":\"10.0.60.65\",\"TimeFlowEndMs\":1696965018190,\"DstPort\":6443,\"DstAddr\":\"10.0.60.65\",\"Proto\":6,\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":611,\"DstK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Packets\":3}" + ], + [ + "1696965018128999936", + "{\"DstPort\":6443,\"Packets\":3,\"Bytes\":270,\"SrcAddr\":\"10.0.203.76\",\"IfDirection\":0,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965018129,\"SrcMac\":\"06:D3:86:10:5C:57\",\"DstAddr\":\"10.0.60.65\",\"DstMac\":\"06:45:0B:D4:57:61\",\"DstK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"SrcPort\":3756,\"DstK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.60.65\",\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.60.65\",\"TimeReceived\":1696965020,\"TimeFlowStartMs\":1696965016131,\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node" + }, + "values": [ + [ + "1696965018044999936", + "{\"SrcAddr\":\"10.0.84.208\",\"TimeFlowEndMs\":1696965018045,\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Interface\":\"br-ex\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Bytes\":124,\"DstK8S_HostIP\":\"10.0.45.84\",\"TimeReceived\":1696965018,\"Packets\":1,\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"Proto\":17,\"DstMac\":\"0A:4A:02:57:F3:3F\",\"SrcPort\":34148,\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"0A:38:CA:F8:28:19\",\"DstAddr\":\"10.0.45.84\",\"IfDirection\":1,\"TimeFlowStartMs\":1696965018045,\"AgentIP\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018092000000", + "{\"SrcPort\":59588,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965019,\"DstMac\":\"02:E7:EA:46:6A:33\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"TimeFlowStartMs\":1696965018092,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"Etype\":2048,\"SrcAddr\":\"10.0.18.124\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Proto\":17,\"AgentIP\":\"10.0.18.124\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"IfDirection\":1,\"TimeFlowEndMs\":1696965018092,\"SrcMac\":\"02:79:42:1F:26:B7\",\"DstAddr\":\"10.0.45.84\",\"Bytes\":142,\"Interface\":\"br-ex\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1" + }, + "values": [ + [ + "1696965018060999936", + "{\"SrcMac\":\"0A:38:CA:F8:28:19\",\"TimeFlowEndMs\":1696965018061,\"Packets\":1,\"SrcAddr\":\"10.0.84.208\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"IfDirection\":1,\"Interface\":\"ens5\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1696965018,\"Proto\":17,\"SrcPort\":21834,\"AgentIP\":\"10.0.84.208\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.18.124\",\"Bytes\":124,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:4A:02:57:F3:3F\",\"TimeFlowStartMs\":1696965018061,\"DstPort\":6081,\"SrcK8S_HostIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false" + }, + "values": [ + [ + "1696965018092999936", + "{\"Interface\":\"br-ex\",\"AgentIP\":\"10.0.45.84\",\"SrcAddr\":\"10.0.45.84\",\"TimeReceived\":1696965018,\"DstK8S_HostIP\":\"10.0.18.124\",\"DstPort\":6081,\"SrcK8S_HostIP\":\"10.0.45.84\",\"Etype\":2048,\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Bytes\":124,\"Proto\":17,\"IfDirection\":1,\"TimeFlowEndMs\":1696965018093,\"Packets\":1,\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"06:94:FC:23:41:67\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1696965018093,\"DstAddr\":\"10.0.18.124\",\"SrcPort\":44304}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-84-208.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965018060000000", + "{\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":6081,\"SrcPort\":21834,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstMac\":\"02:79:42:1F:26:B7\",\"DstK8S_HostIP\":\"10.0.18.124\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"Proto\":17,\"DstAddr\":\"10.0.18.124\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"SrcAddr\":\"10.0.84.208\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.84.208\",\"Bytes\":132,\"IfDirection\":0,\"Etype\":2048,\"TimeFlowStartMs\":1696965018060,\"Packets\":1,\"AgentIP\":\"10.0.18.124\",\"DstK8S_OwnerType\":\"Node\",\"Interface\":\"ens5\",\"TimeFlowEndMs\":1696965018060,\"TimeReceived\":1696965019}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "ip-10-0-45-84.us-east-2.compute.internal", + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-18-124.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "0" + }, + "values": [ + [ + "1696965018092000000", + "{\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcPort\":26533,\"Packets\":1,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeReceived\":1696965019,\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.45.84\",\"Interface\":\"ens5\",\"DstPort\":6081,\"DstK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.18.124\",\"DstAddr\":\"10.0.18.124\",\"TimeFlowStartMs\":1696965018092,\"DstK8S_Name\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcMac\":\"02:E7:EA:46:6A:33\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1696965018092,\"SrcAddr\":\"10.0.45.84\",\"Bytes\":124,\"SrcK8S_Name\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Proto\":17,\"DstMac\":\"02:79:42:1F:26:B7\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_OwnerName": "apiserver", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + "1696965018043000064", + "{\"Bytes\":66,\"TimeFlowStartMs\":1696965018043,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"AgentIP\":\"10.0.14.70\",\"SrcAddr\":\"10.128.0.49\",\"IfDirection\":0,\"DstPort\":2379,\"Flags\":16,\"SrcMac\":\"0A:58:0A:80:00:31\",\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"TimeReceived\":1696965021,\"DstK8S_HostIP\":\"10.0.14.70\",\"SrcK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Etype\":2048,\"Packets\":1,\"Proto\":6,\"SrcK8S_Name\":\"apiserver-55b8478bd5-d6lpt\",\"DstAddr\":\"10.0.14.70\",\"Interface\":\"7f8077f8a9914bd\",\"SrcK8S_HostIP\":\"10.0.14.70\",\"TimeFlowEndMs\":1696965018043,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Deployment\",\"SrcPort\":54184,\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"0A:58:0A:80:00:01\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Type": "Node", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "ip-10-0-14-70.us-east-2.compute.internal", + "DstK8S_Type": "Node", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_OwnerName": "ip-10-0-60-65.us-east-2.compute.internal" + }, + "values": [ + [ + "1696965018171000064", + "{\"IfDirection\":1,\"Flags\":16,\"DstK8S_HostName\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"Interface\":\"ens5\",\"Packets\":1,\"TimeFlowEndMs\":1696965018171,\"Etype\":2048,\"TimeFlowStartMs\":1696965018171,\"SrcK8S_HostIP\":\"10.0.60.65\",\"DstK8S_HostIP\":\"10.0.14.70\",\"Bytes\":66,\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcAddr\":\"10.0.60.65\",\"TimeReceived\":1696965020,\"SrcK8S_HostName\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"Proto\":6,\"SrcK8S_Name\":\"ip-10-0-60-65.us-east-2.compute.internal\",\"SrcMac\":\"06:45:0B:D4:57:61\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.14.70\",\"DstK8S_Name\":\"ip-10-0-14-70.us-east-2.compute.internal\",\"DstMac\":\"06:D3:86:10:5C:57\",\"SrcPort\":2379,\"DstPort\":52224,\"AgentIP\":\"10.0.60.65\"}" + ] + ] + }, + { + "stream": { + "app": "netobserv-flowcollector", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod" + }, + "values": [ + [ + "1696965018091000064", + "{\"TimeFlowEndMs\":1696965018091,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Packets\":1,\"DstK8S_HostIP\":\"10.0.45.84\",\"Flags\":16,\"IfDirection\":0,\"SrcAddr\":\"10.129.2.17\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"Interface\":\"11542a2810ada05\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstAddr\":\"10.131.0.19\",\"DstK8S_OwnerType\":\"Deployment\",\"SrcPort\":34486,\"DstPort\":7946,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Proto\":6,\"Bytes\":66,\"DstMac\":\"0A:58:0A:81:02:01\",\"AgentIP\":\"10.0.18.124\",\"SrcMac\":\"0A:58:0A:81:02:11\",\"TimeReceived\":1696965019,\"TimeFlowStartMs\":1696965018091,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.18.124\"}" + ], + [ + "1696965018091000064", + "{\"SrcK8S_HostIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"Proto\":6,\"DstAddr\":\"10.129.2.17\",\"Interface\":\"genev_sys_6081\",\"SrcPort\":7946,\"TimeReceived\":1696965018,\"SrcMac\":\"0A:58:A8:FE:00:05\",\"DstK8S_OwnerType\":\"Deployment\",\"DstPort\":34486,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeFlowEndMs\":1696965018091,\"Packets\":1,\"Etype\":2048,\"AgentIP\":\"10.0.45.84\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.18.124\",\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":1,\"SrcAddr\":\"10.131.0.19\",\"TimeFlowStartMs\":1696965018091,\"Bytes\":74,\"Flags\":256,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-59sps\"}" + ] + ] + }, + { + "stream": { + "SrcK8S_Namespace": "netobserv", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-ingester", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018191000064", + "{\"TimeFlowStartMs\":1696965018191,\"TimeFlowEndMs\":1696965018191,\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.131.0.18\",\"SrcK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"DstAddr\":\"10.131.0.23\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"Flags\":16,\"SrcPort\":37512,\"Interface\":\"180c53e5f387e40\",\"DstMac\":\"0A:58:0A:83:00:17\",\"SrcMac\":\"0A:58:0A:83:00:12\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostIP\":\"10.0.45.84\",\"Etype\":2048,\"IfDirection\":1,\"DstK8S_Name\":\"lokistack-ingester-1\",\"AgentIP\":\"10.0.45.84\",\"Bytes\":84,\"DstPort\":7946,\"SrcK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"TimeReceived\":1696965018,\"Proto\":6}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "DstK8S_OwnerName": "lokistack-ingester", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1696965018092000000", + "{\"Etype\":2048,\"SrcAddr\":\"10.129.2.17\",\"Packets\":1,\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostIP\":\"10.0.18.124\",\"SrcPort\":36444,\"IfDirection\":0,\"TimeFlowEndMs\":1696965018092,\"DstK8S_HostIP\":\"10.0.45.84\",\"DstMac\":\"0A:58:A8:FE:00:05\",\"DstPort\":7946,\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"TimeReceived\":1696965018,\"Bytes\":66,\"DstAddr\":\"10.131.0.23\",\"SrcMac\":\"0A:58:A8:FE:00:07\",\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"TimeFlowStartMs\":1696965018092,\"AgentIP\":\"10.0.45.84\",\"DstK8S_Name\":\"lokistack-ingester-1\",\"Proto\":6}" + ] + ] + }, + { + "stream": { + "Duplicate": "true", + "FlowDirection": "0", + "SrcK8S_Type": "Pod", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "app": "netobserv-flowcollector", + "DstK8S_OwnerName": "lokistack-distributor" + }, + "values": [ + [ + "1696965018092000000", + "{\"SrcK8S_HostIP\":\"10.0.18.124\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstK8S_HostIP\":\"10.0.84.208\",\"SrcK8S_OwnerType\":\"Deployment\",\"DstK8S_OwnerType\":\"Deployment\",\"Flags\":16,\"DstAddr\":\"10.128.2.19\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstMac\":\"0A:58:A8:FE:00:06\",\"IfDirection\":0,\"SrcAddr\":\"10.129.2.17\",\"Interface\":\"genev_sys_6081\",\"Proto\":6,\"TimeFlowEndMs\":1696965018092,\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":52946,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"TimeFlowStartMs\":1696965018091,\"TimeReceived\":1696965018,\"Etype\":2048,\"Packets\":2,\"Bytes\":132,\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"DstPort\":7946,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"AgentIP\":\"10.0.84.208\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "lokistack-distributor", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_Type": "Pod", + "Duplicate": "false", + "FlowDirection": "2", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-ingester" + }, + "values": [ + [ + "1696965018191000064", + "{\"Interface\":\"180c53e5f387e40\",\"SrcMac\":\"0A:58:0A:83:00:17\",\"Proto\":6,\"DstMac\":\"0A:58:0A:83:00:12\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"Etype\":2048,\"TimeReceived\":1696965018,\"DstPort\":37512,\"AgentIP\":\"10.0.45.84\",\"DstAddr\":\"10.131.0.18\",\"TimeFlowStartMs\":1696965018191,\"IfDirection\":0,\"TimeFlowEndMs\":1696965018191,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstK8S_HostIP\":\"10.0.45.84\",\"DstK8S_OwnerType\":\"Deployment\",\"Packets\":1,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcPort\":7946,\"Flags\":512,\"SrcAddr\":\"10.131.0.23\",\"Bytes\":66,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-ingester-1\"}" + ], + [ + "1696965018190000128", + "{\"Interface\":\"180c53e5f387e40\",\"TimeReceived\":1696965018,\"SrcAddr\":\"10.131.0.23\",\"DstPort\":7946,\"TimeFlowStartMs\":1696965018190,\"DstK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostIP\":\"10.0.45.84\",\"Flags\":16,\"DstK8S_HostIP\":\"10.0.45.84\",\"SrcMac\":\"0A:58:0A:83:00:17\",\"Bytes\":66,\"DstMac\":\"0A:58:0A:83:00:12\",\"Proto\":6,\"SrcPort\":35770,\"Packets\":1,\"TimeFlowEndMs\":1696965018190,\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"SrcK8S_Name\":\"lokistack-ingester-1\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-k5qzh\",\"DstAddr\":\"10.131.0.18\",\"IfDirection\":0,\"AgentIP\":\"10.0.45.84\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "lokistack-querier", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "lokistack-distributor", + "DstK8S_Type": "Pod", + "Duplicate": "false" + }, + "values": [ + [ + "1696965018091000064", + "{\"SrcAddr\":\"10.129.2.17\",\"Interface\":\"1d39912d5faa2e1\",\"Packets\":1,\"DstK8S_Name\":\"lokistack-distributor-6d998644b7-8k6zl\",\"DstK8S_OwnerType\":\"Deployment\",\"DstAddr\":\"10.128.2.19\",\"DstPort\":7946,\"Bytes\":66,\"DstMac\":\"0A:58:0A:80:02:13\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"TimeFlowEndMs\":1696965018091,\"SrcK8S_HostIP\":\"10.0.18.124\",\"AgentIP\":\"10.0.84.208\",\"TimeReceived\":1696965018,\"SrcMac\":\"0A:58:0A:80:02:01\",\"DstK8S_HostName\":\"ip-10-0-84-208.us-east-2.compute.internal\",\"SrcK8S_OwnerType\":\"Deployment\",\"IfDirection\":1,\"SrcK8S_Name\":\"lokistack-querier-746f7d99f7-wkh5h\",\"SrcK8S_HostName\":\"ip-10-0-18-124.us-east-2.compute.internal\",\"SrcPort\":52946,\"TimeFlowStartMs\":1696965018091,\"DstK8S_HostIP\":\"10.0.84.208\",\"Proto\":6,\"Etype\":2048,\"Flags\":512}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "kube-state-metrics", + "SrcK8S_Type": "Pod", + "app": "netobserv-flowcollector", + "DstK8S_Type": "Service", + "DstK8S_OwnerName": "kubernetes", + "Duplicate": "false", + "DstK8S_Namespace": "default" + }, + "values": [ + [ + "1696965018102000128", + "{\"DstK8S_Name\":\"kubernetes\",\"SrcK8S_Name\":\"kube-state-metrics-86986d4696-ltgjm\",\"Bytes\":66,\"Interface\":\"9a046163eaab36d\",\"TimeFlowEndMs\":1696965018102,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.45.84\",\"SrcAddr\":\"10.131.0.11\",\"SrcK8S_HostName\":\"ip-10-0-45-84.us-east-2.compute.internal\",\"DstPort\":443,\"Packets\":1,\"TimeReceived\":1696965018,\"IfDirection\":0,\"SrcPort\":46206,\"SrcMac\":\"0A:58:0A:83:00:0B\",\"K8S_ClusterName\":\"3239c6b5-7dd1-47f3-b1e0-fcc51bc76088\",\"DstK8S_OwnerType\":\"Service\",\"DstMac\":\"0A:58:0A:83:00:01\",\"AgentIP\":\"10.0.45.84\",\"DstAddr\":\"172.30.0.1\",\"SrcK8S_OwnerType\":\"Deployment\",\"Etype\":2048,\"Flags\":16,\"TimeFlowStartMs\":1696965018102}" + ] + ] + } + ], + "stats": { + "summary": { + "bytesProcessedPerSecond": 2412746, + "linesProcessedPerSecond": 3080, + "totalBytesProcessed": 10328886, + "totalLinesProcessed": 13188, + "execTime": 4.280966076, + "queueTime": 41.889554063, + "subqueries": 1, + "totalEntriesReturned": 50 + }, + "querier": { + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 0, + "headChunkLines": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "compressedBytes": 0, + "totalDuplicates": 0 + } + } + }, + "ingester": { + "totalReached": 16, + "totalChunksMatched": 795, + "totalBatches": 16, + "totalLinesSent": 798, + "store": { + "totalChunksRef": 0, + "totalChunksDownloaded": 0, + "chunksDownloadTime": 0, + "chunk": { + "headChunkBytes": 3639789, + "headChunkLines": 4746, + "decompressedBytes": 6689097, + "decompressedLines": 8442, + "compressedBytes": 1388529, + "totalDuplicates": 0 + } + } + } + } + } +} diff --git a/web/cypress/fixtures/flowmetrics/zone.json b/web/cypress/fixtures/flowmetrics/zone.json new file mode 100644 index 000000000..5825b54b0 --- /dev/null +++ b/web/cypress/fixtures/flowmetrics/zone.json @@ -0,0 +1,1579 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "SrcK8S_Zone": "us-east-2a" + }, + "values": [ + [ + 1717017645, + "15664.666666666666" + ], + [ + 1717017660, + "13788.900000000001" + ], + [ + 1717017675, + "13072.933333333332" + ], + [ + 1717017690, + "12773.100000000002" + ], + [ + 1717017705, + "13808.500000000002" + ], + [ + 1717017720, + "16406.9" + ], + [ + 1717017735, + "17885.86666666667" + ], + [ + 1717017750, + "17604.63333333333" + ], + [ + 1717017765, + "14543.133333333333" + ], + [ + 1717017780, + "12453.166666666668" + ], + [ + 1717017795, + "12617.533333333333" + ], + [ + 1717017810, + "12688.766666666668" + ], + [ + 1717017825, + "12863.166666666666" + ], + [ + 1717017840, + "12610.766666666666" + ], + [ + 1717017855, + "14232.333333333334" + ], + [ + 1717017870, + "14168.466666666667" + ], + [ + 1717017885, + "12653.399999999998" + ], + [ + 1717017900, + "14650.966666666667" + ], + [ + 1717017915, + "15096.433333333332" + ], + [ + 1717017930, + "14363.666666666666" + ], + [ + 1717017945, + "15763.900000000001" + ] + ] + }, + { + "metric": { + "SrcK8S_Zone": "us-east-2b" + }, + "values": [ + [ + 1717017645, + "51012.83333333333" + ], + [ + 1717017660, + "36820.6" + ], + [ + 1717017675, + "33857.833333333336" + ], + [ + 1717017690, + "34093.26666666666" + ], + [ + 1717017705, + "43081.5" + ], + [ + 1717017720, + "69111.26666666666" + ], + [ + 1717017735, + "80158.40000000001" + ], + [ + 1717017750, + "61974.73333333334" + ], + [ + 1717017765, + "57259.6" + ], + [ + 1717017780, + "123485.8" + ], + [ + 1717017795, + "189388.23333333334" + ], + [ + 1717017810, + "146274.93333333335" + ], + [ + 1717017825, + "66745.26666666666" + ], + [ + 1717017840, + "35173.4" + ], + [ + 1717017855, + "43625.53333333333" + ], + [ + 1717017870, + "447138.6" + ], + [ + 1717017885, + "441746.60000000003" + ], + [ + 1717017900, + "45731.200000000004" + ], + [ + 1717017915, + "46858.46666666667" + ], + [ + 1717017930, + "82875.26666666666" + ], + [ + 1717017945, + "99519.26666666666" + ] + ] + }, + { + "metric": { + "SrcK8S_Zone": "us-east-2c" + }, + "values": [ + [ + 1717017645, + "203881.56666666665" + ], + [ + 1717017660, + "193077.7" + ], + [ + 1717017675, + "192078.4" + ], + [ + 1717017690, + "190965.96666666667" + ], + [ + 1717017705, + "195755.53333333333" + ], + [ + 1717017720, + "196740.56666666665" + ], + [ + 1717017735, + "193925.76666666666" + ], + [ + 1717017750, + "203284.06666666668" + ], + [ + 1717017765, + "200773.73333333334" + ], + [ + 1717017780, + "201496.33333333334" + ], + [ + 1717017795, + "217393.4" + ], + [ + 1717017810, + "217278.53333333333" + ], + [ + 1717017825, + "201031.40000000002" + ], + [ + 1717017840, + "190680.5" + ], + [ + 1717017855, + "253387.9" + ], + [ + 1717017870, + "1750898.7999999998" + ], + [ + 1717017885, + "1688230.6666666665" + ], + [ + 1717017900, + "196346.6" + ], + [ + 1717017915, + "197512.30000000002" + ], + [ + 1717017930, + "195853.7" + ], + [ + 1717017945, + "203706.36666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2a", + "SrcK8S_Zone": "us-east-2a" + }, + "values": [ + [ + 1717017645, + "249415.16666666672" + ], + [ + 1717017660, + "245663.53333333327" + ], + [ + 1717017675, + "244619.3333333333" + ], + [ + 1717017690, + "241414.43333333335" + ], + [ + 1717017705, + "242772.2333333333" + ], + [ + 1717017720, + "244026.4666666667" + ], + [ + 1717017735, + "244548.56666666668" + ], + [ + 1717017750, + "476561.86666666664" + ], + [ + 1717017765, + "506010.4" + ], + [ + 1717017780, + "275110.0666666666" + ], + [ + 1717017795, + "243714.33333333328" + ], + [ + 1717017810, + "243699.43333333332" + ], + [ + 1717017825, + "244193.26666666666" + ], + [ + 1717017840, + "242591.46666666667" + ], + [ + 1717017855, + "243332.86666666667" + ], + [ + 1717017870, + "243886.1" + ], + [ + 1717017885, + "242527.83333333328" + ], + [ + 1717017900, + "243113.7333333333" + ], + [ + 1717017915, + "243315.0333333333" + ], + [ + 1717017930, + "244396.2666666667" + ], + [ + 1717017945, + "245196.7666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2a", + "SrcK8S_Zone": "us-east-2b" + }, + "values": [ + [ + 1717017645, + "846924.0666666667" + ], + [ + 1717017660, + "1152043.7333333334" + ], + [ + 1717017675, + "1457111.9" + ], + [ + 1717017690, + "946377.2000000001" + ], + [ + 1717017705, + "276947.13333333336" + ], + [ + 1717017720, + "278845.5666666667" + ], + [ + 1717017735, + "537358.7666666668" + ], + [ + 1717017750, + "662704.0333333334" + ], + [ + 1717017765, + "426366.73333333334" + ], + [ + 1717017780, + "335198.13333333336" + ], + [ + 1717017795, + "609605.2666666667" + ], + [ + 1717017810, + "751653.6333333334" + ], + [ + 1717017825, + "976771.2333333333" + ], + [ + 1717017840, + "1341052.633333333" + ], + [ + 1717017855, + "1706369.8666666667" + ], + [ + 1717017870, + "1170542.2000000002" + ], + [ + 1717017885, + "279769.8333333333" + ], + [ + 1717017900, + "298896.3333333333" + ], + [ + 1717017915, + "572316.5" + ], + [ + 1717017930, + "546456.4333333333" + ], + [ + 1717017945, + "321006.2333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2a", + "SrcK8S_Zone": "us-east-2c" + }, + "values": [ + [ + 1717017645, + "1239490.9" + ], + [ + 1717017660, + "934333.6333333335" + ], + [ + 1717017675, + "239508.46666666667" + ], + [ + 1717017690, + "236576.5" + ], + [ + 1717017705, + "198219.50000000003" + ], + [ + 1717017720, + "987483.3999999999" + ], + [ + 1717017735, + "1024542.8999999999" + ], + [ + 1717017750, + "865591.9666666666" + ], + [ + 1717017765, + "996096.4333333335" + ], + [ + 1717017780, + "426649.33333333343" + ], + [ + 1717017795, + "294271.8333333333" + ], + [ + 1717017810, + "223252.96666666667" + ], + [ + 1717017825, + "628410.9666666668" + ], + [ + 1717017840, + "1367385.9666666663" + ], + [ + 1717017855, + "981000.0999999999" + ], + [ + 1717017870, + "259007.2333333333" + ], + [ + 1717017885, + "335194.6666666667" + ], + [ + 1717017900, + "702256.7333333333" + ], + [ + 1717017915, + "1040338.566666667" + ], + [ + 1717017930, + "1149987.5333333334" + ], + [ + 1717017945, + "1306053.1333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2a" + }, + "values": [ + [ + 1717017645, + "1327187.7666666668" + ], + [ + 1717017660, + "1395641.7666666668" + ], + [ + 1717017675, + "1196581.0999999999" + ], + [ + 1717017690, + "667384.6" + ], + [ + 1717017705, + "107403.86666666667" + ], + [ + 1717017720, + "840776.3666666666" + ], + [ + 1717017735, + "799516.8" + ], + [ + 1717017750, + "628504.0999999999" + ], + [ + 1717017765, + "782029.2333333333" + ], + [ + 1717017780, + "309015.73333333334" + ], + [ + 1717017795, + "182338.30000000002" + ], + [ + 1717017810, + "267842.1" + ], + [ + 1717017825, + "1146055.8" + ], + [ + 1717017840, + "2235486.033333333" + ], + [ + 1717017855, + "1982340.6333333333" + ], + [ + 1717017870, + "710924.0666666668" + ], + [ + 1717017885, + "145874.56666666668" + ], + [ + 1717017900, + "553189.7333333334" + ], + [ + 1717017915, + "917548.1666666666" + ], + [ + 1717017930, + "1012221.7666666668" + ], + [ + 1717017945, + "1196482.7000000002" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2b", + "SrcK8S_Zone": "us-east-2a" + }, + "values": [ + [ + 1717017645, + "710925.2" + ], + [ + 1717017660, + "746936.9000000001" + ], + [ + 1717017675, + "732473.5" + ], + [ + 1717017690, + "623216.1666666667" + ], + [ + 1717017705, + "452448.10000000003" + ], + [ + 1717017720, + "527585.2000000001" + ], + [ + 1717017735, + "555477.0666666667" + ], + [ + 1717017750, + "535337.8333333334" + ], + [ + 1717017765, + "610973.3999999999" + ], + [ + 1717017780, + "645621.7000000001" + ], + [ + 1717017795, + "658706.3333333334" + ], + [ + 1717017810, + "651970" + ], + [ + 1717017825, + "696967.5666666667" + ], + [ + 1717017840, + "782680.4666666667" + ], + [ + 1717017855, + "834872.7999999999" + ], + [ + 1717017870, + "699769.3666666667" + ], + [ + 1717017885, + "518011.10000000003" + ], + [ + 1717017900, + "526739.1333333334" + ], + [ + 1717017915, + "606571.5333333333" + ], + [ + 1717017930, + "560044.4666666667" + ], + [ + 1717017945, + "485692.93333333335" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2b", + "SrcK8S_Zone": "us-east-2b" + }, + "values": [ + [ + 1717017645, + "375114.26666666666" + ], + [ + 1717017660, + "403626.19999999995" + ], + [ + 1717017675, + "527955.4333333333" + ], + [ + 1717017690, + "523334.8333333334" + ], + [ + 1717017705, + "425963.5999999999" + ], + [ + 1717017720, + "402298.6999999999" + ], + [ + 1717017735, + "530438.1333333333" + ], + [ + 1717017750, + "558530.7666666666" + ], + [ + 1717017765, + "406773.8333333333" + ], + [ + 1717017780, + "378555.50000000006" + ], + [ + 1717017795, + "502408.86666666664" + ], + [ + 1717017810, + "501198.69999999995" + ], + [ + 1717017825, + "397900.10000000003" + ], + [ + 1717017840, + "398667.89999999997" + ], + [ + 1717017855, + "527563.1333333334" + ], + [ + 1717017870, + "936052.7666666668" + ], + [ + 1717017885, + "784348.3666666666" + ], + [ + 1717017900, + "376563.93333333335" + ], + [ + 1717017915, + "501768.46666666673" + ], + [ + 1717017930, + "528231.5333333334" + ], + [ + 1717017945, + "406084.9000000001" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2b", + "SrcK8S_Zone": "us-east-2c" + }, + "values": [ + [ + 1717017645, + "617568.1" + ], + [ + 1717017660, + "670641.7000000001" + ], + [ + 1717017675, + "659794.6333333333" + ], + [ + 1717017690, + "537174.7333333334" + ], + [ + 1717017705, + "401911.5333333333" + ], + [ + 1717017720, + "538985.9333333333" + ], + [ + 1717017735, + "546100.6666666667" + ], + [ + 1717017750, + "428276.80000000005" + ], + [ + 1717017765, + "446468.8333333333" + ], + [ + 1717017780, + "480538.06666666665" + ], + [ + 1717017795, + "502437.3666666667" + ], + [ + 1717017810, + "512105.9333333333" + ], + [ + 1717017825, + "597398.8333333334" + ], + [ + 1717017840, + "686406.5666666667" + ], + [ + 1717017855, + "731230.6333333333" + ], + [ + 1717017870, + "1681514.5" + ], + [ + 1717017885, + "1499494.2333333332" + ], + [ + 1717017900, + "420510.1" + ], + [ + 1717017915, + "556032.9333333332" + ], + [ + 1717017930, + "544294.2" + ], + [ + 1717017945, + "422760.6666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2b" + }, + "values": [ + [ + 1717017645, + "138468.93333333332" + ], + [ + 1717017660, + "124943.4" + ], + [ + 1717017675, + "116660.26666666668" + ], + [ + 1717017690, + "109860.50000000003" + ], + [ + 1717017705, + "121980.13333333333" + ], + [ + 1717017720, + "155315.73333333334" + ], + [ + 1717017735, + "162627.16666666663" + ], + [ + 1717017750, + "143574.09999999998" + ], + [ + 1717017765, + "142328.86666666664" + ], + [ + 1717017780, + "221424.6666666667" + ], + [ + 1717017795, + "296122.96666666673" + ], + [ + 1717017810, + "230338.36666666664" + ], + [ + 1717017825, + "138065.19999999998" + ], + [ + 1717017840, + "116423.83333333334" + ], + [ + 1717017855, + "156730.83333333334" + ], + [ + 1717017870, + "728194.7333333332" + ], + [ + 1717017885, + "691697.1333333332" + ], + [ + 1717017900, + "127401.66666666667" + ], + [ + 1717017915, + "132210.13333333333" + ], + [ + 1717017930, + "164722.43333333338" + ], + [ + 1717017945, + "188343.76666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2c", + "SrcK8S_Zone": "us-east-2a" + }, + "values": [ + [ + 1717017645, + "1530672.9999999998" + ], + [ + 1717017660, + "1153210.8666666665" + ], + [ + 1717017675, + "242273.56666666665" + ], + [ + 1717017690, + "139424.26666666666" + ], + [ + 1717017705, + "186565.93333333332" + ], + [ + 1717017720, + "1070043.8666666667" + ], + [ + 1717017735, + "1059442.5666666667" + ], + [ + 1717017750, + "279530.8333333334" + ], + [ + 1717017765, + "358666.6666666666" + ], + [ + 1717017780, + "401984.2" + ], + [ + 1717017795, + "342511.1666666667" + ], + [ + 1717017810, + "232227.40000000002" + ], + [ + 1717017825, + "639086.3333333335" + ], + [ + 1717017840, + "1472981.8666666667" + ], + [ + 1717017855, + "1046339.3" + ], + [ + 1717017870, + "188648.1666666667" + ], + [ + 1717017885, + "263557.1666666667" + ], + [ + 1717017900, + "835838.3333333334" + ], + [ + 1717017915, + "1489030.3333333333" + ], + [ + 1717017930, + "1528818.1666666665" + ], + [ + 1717017945, + "1531409.9666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2c", + "SrcK8S_Zone": "us-east-2b" + }, + "values": [ + [ + 1717017645, + "624807.2333333334" + ], + [ + 1717017660, + "509916.3000000001" + ], + [ + 1717017675, + "299955.10000000003" + ], + [ + 1717017690, + "308003.9666666666" + ], + [ + 1717017705, + "339065.0666666666" + ], + [ + 1717017720, + "549801.9666666668" + ], + [ + 1717017735, + "549794.3999999999" + ], + [ + 1717017750, + "397762.4666666666" + ], + [ + 1717017765, + "429926.0666666666" + ], + [ + 1717017780, + "457257.8999999999" + ], + [ + 1717017795, + "427800.73333333334" + ], + [ + 1717017810, + "370169.9333333333" + ], + [ + 1717017825, + "454477.8999999999" + ], + [ + 1717017840, + "622786.4666666669" + ], + [ + 1717017855, + "582951.0333333333" + ], + [ + 1717017870, + "1899526.2666666668" + ], + [ + 1717017885, + "1896731.5333333334" + ], + [ + 1717017900, + "556884.8666666667" + ], + [ + 1717017915, + "597726.0333333336" + ], + [ + 1717017930, + "495189.23333333334" + ], + [ + 1717017945, + "488418.1666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2c", + "SrcK8S_Zone": "us-east-2c" + }, + "values": [ + [ + 1717017645, + "80971.83333333333" + ], + [ + 1717017660, + "79436.26666666668" + ], + [ + 1717017675, + "78671.26666666669" + ], + [ + 1717017690, + "74194.96666666666" + ], + [ + 1717017705, + "82118.73333333332" + ], + [ + 1717017720, + "88966.83333333333" + ], + [ + 1717017735, + "80554.23333333334" + ], + [ + 1717017750, + "101221.86666666667" + ], + [ + 1717017765, + "116570.56666666668" + ], + [ + 1717017780, + "95837.59999999999" + ], + [ + 1717017795, + "84022.66666666667" + ], + [ + 1717017810, + "82149.06666666667" + ], + [ + 1717017825, + "76534.93333333333" + ], + [ + 1717017840, + "73631.53333333334" + ], + [ + 1717017855, + "78516.93333333335" + ], + [ + 1717017870, + "77496.2" + ], + [ + 1717017885, + "74362.09999999999" + ], + [ + 1717017900, + "77353.76666666665" + ], + [ + 1717017915, + "80367.73333333332" + ], + [ + 1717017930, + "79868.36666666667" + ], + [ + 1717017945, + "81012.63333333335" + ] + ] + }, + { + "metric": { + "DstK8S_Zone": "us-east-2c" + }, + "values": [ + [ + 1717017645, + "53382.13333333334" + ], + [ + 1717017660, + "37906.7" + ], + [ + 1717017675, + "34655.73333333333" + ], + [ + 1717017690, + "33098.433333333334" + ], + [ + 1717017705, + "46740.96666666667" + ], + [ + 1717017720, + "48175.899999999994" + ], + [ + 1717017735, + "34763.2" + ], + [ + 1717017750, + "47522.8" + ], + [ + 1717017765, + "46180.73333333333" + ], + [ + 1717017780, + "34447.600000000006" + ], + [ + 1717017795, + "45040.000000000015" + ], + [ + 1717017810, + "46531.200000000004" + ], + [ + 1717017825, + "36452.5" + ], + [ + 1717017840, + "33146.8" + ], + [ + 1717017855, + "46102.966666666674" + ], + [ + 1717017870, + "60466.66666666667" + ], + [ + 1717017885, + "48840.6" + ], + [ + 1717017900, + "45357.133333333324" + ], + [ + 1717017915, + "49098.533333333326" + ], + [ + 1717017930, + "44156.79999999999" + ], + [ + 1717017945, + "51958.333333333336" + ] + ] + } + ], + "stats": { + "numQueries": 2, + "totalEntries": 0, + "duplicates": 0, + "limitReached": false, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 9040, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 3359402, + "decompressedBytes": 13675254, + "decompressedLines": 22037, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 855512, + "headChunkLines": 1433, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 23470, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 38234483, + "totalChunksDownloaded": 29, + "totalChunksRef": 29 + }, + "totalBatches": 180, + "totalChunksMatched": 136, + "totalLinesSent": 11662, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 22090872, + "execTime": 0.657772399, + "linesProcessedPerSecond": 35681, + "queueTime": 14.073759992, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 14530766, + "totalEntriesReturned": 3, + "totalLinesProcessed": 23470, + "totalPostFilterLines": 23470, + "totalStructuredMetadataBytesProcessed": 0 + } + }, + { + "cache": { + "chunk": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 8649, + "entriesFound": 0, + "entriesRequested": 1, + "entriesStored": 1, + "requests": 2 + }, + "statsResult": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 52096333, + "decompressedBytes": 237504683, + "decompressedLines": 305144, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 48385486, + "headChunkLines": 64086, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 369230, + "totalDuplicates": 22502 + }, + "chunksDownloadTime": 23345068, + "totalChunksDownloaded": 30, + "totalChunksRef": 30 + }, + "totalBatches": 654, + "totalChunksMatched": 5544, + "totalLinesSent": 257847, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "decompressedStructuredMetadataBytes": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "headChunkStructuredMetadataBytes": 0, + "postFilterLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 367673170, + "execTime": 0.777566033, + "linesProcessedPerSecond": 474853, + "queueTime": 15.94431699, + "shards": 96, + "splits": 6, + "subqueries": 0, + "totalBytesProcessed": 285890169, + "totalEntriesReturned": 12, + "totalLinesProcessed": 369230, + "totalPostFilterLines": 369230, + "totalStructuredMetadataBytesProcessed": 0 + } + } + ], + "dataSources": [ + "loki" + ] + }, + "unixTimestamp": 1717017951 +} diff --git a/web/cypress/fixtures/image-digest-mirror-set.yaml b/web/cypress/fixtures/image-digest-mirror-set.yaml new file mode 100644 index 000000000..f331a8e13 --- /dev/null +++ b/web/cypress/fixtures/image-digest-mirror-set.yaml @@ -0,0 +1,34 @@ +apiVersion: config.openshift.io/v1 +kind: ImageDigestMirrorSet +metadata: + name: netobserv-image-digest-mirror-set +spec: + imageDigestMirrors: + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-operator-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-operator-zstream + source: registry.redhat.io/network-observability/network-observability-rhel9-operator + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/flowlogs-pipeline-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/flowlogs-pipeline-zstream + source: registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9 + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/netobserv-ebpf-agent-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/netobserv-ebpf-agent-zstream + source: registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9 + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-console-plugin-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-console-plugin-zstream + source: registry.redhat.io/network-observability/network-observability-console-plugin-rhel9 + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-cli-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-cli-zstream + source: registry.redhat.io/network-observability/network-observability-cli-rhel9 + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-operator-bundle-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-operator-bundle-zstream + source: registry.redhat.io/network-observability/network-observability-operator-bundle + - mirrors: + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-console-plugin-pf4-ystream + - quay.io/redhat-user-workloads/ocp-network-observab-tenant/network-observability-console-plugin-pf4-zstream + source: registry.redhat.io/network-observability/network-observability-console-plugin-compat-rhel9 diff --git a/web/cypress/fixtures/perf/flow_metrics_perf.json b/web/cypress/fixtures/perf/flow_metrics_perf.json new file mode 100644 index 000000000..b0482677a --- /dev/null +++ b/web/cypress/fixtures/perf/flow_metrics_perf.json @@ -0,0 +1,5206 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "79.7" + ], + [ + 1686940140, + "81.26666666666667" + ], + [ + 1686940155, + "87.93333333333334" + ], + [ + 1686940170, + "97.7" + ], + [ + 1686940230, + "54.96666666666667" + ], + [ + 1686940245, + "47.43333333333334" + ], + [ + 1686940260, + "124.16666666666667" + ], + [ + 1686940275, + "121.96666666666667" + ], + [ + 1686940305, + "72.36666666666667" + ], + [ + 1686940320, + "142.43333333333334" + ], + [ + 1686940335, + "70.06666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk", + "SrcK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940050, + "8850" + ], + [ + 1686940065, + "4356.733333333333" + ], + [ + 1686940080, + "7905.099999999999" + ], + [ + 1686940095, + "10115.166666666668" + ], + [ + 1686940110, + "6344.733333333333" + ], + [ + 1686940125, + "6240.633333333333" + ], + [ + 1686940140, + "8737.933333333332" + ], + [ + 1686940155, + "8967.133333333331" + ], + [ + 1686940170, + "6316.366666666668" + ], + [ + 1686940185, + "6100.099999999999" + ], + [ + 1686940200, + "9234" + ], + [ + 1686940215, + "8382.166666666666" + ], + [ + 1686940230, + "8695.999999999998" + ], + [ + 1686940245, + "8681.5" + ], + [ + 1686940260, + "11667.46666666667" + ], + [ + 1686940275, + "13279.533333333333" + ], + [ + 1686940290, + "8332.966666666667" + ], + [ + 1686940305, + "10229.866666666667" + ], + [ + 1686940320, + "10816.46666666667" + ], + [ + 1686940335, + "8459.633333333331" + ], + [ + 1686940350, + "10262.466666666669" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk", + "SrcK8S_Namespace": "openshift-console" + }, + "values": [ + [ + 1686940215, + "44.833333333333336" + ], + [ + 1686940320, + "48.5" + ], + [ + 1686940350, + "42.166666666666664" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk", + "SrcK8S_Namespace": "openshift-dns" + }, + "values": [ + [ + 1686940050, + "118.06666666666666" + ], + [ + 1686940065, + "129.13333333333333" + ], + [ + 1686940080, + "117.73333333333333" + ], + [ + 1686940095, + "152.13333333333333" + ], + [ + 1686940110, + "167.39999999999998" + ], + [ + 1686940125, + "151.86666666666667" + ], + [ + 1686940140, + "121.53333333333333" + ], + [ + 1686940155, + "84.03333333333333" + ], + [ + 1686940170, + "123.1" + ], + [ + 1686940185, + "191.93333333333334" + ], + [ + 1686940200, + "162.13333333333333" + ], + [ + 1686940215, + "93.93333333333334" + ], + [ + 1686940230, + "91.5" + ], + [ + 1686940245, + "112.7" + ], + [ + 1686940260, + "147.7" + ], + [ + 1686940275, + "116.26666666666668" + ], + [ + 1686940290, + "95.53333333333333" + ], + [ + 1686940305, + "138.86666666666667" + ], + [ + 1686940320, + "111.33333333333333" + ], + [ + 1686940335, + "49.2" + ], + [ + 1686940350, + "41.233333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk", + "SrcK8S_Namespace": "openshift-ingress" + }, + "values": [ + [ + 1686940230, + "49.733333333333334" + ], + [ + 1686940275, + "51.86666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk", + "SrcK8S_Namespace": "openshift-operators" + }, + "values": [ + [ + 1686940230, + "61.666666666666664" + ], + [ + 1686940245, + "61.666666666666664" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940050, + "486.23333333333335" + ], + [ + 1686940065, + "1417.7666666666667" + ], + [ + 1686940080, + "1614.4333333333334" + ], + [ + 1686940095, + "768.2" + ], + [ + 1686940110, + "561.1333333333333" + ], + [ + 1686940125, + "4066" + ], + [ + 1686940140, + "4047.3" + ], + [ + 1686940155, + "1043.2333333333333" + ], + [ + 1686940170, + "928.2333333333333" + ], + [ + 1686940185, + "571.3" + ], + [ + 1686940200, + "402.93333333333334" + ], + [ + 1686940215, + "283.5666666666667" + ], + [ + 1686940230, + "990.1666666666667" + ], + [ + 1686940245, + "900.7" + ], + [ + 1686940260, + "194.1" + ], + [ + 1686940290, + "370.73333333333335" + ], + [ + 1686940305, + "376.5666666666667" + ], + [ + 1686940320, + "2132.5333333333333" + ], + [ + 1686940335, + "2284.9666666666667" + ], + [ + 1686940350, + "455.43333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-apiserver", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "159.73333333333332" + ], + [ + 1686940065, + "247.93333333333334" + ], + [ + 1686940080, + "243.33333333333334" + ], + [ + 1686940095, + "176.63333333333333" + ], + [ + 1686940110, + "178.1" + ], + [ + 1686940125, + "180.86666666666667" + ], + [ + 1686940140, + "143.16666666666666" + ], + [ + 1686940155, + "139.56666666666666" + ], + [ + 1686940170, + "72.4" + ], + [ + 1686940185, + "108.53333333333333" + ], + [ + 1686940200, + "147" + ], + [ + 1686940215, + "98.7" + ], + [ + 1686940230, + "54.766666666666666" + ], + [ + 1686940245, + "101.93333333333334" + ], + [ + 1686940260, + "166.53333333333333" + ], + [ + 1686940275, + "124.43333333333334" + ], + [ + 1686940290, + "122.06666666666666" + ], + [ + 1686940305, + "134.96666666666667" + ], + [ + 1686940320, + "143.46666666666667" + ], + [ + 1686940335, + "402.53333333333336" + ], + [ + 1686940350, + "403.1" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + 1686940050, + "73.23333333333333" + ], + [ + 1686940065, + "130.83333333333331" + ], + [ + 1686940080, + "165.89999999999998" + ], + [ + 1686940095, + "88.3" + ], + [ + 1686940110, + "83.4" + ], + [ + 1686940125, + "95.06666666666668" + ], + [ + 1686940140, + "67.73333333333333" + ], + [ + 1686940155, + "63.86666666666666" + ], + [ + 1686940170, + "44.56666666666666" + ], + [ + 1686940185, + "58.26666666666667" + ], + [ + 1686940200, + "77.2" + ], + [ + 1686940215, + "83.43333333333334" + ], + [ + 1686940230, + "123" + ], + [ + 1686940245, + "115.69999999999999" + ], + [ + 1686940260, + "96.36666666666667" + ], + [ + 1686940275, + "103.3" + ], + [ + 1686940290, + "106.36666666666667" + ], + [ + 1686940305, + "140.29999999999998" + ], + [ + 1686940320, + "125.39999999999999" + ], + [ + 1686940335, + "81.86666666666666" + ], + [ + 1686940350, + "64.10000000000001" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-apiserver-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "90.4" + ], + [ + 1686940065, + "794.5" + ], + [ + 1686940080, + "1344.5" + ], + [ + 1686940095, + "644.1" + ], + [ + 1686940110, + "111.5" + ], + [ + 1686940125, + "238.3" + ], + [ + 1686940140, + "193.46666666666667" + ], + [ + 1686940155, + "50.1" + ], + [ + 1686940170, + "49.4" + ], + [ + 1686940185, + "215.8" + ], + [ + 1686940200, + "291.3" + ], + [ + 1686940215, + "381.8" + ], + [ + 1686940230, + "312.4" + ], + [ + 1686940245, + "114.06666666666666" + ], + [ + 1686940260, + "105.16666666666667" + ], + [ + 1686940275, + "69.33333333333333" + ], + [ + 1686940290, + "165.6" + ], + [ + 1686940305, + "196.8" + ], + [ + 1686940320, + "88.76666666666667" + ], + [ + 1686940335, + "30.866666666666667" + ], + [ + 1686940350, + "162.53333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-authentication", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940245, + "58.733333333333334" + ], + [ + 1686940260, + "117.46666666666667" + ], + [ + 1686940275, + "60.93333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-authentication-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "255.83333333333334" + ], + [ + 1686940065, + "586.4333333333333" + ], + [ + 1686940080, + "494.6" + ], + [ + 1686940125, + "498.9" + ], + [ + 1686940140, + "496.3666666666667" + ], + [ + 1686940155, + "191.43333333333334" + ], + [ + 1686940170, + "191.43333333333334" + ], + [ + 1686940185, + "220.03333333333333" + ], + [ + 1686940200, + "221.06666666666666" + ], + [ + 1686940215, + "38.5" + ], + [ + 1686940230, + "95.83333333333333" + ], + [ + 1686940245, + "64.96666666666667" + ], + [ + 1686940305, + "110.6" + ], + [ + 1686940320, + "104.13333333333334" + ], + [ + 1686940335, + "58.733333333333334" + ], + [ + 1686940350, + "390.5" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-authentication-operator", + "SrcK8S_Namespace": "openshift-authentication" + }, + "values": [ + [ + 1686940305, + "102.23333333333333" + ], + [ + 1686940320, + "102.23333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-cloud-credential-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "73.26666666666667" + ], + [ + 1686940065, + "81.1" + ], + [ + 1686940125, + "51.666666666666664" + ], + [ + 1686940140, + "51.666666666666664" + ], + [ + 1686940185, + "68.6" + ], + [ + 1686940200, + "70.66666666666667" + ], + [ + 1686940215, + "54.36666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-cloud-network-config-controller" + }, + "values": [ + [ + 1686940290, + "280.6333333333333" + ], + [ + 1686940305, + "280.6333333333333" + ], + [ + 1686940335, + "30.133333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-cluster-csi-drivers", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940215, + "292.93333333333334" + ], + [ + 1686940230, + "292.93333333333334" + ], + [ + 1686940320, + "73.63333333333333" + ], + [ + 1686940335, + "58.233333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-cluster-node-tuning-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940185, + "526.0666666666667" + ], + [ + 1686940200, + "534.1666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-cluster-samples-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940245, + "85.1" + ], + [ + 1686940260, + "85.1" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-cluster-storage-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940125, + "606.1666666666666" + ], + [ + 1686940140, + "583.0333333333333" + ], + [ + 1686940155, + "44.46666666666667" + ], + [ + 1686940170, + "77.76666666666667" + ], + [ + 1686940275, + "49.66666666666667" + ], + [ + 1686940350, + "59.96666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-config-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940305, + "79.36666666666666" + ], + [ + 1686940320, + "81.56666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "1396.8666666666666" + ], + [ + 1686940065, + "1536.3333333333333" + ], + [ + 1686940080, + "1202.1333333333334" + ], + [ + 1686940095, + "1920.3333333333333" + ], + [ + 1686940110, + "2812.4" + ], + [ + 1686940125, + "2652.3333333333335" + ], + [ + 1686940140, + "1676.0666666666666" + ], + [ + 1686940155, + "1675.4" + ], + [ + 1686940170, + "3070.0666666666666" + ], + [ + 1686940185, + "2512.866666666667" + ], + [ + 1686940200, + "1062.9333333333334" + ], + [ + 1686940215, + "1060.4666666666667" + ], + [ + 1686940230, + "1501.9333333333334" + ], + [ + 1686940245, + "6569.8" + ], + [ + 1686940260, + "7966.333333333333" + ], + [ + 1686940275, + "3526.4" + ], + [ + 1686940290, + "13359.633333333333" + ], + [ + 1686940305, + "17211.066666666666" + ], + [ + 1686940320, + "6577.966666666666" + ], + [ + 1686940335, + "3299.733333333333" + ], + [ + 1686940350, + "2883.9333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940260, + "9692.733333333334" + ], + [ + 1686940275, + "9692.733333333334" + ], + [ + 1686940290, + "4675.733333333334" + ], + [ + 1686940305, + "8633.1" + ], + [ + 1686940320, + "4099.033333333334" + ], + [ + 1686940335, + "144.83333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "openshift-dns" + }, + "values": [ + [ + 1686940245, + "64.2" + ], + [ + 1686940260, + "127.03333333333333" + ], + [ + 1686940275, + "77.63333333333334" + ], + [ + 1686940290, + "172.83333333333334" + ], + [ + 1686940305, + "245.3" + ], + [ + 1686940320, + "106.03333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "openshift-ingress" + }, + "values": [ + [ + 1686940080, + "77.76666666666667" + ], + [ + 1686940125, + "46.46666666666666" + ], + [ + 1686940170, + "70.86666666666666" + ], + [ + 1686940185, + "138.83333333333334" + ], + [ + 1686940200, + "142.63333333333333" + ], + [ + 1686940215, + "81.8" + ], + [ + 1686940230, + "100.4" + ], + [ + 1686940245, + "458.16666666666663" + ], + [ + 1686940260, + "608.3666666666667" + ], + [ + 1686940275, + "247.53333333333333" + ], + [ + 1686940290, + "536.2333333333333" + ], + [ + 1686940305, + "927.2666666666667" + ], + [ + 1686940320, + "456.46666666666664" + ], + [ + 1686940335, + "90.46666666666667" + ], + [ + 1686940350, + "102.66666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940125, + "139.46666666666667" + ], + [ + 1686940140, + "553" + ], + [ + 1686940155, + "413.53333333333336" + ], + [ + 1686940170, + "139.46666666666667" + ], + [ + 1686940185, + "278.93333333333334" + ], + [ + 1686940200, + "139.46666666666667" + ], + [ + 1686940260, + "433.4" + ], + [ + 1686940275, + "700.9333333333334" + ], + [ + 1686940290, + "594.9000000000001" + ], + [ + 1686940305, + "327.3666666666667" + ], + [ + 1686940350, + "251.5" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "97.93333333333334" + ], + [ + 1686940065, + "97.93333333333334" + ], + [ + 1686940080, + "501.4" + ], + [ + 1686940095, + "501.4" + ], + [ + 1686940110, + "465.73333333333335" + ], + [ + 1686940125, + "468.96666666666664" + ], + [ + 1686940155, + "139.76666666666668" + ], + [ + 1686940170, + "139.76666666666668" + ], + [ + 1686940200, + "111.5" + ], + [ + 1686940215, + "549.4" + ], + [ + 1686940230, + "443.4" + ], + [ + 1686940245, + "557.8" + ], + [ + 1686940260, + "552.3" + ], + [ + 1686940275, + "240.33333333333334" + ], + [ + 1686940290, + "240.33333333333334" + ], + [ + 1686940305, + "281.73333333333335" + ], + [ + 1686940320, + "853.0666666666667" + ], + [ + 1686940335, + "713.3" + ], + [ + 1686940350, + "141.96666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console-operator" + }, + "values": [ + [ + 1686940050, + "77.53333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-controller-manager", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940140, + "49.5" + ], + [ + 1686940155, + "49.36666666666667" + ], + [ + 1686940215, + "836.0333333333333" + ], + [ + 1686940230, + "830.8" + ], + [ + 1686940275, + "53.666666666666664" + ], + [ + 1686940335, + "283.73333333333335" + ], + [ + 1686940350, + "288.96666666666664" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-controller-manager", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940170, + "58.733333333333334" + ], + [ + 1686940185, + "58.733333333333334" + ], + [ + 1686940290, + "58.733333333333334" + ], + [ + 1686940305, + "117.46666666666667" + ], + [ + 1686940320, + "58.733333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-controller-manager-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "403.1333333333333" + ], + [ + 1686940065, + "403.1333333333333" + ], + [ + 1686940080, + "290.56666666666666" + ], + [ + 1686940095, + "333.1" + ], + [ + 1686940110, + "184.5" + ], + [ + 1686940125, + "141.96666666666667" + ], + [ + 1686940155, + "150.43333333333334" + ], + [ + 1686940170, + "158.83333333333334" + ], + [ + 1686940245, + "640.4" + ], + [ + 1686940260, + "919.2" + ], + [ + 1686940275, + "308.3" + ], + [ + 1686940290, + "159.9" + ], + [ + 1686940305, + "141.96666666666667" + ], + [ + 1686940350, + "147.2" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-dns", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940095, + "103.16666666666667" + ], + [ + 1686940110, + "103.16666666666667" + ], + [ + 1686940170, + "74.7" + ], + [ + 1686940185, + "74.7" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-etcd-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "1259.3" + ], + [ + 1686940065, + "696.9333333333333" + ], + [ + 1686940095, + "635.4666666666667" + ], + [ + 1686940110, + "652.8333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-etcd-operator" + }, + "values": [ + [ + 1686940050, + "90.19999999999999" + ], + [ + 1686940065, + "90.19999999999999" + ], + [ + 1686940080, + "206.63333333333333" + ], + [ + 1686940095, + "232.56666666666666" + ], + [ + 1686940320, + "50.366666666666674" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-image-registry", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "178.43333333333334" + ], + [ + 1686940065, + "178.43333333333334" + ], + [ + 1686940080, + "458.3333333333333" + ], + [ + 1686940095, + "490.8" + ], + [ + 1686940125, + "1601.1666666666667" + ], + [ + 1686940140, + "1601.1666666666667" + ], + [ + 1686940260, + "556.4333333333333" + ], + [ + 1686940275, + "556.4333333333333" + ], + [ + 1686940350, + "809.0333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "76.93333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress", + "SrcK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940050, + "94.46666666666667" + ], + [ + 1686940065, + "92" + ], + [ + 1686940080, + "92" + ], + [ + 1686940095, + "89.53333333333333" + ], + [ + 1686940140, + "91.73333333333333" + ], + [ + 1686940155, + "181.53333333333333" + ], + [ + 1686940170, + "96.66666666666667" + ], + [ + 1686940200, + "111.16666666666667" + ], + [ + 1686940215, + "108.7" + ], + [ + 1686940245, + "93.93333333333334" + ], + [ + 1686940260, + "96.13333333333334" + ], + [ + 1686940275, + "91.73333333333333" + ], + [ + 1686940290, + "89.53333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress", + "SrcK8S_Namespace": "openshift-authentication" + }, + "values": [ + [ + 1686940065, + "121" + ], + [ + 1686940080, + "121" + ], + [ + 1686940095, + "103.3" + ], + [ + 1686940110, + "100.83333333333333" + ], + [ + 1686940290, + "1237.8666666666666" + ], + [ + 1686940305, + "1254.9666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress", + "SrcK8S_Namespace": "openshift-console" + }, + "values": [ + [ + 1686940050, + "2428.4666666666667" + ], + [ + 1686940065, + "1979.8333333333333" + ], + [ + 1686940080, + "1750.1333333333334" + ], + [ + 1686940095, + "1133.8666666666668" + ], + [ + 1686940110, + "807.2333333333333" + ], + [ + 1686940125, + "1327.0333333333333" + ], + [ + 1686940140, + "1816.8666666666668" + ], + [ + 1686940155, + "2777.4666666666667" + ], + [ + 1686940170, + "2795.366666666667" + ], + [ + 1686940185, + "2969.733333333333" + ], + [ + 1686940200, + "4185.5" + ], + [ + 1686940215, + "2925.1" + ], + [ + 1686940230, + "1555.1" + ], + [ + 1686940245, + "8072.8" + ], + [ + 1686940260, + "12537.366666666665" + ], + [ + 1686940275, + "6721" + ], + [ + 1686940290, + "21847.166666666668" + ], + [ + 1686940305, + "33242.63333333333" + ], + [ + 1686940320, + "14777.133333333333" + ], + [ + 1686940335, + "2376.0333333333333" + ], + [ + 1686940350, + "1144.1000000000001" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940050, + "363.43333333333334" + ], + [ + 1686940065, + "278.93333333333334" + ], + [ + 1686940080, + "188.13333333333333" + ], + [ + 1686940095, + "188.66666666666666" + ], + [ + 1686940110, + "191.13333333333333" + ], + [ + 1686940125, + "280" + ], + [ + 1686940140, + "456.3666666666667" + ], + [ + 1686940155, + "458.83333333333337" + ], + [ + 1686940170, + "191.7" + ], + [ + 1686940185, + "272.33333333333337" + ], + [ + 1686940200, + "544.4333333333334" + ], + [ + 1686940215, + "365.3333333333333" + ], + [ + 1686940230, + "92.96666666666667" + ], + [ + 1686940245, + "97.36666666666667" + ], + [ + 1686940260, + "280.8333333333333" + ], + [ + 1686940275, + "553.1333333333333" + ], + [ + 1686940290, + "455.7666666666667" + ], + [ + 1686940305, + "355.70000000000005" + ], + [ + 1686940320, + "360.1" + ], + [ + 1686940335, + "102.03333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress" + }, + "values": [ + [ + 1686940170, + "71.7" + ], + [ + 1686940185, + "125.86666666666666" + ], + [ + 1686940200, + "60.766666666666666" + ], + [ + 1686940245, + "287.03333333333336" + ], + [ + 1686940260, + "371.7" + ], + [ + 1686940275, + "141.66666666666666" + ], + [ + 1686940290, + "716.9333333333333" + ], + [ + 1686940305, + "854.1" + ], + [ + 1686940320, + "191.96666666666667" + ], + [ + 1686940335, + "80.56666666666666" + ], + [ + 1686940350, + "78.36666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940140, + "81.86666666666666" + ], + [ + 1686940155, + "81.86666666666666" + ], + [ + 1686940260, + "177.13333333333333" + ], + [ + 1686940275, + "177.13333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940065, + "93.86666666666666" + ], + [ + 1686940080, + "1360.9666666666667" + ], + [ + 1686940095, + "2586.6666666666665" + ], + [ + 1686940110, + "1361.5666666666666" + ], + [ + 1686940125, + "59.233333333333334" + ], + [ + 1686940140, + "398.6666666666667" + ], + [ + 1686940155, + "394.1" + ], + [ + 1686940200, + "157.43333333333334" + ], + [ + 1686940215, + "157.43333333333334" + ], + [ + 1686940320, + "68.3" + ], + [ + 1686940335, + "68.3" + ], + [ + 1686940350, + "73.06666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "openshift-cluster-node-tuning-operator" + }, + "values": [ + [ + 1686940185, + "89.60000000000001" + ], + [ + 1686940200, + "89.60000000000001" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "openshift-dns" + }, + "values": [ + [ + 1686940080, + "206" + ], + [ + 1686940095, + "206" + ], + [ + 1686940185, + "108.96666666666667" + ], + [ + 1686940200, + "108.96666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "openshift-machine-api" + }, + "values": [ + [ + 1686940080, + "102.33333333333334" + ], + [ + 1686940095, + "102.33333333333334" + ], + [ + 1686940185, + "94.13333333333334" + ], + [ + 1686940200, + "94.13333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940080, + "91.63333333333333" + ], + [ + 1686940095, + "91.63333333333333" + ], + [ + 1686940185, + "90.83333333333334" + ], + [ + 1686940200, + "88.63333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "openshift-multus" + }, + "values": [ + [ + 1686940080, + "168.26666666666668" + ], + [ + 1686940095, + "168.26666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-apiserver-operator", + "SrcK8S_Namespace": "openshift-netobserv-operator" + }, + "values": [ + [ + 1686940080, + "110.83333333333334" + ], + [ + 1686940095, + "110.83333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-controller-manager-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "729.4" + ], + [ + 1686940065, + "132.36666666666667" + ], + [ + 1686940080, + "119.26666666666667" + ], + [ + 1686940095, + "172.26666666666668" + ], + [ + 1686940110, + "473.06666666666666" + ], + [ + 1686940125, + "328.26666666666665" + ], + [ + 1686940155, + "196.7" + ], + [ + 1686940170, + "380.3666666666667" + ], + [ + 1686940185, + "183.66666666666666" + ], + [ + 1686940200, + "255.9" + ], + [ + 1686940215, + "638.2666666666667" + ], + [ + 1686940230, + "820.9666666666667" + ], + [ + 1686940245, + "438.6" + ], + [ + 1686940275, + "91.33333333333333" + ], + [ + 1686940290, + "73.7" + ], + [ + 1686940305, + "438.3" + ], + [ + 1686940320, + "438.3" + ], + [ + 1686940335, + "634.5" + ], + [ + 1686940350, + "636.7" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-kube-scheduler-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940095, + "573.4333333333333" + ], + [ + 1686940110, + "545" + ], + [ + 1686940185, + "291.93333333333334" + ], + [ + 1686940200, + "294.06666666666666" + ], + [ + 1686940320, + "368.1" + ], + [ + 1686940335, + "374.6666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-machine-api", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940125, + "59.766666666666666" + ], + [ + 1686940155, + "38.63333333333333" + ], + [ + 1686940185, + "586.9333333333333" + ], + [ + 1686940200, + "586.9333333333333" + ], + [ + 1686940215, + "282.3666666666667" + ], + [ + 1686940230, + "282.3666666666667" + ], + [ + 1686940290, + "172.13333333333333" + ], + [ + 1686940305, + "162.46666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-machine-config-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "173.6" + ], + [ + 1686940065, + "622.1333333333333" + ], + [ + 1686940080, + "456.6333333333334" + ], + [ + 1686940110, + "181" + ], + [ + 1686940125, + "181" + ], + [ + 1686940155, + "48.699999999999996" + ], + [ + 1686940200, + "195.26666666666668" + ], + [ + 1686940215, + "412.1666666666667" + ], + [ + 1686940230, + "235.03333333333333" + ], + [ + 1686940260, + "49.1" + ], + [ + 1686940275, + "53.53333333333333" + ], + [ + 1686940290, + "704.4" + ], + [ + 1686940305, + "1458.1666666666667" + ], + [ + 1686940320, + "876.4" + ], + [ + 1686940335, + "120.4" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-marketplace", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940065, + "138.23333333333332" + ], + [ + 1686940080, + "115.76666666666667" + ], + [ + 1686940215, + "571.5333333333333" + ], + [ + 1686940230, + "593.7333333333333" + ], + [ + 1686940245, + "46.96666666666667" + ], + [ + 1686940335, + "27.933333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-marketplace", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager" + }, + "values": [ + [ + 1686940050, + "346.3666666666667" + ], + [ + 1686940065, + "344.16666666666663" + ], + [ + 1686940125, + "312.3" + ], + [ + 1686940140, + "250.83333333333331" + ], + [ + 1686940350, + "370.9" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "214.89999999999998" + ], + [ + 1686940080, + "71.9" + ], + [ + 1686940095, + "133.06666666666666" + ], + [ + 1686940110, + "84.80000000000001" + ], + [ + 1686940125, + "76.76666666666667" + ], + [ + 1686940140, + "126.80000000000001" + ], + [ + 1686940155, + "93.03333333333333" + ], + [ + 1686940170, + "97.83333333333333" + ], + [ + 1686940185, + "104.66666666666667" + ], + [ + 1686940200, + "74.53333333333333" + ], + [ + 1686940215, + "514.2666666666667" + ], + [ + 1686940230, + "543.0333333333333" + ], + [ + 1686940245, + "2448.3666666666663" + ], + [ + 1686940260, + "3433.1333333333328" + ], + [ + 1686940275, + "1151.3333333333333" + ], + [ + 1686940290, + "117.69999999999999" + ], + [ + 1686940320, + "2983" + ], + [ + 1686940335, + "5708.899999999999" + ], + [ + 1686940350, + "3145.4333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940050, + "442.46666666666664" + ], + [ + 1686940065, + "302.96666666666664" + ], + [ + 1686940080, + "148.5666666666667" + ], + [ + 1686940095, + "233" + ], + [ + 1686940110, + "237.1333333333333" + ], + [ + 1686940140, + "170.3" + ], + [ + 1686940155, + "316.66666666666674" + ], + [ + 1686940170, + "330.70000000000005" + ], + [ + 1686940185, + "651.2666666666667" + ], + [ + 1686940200, + "479.90000000000003" + ], + [ + 1686940215, + "339.6333333333333" + ], + [ + 1686940230, + "439.70000000000005" + ], + [ + 1686940245, + "403.5666666666667" + ], + [ + 1686940260, + "664.4" + ], + [ + 1686940275, + "524.3666666666667" + ], + [ + 1686940290, + "152.70000000000002" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + 1686940050, + "286.9" + ], + [ + 1686940065, + "279.53333333333336" + ], + [ + 1686940080, + "281.73333333333335" + ], + [ + 1686940095, + "570.8" + ], + [ + 1686940110, + "568.6" + ], + [ + 1686940125, + "703.2333333333333" + ], + [ + 1686940140, + "563.4666666666667" + ], + [ + 1686940155, + "281.73333333333335" + ], + [ + 1686940170, + "144.16666666666666" + ], + [ + 1686940185, + "281.73333333333335" + ], + [ + 1686940200, + "279.53333333333336" + ], + [ + 1686940215, + "419.3" + ], + [ + 1686940230, + "419.3" + ], + [ + 1686940275, + "153.16666666666666" + ], + [ + 1686940290, + "437.8333333333333" + ], + [ + 1686940305, + "564.2" + ], + [ + 1686940320, + "419.3" + ], + [ + 1686940335, + "293.8333333333333" + ], + [ + 1686940350, + "293.8333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-apiserver-operator" + }, + "values": [ + [ + 1686940050, + "139.76666666666668" + ], + [ + 1686940065, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-authentication" + }, + "values": [ + [ + 1686940110, + "139.46666666666667" + ], + [ + 1686940125, + "139.46666666666667" + ], + [ + 1686940140, + "139.46666666666667" + ], + [ + 1686940155, + "141.66666666666666" + ], + [ + 1686940290, + "66.1" + ], + [ + 1686940305, + "127.5" + ], + [ + 1686940320, + "126.66666666666667" + ], + [ + 1686940335, + "63.06666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-authentication-operator" + }, + "values": [ + [ + 1686940050, + "139.76666666666668" + ], + [ + 1686940065, + "139.76666666666668" + ], + [ + 1686940080, + "139.76666666666668" + ], + [ + 1686940095, + "139.76666666666668" + ], + [ + 1686940110, + "139.76666666666668" + ], + [ + 1686940125, + "139.76666666666668" + ], + [ + 1686940140, + "139.76666666666668" + ], + [ + 1686940155, + "139.76666666666668" + ], + [ + 1686940290, + "139.76666666666668" + ], + [ + 1686940305, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-cloud-credential-operator" + }, + "values": [ + [ + 1686940185, + "161.03333333333333" + ], + [ + 1686940200, + "163.23333333333332" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-cluster-csi-drivers" + }, + "values": [ + [ + 1686940185, + "148.63333333333333" + ], + [ + 1686940200, + "176.2" + ], + [ + 1686940215, + "39.43333333333333" + ], + [ + 1686940305, + "189.93333333333334" + ], + [ + 1686940320, + "178.16666666666666" + ], + [ + 1686940350, + "133.56666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-cluster-samples-operator" + }, + "values": [ + [ + 1686940170, + "154.83333333333334" + ], + [ + 1686940185, + "154.83333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-cluster-storage-operator" + }, + "values": [ + [ + 1686940080, + "139.76666666666668" + ], + [ + 1686940095, + "390.4" + ], + [ + 1686940110, + "250.63333333333333" + ], + [ + 1686940155, + "139.76666666666668" + ], + [ + 1686940170, + "139.76666666666668" + ], + [ + 1686940305, + "139.76666666666668" + ], + [ + 1686940320, + "139.76666666666668" + ], + [ + 1686940335, + "139.76666666666668" + ], + [ + 1686940350, + "279.53333333333336" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-config-operator" + }, + "values": [ + [ + 1686940065, + "104.03333333333333" + ], + [ + 1686940080, + "101.83333333333333" + ], + [ + 1686940140, + "139.76666666666668" + ], + [ + 1686940155, + "139.76666666666668" + ], + [ + 1686940350, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-console" + }, + "values": [ + [ + 1686940095, + "81.13333333333334" + ], + [ + 1686940110, + "83.33333333333334" + ], + [ + 1686940140, + "40.96666666666667" + ], + [ + 1686940155, + "45.36666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-console-operator" + }, + "values": [ + [ + 1686940140, + "111.56666666666666" + ], + [ + 1686940155, + "111.56666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-controller-manager" + }, + "values": [ + [ + 1686940050, + "139.46666666666667" + ], + [ + 1686940095, + "139.46666666666667" + ], + [ + 1686940110, + "139.46666666666667" + ], + [ + 1686940170, + "139.46666666666667" + ], + [ + 1686940185, + "278.93333333333334" + ], + [ + 1686940200, + "139.46666666666667" + ], + [ + 1686940245, + "143.86666666666667" + ], + [ + 1686940260, + "278.93333333333334" + ], + [ + 1686940275, + "278.93333333333334" + ], + [ + 1686940290, + "139.46666666666667" + ], + [ + 1686940320, + "141.66666666666666" + ], + [ + 1686940335, + "141.66666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-controller-manager-operator" + }, + "values": [ + [ + 1686940050, + "216.76666666666668" + ], + [ + 1686940095, + "139.76666666666668" + ], + [ + 1686940110, + "139.76666666666668" + ], + [ + 1686940125, + "77.83333333333333" + ], + [ + 1686940140, + "77.83333333333333" + ], + [ + 1686940245, + "141.96666666666667" + ], + [ + 1686940260, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-dns" + }, + "values": [ + [ + 1686940110, + "157.8" + ], + [ + 1686940125, + "147.46666666666667" + ], + [ + 1686940170, + "48.66666666666667" + ], + [ + 1686940185, + "166.16666666666669" + ], + [ + 1686940200, + "147.83333333333334" + ], + [ + 1686940320, + "155.76666666666665" + ], + [ + 1686940335, + "272.6333333333333" + ], + [ + 1686940350, + "143.3" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-etcd-operator" + }, + "values": [ + [ + 1686940095, + "139.76666666666668" + ], + [ + 1686940110, + "139.76666666666668" + ], + [ + 1686940335, + "279.53333333333336" + ], + [ + 1686940350, + "279.53333333333336" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-ingress" + }, + "values": [ + [ + 1686940050, + "96" + ], + [ + 1686940065, + "132.5" + ], + [ + 1686940080, + "93.36666666666666" + ], + [ + 1686940140, + "91.73333333333335" + ], + [ + 1686940155, + "130" + ], + [ + 1686940170, + "82.83333333333334" + ], + [ + 1686940200, + "204.76666666666668" + ], + [ + 1686940215, + "226.8" + ], + [ + 1686940230, + "109.93333333333334" + ], + [ + 1686940245, + "83.10000000000001" + ], + [ + 1686940260, + "99.53333333333333" + ], + [ + 1686940275, + "125.83333333333334" + ], + [ + 1686940290, + "89.63333333333334" + ], + [ + 1686940305, + "74.6" + ], + [ + 1686940335, + "193.26666666666668" + ], + [ + 1686940350, + "242.50000000000003" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-insights" + }, + "values": [ + [ + 1686940230, + "139.76666666666668" + ], + [ + 1686940245, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-kube-controller-manager-operator" + }, + "values": [ + [ + 1686940095, + "139.76666666666668" + ], + [ + 1686940110, + "139.76666666666668" + ], + [ + 1686940170, + "141.96666666666667" + ], + [ + 1686940185, + "141.96666666666667" + ], + [ + 1686940305, + "139.76666666666668" + ], + [ + 1686940320, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-kube-scheduler-operator" + }, + "values": [ + [ + 1686940185, + "160.33333333333334" + ], + [ + 1686940200, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-machine-api" + }, + "values": [ + [ + 1686940080, + "105.33333333333333" + ], + [ + 1686940095, + "107.53333333333333" + ], + [ + 1686940140, + "80.7" + ], + [ + 1686940155, + "78.76666666666667" + ], + [ + 1686940260, + "107.73333333333333" + ], + [ + 1686940275, + "109.93333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940050, + "2016.7" + ], + [ + 1686940065, + "2029.8666666666668" + ], + [ + 1686940080, + "3293.5666666666666" + ], + [ + 1686940095, + "3280.7666666666664" + ], + [ + 1686940110, + "2868.9666666666667" + ], + [ + 1686940125, + "3964.2" + ], + [ + 1686940140, + "3868.3666666666663" + ], + [ + 1686940155, + "2849.8666666666663" + ], + [ + 1686940170, + "371.1333333333334" + ], + [ + 1686940185, + "1102.7333333333333" + ], + [ + 1686940200, + "3492.7" + ], + [ + 1686940215, + "2689.0333333333333" + ], + [ + 1686940230, + "390.83333333333337" + ], + [ + 1686940245, + "534.8333333333333" + ], + [ + 1686940260, + "6475.6" + ], + [ + 1686940275, + "7736.966666666665" + ], + [ + 1686940290, + "2040.9666666666667" + ], + [ + 1686940305, + "5357.966666666666" + ], + [ + 1686940320, + "4853.699999999999" + ], + [ + 1686940335, + "718.3666666666668" + ], + [ + 1686940350, + "1709.6666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-multus" + }, + "values": [ + [ + 1686940050, + "76.53333333333333" + ], + [ + 1686940065, + "77.46666666666667" + ], + [ + 1686940095, + "65.8" + ], + [ + 1686940110, + "72.16666666666667" + ], + [ + 1686940140, + "39.53333333333333" + ], + [ + 1686940215, + "67.86666666666667" + ], + [ + 1686940230, + "102.2" + ], + [ + 1686940245, + "70.26666666666667" + ], + [ + 1686940260, + "63.03333333333333" + ], + [ + 1686940275, + "113.56666666666666" + ], + [ + 1686940290, + "84.5" + ], + [ + 1686940335, + "44.5" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-netobserv-operator" + }, + "values": [ + [ + 1686940275, + "169.16666666666666" + ], + [ + 1686940290, + "169.16666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-network-diagnostics" + }, + "values": [ + [ + 1686940155, + "141.96666666666667" + ], + [ + 1686940170, + "141.96666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-operators-redhat" + }, + "values": [ + [ + 1686940125, + "484.06666666666666" + ], + [ + 1686940140, + "484.06666666666666" + ], + [ + 1686940245, + "484" + ], + [ + 1686940260, + "484" + ], + [ + 1686940290, + "482.1333333333333" + ], + [ + 1686940305, + "479.93333333333334" + ], + [ + 1686940320, + "484.1" + ], + [ + 1686940335, + "963.8" + ], + [ + 1686940350, + "479.7" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-route-controller-manager" + }, + "values": [ + [ + 1686940050, + "59.7" + ], + [ + 1686940110, + "139.46666666666667" + ], + [ + 1686940125, + "139.46666666666667" + ], + [ + 1686940215, + "57.56666666666667" + ], + [ + 1686940290, + "139.46666666666667" + ], + [ + 1686940305, + "278.93333333333334" + ], + [ + 1686940320, + "139.46666666666667" + ], + [ + 1686940335, + "139.46666666666667" + ], + [ + 1686940350, + "139.46666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-service-ca-operator" + }, + "values": [ + [ + 1686940155, + "139.76666666666668" + ], + [ + 1686940170, + "139.76666666666668" + ], + [ + 1686940245, + "139.76666666666668" + ], + [ + 1686940260, + "139.76666666666668" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940050, + "6920.799999999999" + ], + [ + 1686940065, + "6706.633333333334" + ], + [ + 1686940080, + "7395.066666666667" + ], + [ + 1686940095, + "7709.966666666667" + ], + [ + 1686940110, + "6919.733333333333" + ], + [ + 1686940125, + "6702.333333333333" + ], + [ + 1686940140, + "6146.033333333334" + ], + [ + 1686940155, + "8318.533333333333" + ], + [ + 1686940170, + "8427.5" + ], + [ + 1686940185, + "6162.999999999999" + ], + [ + 1686940200, + "5772.566666666667" + ], + [ + 1686940215, + "6148.733333333334" + ], + [ + 1686940230, + "7785.8" + ], + [ + 1686940245, + "7694.766666666666" + ], + [ + 1686940260, + "6732.966666666666" + ], + [ + 1686940275, + "7649.499999999998" + ], + [ + 1686940290, + "8126.366666666666" + ], + [ + 1686940305, + "7456.1" + ], + [ + 1686940320, + "8069.9333333333325" + ], + [ + 1686940335, + "11099.266666666666" + ], + [ + 1686940350, + "9400.333333333332" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-multus", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940215, + "266.26666666666665" + ], + [ + 1686940230, + "266.26666666666665" + ], + [ + 1686940290, + "74.7" + ], + [ + 1686940305, + "74.7" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-netobserv-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "58.5" + ], + [ + 1686940065, + "188.46666666666667" + ], + [ + 1686940080, + "138.8" + ], + [ + 1686940170, + "102.33333333333333" + ], + [ + 1686940185, + "97.1" + ], + [ + 1686940215, + "65.03333333333333" + ], + [ + 1686940245, + "72.83333333333333" + ], + [ + 1686940260, + "127.4" + ], + [ + 1686940275, + "118" + ], + [ + 1686940290, + "115.36666666666666" + ], + [ + 1686940335, + "83.53333333333333" + ], + [ + 1686940350, + "98.46666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-network-diagnostics", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940050, + "121.7" + ], + [ + 1686940065, + "121.7" + ], + [ + 1686940155, + "75.23333333333333" + ], + [ + 1686940170, + "75.23333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-network-diagnostics", + "SrcK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + 1686940350, + "107.36666666666666" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-network-diagnostics" + }, + "values": [ + [ + 1686940050, + "97.53333333333333" + ], + [ + 1686940065, + "97.53333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-oauth-apiserver", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940155, + "38.56666666666667" + ], + [ + 1686940185, + "68.03333333333333" + ], + [ + 1686940215, + "94.8" + ], + [ + 1686940230, + "97" + ], + [ + 1686940245, + "57" + ], + [ + 1686940260, + "54.8" + ], + [ + 1686940290, + "73.76666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-oauth-apiserver" + }, + "values": [ + [ + 1686940050, + "70.39999999999999" + ], + [ + 1686940170, + "67.96666666666667" + ], + [ + 1686940185, + "70.83333333333334" + ], + [ + 1686940200, + "66.69999999999999" + ], + [ + 1686940215, + "45.4" + ], + [ + 1686940230, + "47.199999999999996" + ], + [ + 1686940245, + "90.33333333333333" + ], + [ + 1686940260, + "86.3" + ], + [ + 1686940275, + "42.9" + ], + [ + 1686940350, + "42.96666666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940065, + "692.5666666666667" + ], + [ + 1686940080, + "679" + ], + [ + 1686940140, + "177.0333333333333" + ], + [ + 1686940155, + "6681.6" + ], + [ + 1686940170, + "6539" + ], + [ + 1686940215, + "630.3000000000001" + ], + [ + 1686940230, + "662.5" + ], + [ + 1686940260, + "326.1666666666667" + ], + [ + 1686940275, + "345.56666666666666" + ], + [ + 1686940320, + "133.43333333333334" + ], + [ + 1686940335, + "150.53333333333333" + ], + [ + 1686940350, + "705.1333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Namespace": "openshift-marketplace" + }, + "values": [ + [ + 1686940050, + "188298.76666666666" + ], + [ + 1686940065, + "188296.56666666665" + ], + [ + 1686940080, + "181264.7" + ], + [ + 1686940095, + "181264.7" + ], + [ + 1686940110, + "1135.7666666666667" + ], + [ + 1686940125, + "7528.966666666666" + ], + [ + 1686940140, + "6399.799999999999" + ], + [ + 1686940350, + "184064.86666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940125, + "58.733333333333334" + ], + [ + 1686940140, + "58.733333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager" + }, + "values": [ + [ + 1686940215, + "281.1333333333333" + ], + [ + 1686940230, + "281.1333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operators", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940080, + "96.86666666666666" + ], + [ + 1686940110, + "1000.0666666666667" + ], + [ + 1686940125, + "1000.0666666666667" + ], + [ + 1686940155, + "67.43333333333334" + ], + [ + 1686940185, + "68.5" + ], + [ + 1686940200, + "102.36666666666666" + ], + [ + 1686940230, + "1007.3666666666667" + ], + [ + 1686940245, + "1015.0666666666667" + ], + [ + 1686940350, + "1725.3" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operators", + "SrcK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940110, + "122.8" + ], + [ + 1686940125, + "122.8" + ], + [ + 1686940230, + "121.46666666666667" + ], + [ + 1686940245, + "121.46666666666667" + ], + [ + 1686940350, + "556.4" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operators-redhat", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940065, + "109.13333333333334" + ], + [ + 1686940080, + "109.13333333333334" + ], + [ + 1686940215, + "76.56666666666666" + ], + [ + 1686940230, + "76.56666666666666" + ], + [ + 1686940320, + "54.63333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-route-controller-manager", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940335, + "60.93333333333333" + ], + [ + 1686940350, + "60.93333333333333" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-service-ca", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940230, + "31.866666666666667" + ], + [ + 1686940260, + "51.233333333333334" + ], + [ + 1686940275, + "51.233333333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-service-ca-operator", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940065, + "89.83333333333333" + ], + [ + 1686940275, + "68.56666666666666" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686940110, + "196.16666666666666" + ], + [ + 1686940125, + "189.46666666666667" + ], + [ + 1686940170, + "47.1" + ], + [ + 1686940215, + "559.7" + ], + [ + 1686940230, + "570.4666666666667" + ], + [ + 1686940290, + "95.7" + ], + [ + 1686940305, + "111.43333333333334" + ], + [ + 1686940350, + "52.9" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "e2e-test-netobserv-6n9vk" + }, + "values": [ + [ + 1686940050, + "500.4" + ], + [ + 1686940065, + "412.69999999999993" + ], + [ + 1686940080, + "578.2666666666667" + ], + [ + 1686940095, + "790.7" + ], + [ + 1686940110, + "534.1333333333332" + ], + [ + 1686940125, + "274.63333333333327" + ], + [ + 1686940140, + "108.00000000000003" + ], + [ + 1686940155, + "264.9666666666667" + ], + [ + 1686940170, + "427.4666666666667" + ], + [ + 1686940185, + "423.13333333333327" + ], + [ + 1686940200, + "323.83333333333326" + ], + [ + 1686940215, + "309.03333333333336" + ], + [ + 1686940230, + "493.8" + ], + [ + 1686940245, + "581.2333333333332" + ], + [ + 1686940260, + "582.5666666666666" + ], + [ + 1686940275, + "605.8666666666666" + ], + [ + 1686940290, + "507.26666666666665" + ], + [ + 1686940305, + "499.5" + ], + [ + 1686940320, + "354.43333333333334" + ], + [ + 1686940335, + "339.2666666666666" + ], + [ + 1686940350, + "569.7333333333333" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-apiserver" + }, + "values": [ + [ + 1686940050, + "976.2333333333333" + ], + [ + 1686940065, + "769.5333333333333" + ], + [ + 1686940080, + "610.7" + ], + [ + 1686940095, + "425.93333333333334" + ], + [ + 1686940110, + "576.9333333333334" + ], + [ + 1686940125, + "594.0333333333333" + ], + [ + 1686940140, + "594.3" + ], + [ + 1686940155, + "530" + ], + [ + 1686940170, + "550.7333333333333" + ], + [ + 1686940185, + "613.1666666666666" + ], + [ + 1686940200, + "330.9666666666667" + ], + [ + 1686940215, + "318.66666666666663" + ], + [ + 1686940230, + "1364.4333333333334" + ], + [ + 1686940245, + "1459.3" + ], + [ + 1686940260, + "598.3" + ], + [ + 1686940275, + "1368.1666666666665" + ], + [ + 1686940290, + "1230.7" + ], + [ + 1686940305, + "331.9666666666667" + ], + [ + 1686940320, + "538.1666666666666" + ], + [ + 1686940335, + "1701.3000000000002" + ], + [ + 1686940350, + "1407.2333333333333" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-authentication" + }, + "values": [ + [ + 1686940050, + "266" + ], + [ + 1686940065, + "165.2" + ], + [ + 1686940080, + "129.2" + ], + [ + 1686940110, + "66.83333333333334" + ], + [ + 1686940125, + "147.9" + ], + [ + 1686940140, + "128.73333333333332" + ], + [ + 1686940170, + "252.33333333333334" + ], + [ + 1686940185, + "332.59999999999997" + ], + [ + 1686940200, + "125.2" + ], + [ + 1686940215, + "129.2" + ], + [ + 1686940230, + "130.73333333333335" + ], + [ + 1686940245, + "138.73333333333335" + ], + [ + 1686940260, + "119.4" + ], + [ + 1686940275, + "47" + ], + [ + 1686940290, + "147.26666666666665" + ], + [ + 1686940305, + "227.26666666666668" + ], + [ + 1686940320, + "131.4" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-authentication-operator" + }, + "values": [ + [ + 1686940050, + "102.63333333333334" + ], + [ + 1686940065, + "114.56666666666666" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-config-operator" + }, + "values": [ + [ + 1686940050, + "116.5" + ], + [ + 1686940065, + "327.73333333333335" + ], + [ + 1686940080, + "229.03333333333333" + ], + [ + 1686940095, + "114.86666666666666" + ], + [ + 1686940110, + "219.13333333333333" + ], + [ + 1686940125, + "214.73333333333332" + ], + [ + 1686940140, + "114.2" + ], + [ + 1686940275, + "119.36666666666666" + ], + [ + 1686940290, + "122.3" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-console" + }, + "values": [ + [ + 1686940170, + "128.26666666666668" + ], + [ + 1686940185, + "216.86666666666667" + ], + [ + 1686940200, + "157.4" + ], + [ + 1686940215, + "103" + ], + [ + 1686940230, + "154.6" + ], + [ + 1686940245, + "209.73333333333335" + ], + [ + 1686940260, + "216.6" + ], + [ + 1686940275, + "111.20000000000002" + ], + [ + 1686940290, + "295.5333333333333" + ], + [ + 1686940305, + "490.1" + ], + [ + 1686940320, + "219.56666666666666" + ], + [ + 1686940335, + "53.06666666666666" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-console-operator" + }, + "values": [ + [ + 1686940050, + "60.1" + ], + [ + 1686940095, + "98.76666666666667" + ], + [ + 1686940110, + "111.2" + ], + [ + 1686940125, + "102.46666666666667" + ], + [ + 1686940140, + "114.33333333333333" + ], + [ + 1686940155, + "47.06666666666667" + ], + [ + 1686940245, + "105.43333333333334" + ], + [ + 1686940260, + "111.63333333333334" + ], + [ + 1686940335, + "127.2" + ], + [ + 1686940350, + "120.16666666666667" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-controller-manager" + }, + "values": [ + [ + 1686940095, + "116.53333333333333" + ], + [ + 1686940110, + "108.73333333333333" + ], + [ + 1686940125, + "211.26666666666668" + ], + [ + 1686940140, + "215.66666666666666" + ], + [ + 1686940170, + "213.33333333333331" + ], + [ + 1686940185, + "526.8666666666667" + ], + [ + 1686940200, + "326.2666666666667" + ], + [ + 1686940215, + "115.2" + ], + [ + 1686940230, + "113.13333333333334" + ], + [ + 1686940305, + "111.60000000000001" + ], + [ + 1686940320, + "113.80000000000001" + ], + [ + 1686940335, + "113.53333333333333" + ], + [ + 1686940350, + "111.6" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-dns" + }, + "values": [ + [ + 1686940125, + "56.266666666666666" + ], + [ + 1686940140, + "51.699999999999996" + ], + [ + 1686940155, + "54.63333333333333" + ], + [ + 1686940170, + "52.43333333333333" + ], + [ + 1686940200, + "60.266666666666666" + ], + [ + 1686940215, + "41.7" + ], + [ + 1686940230, + "36.233333333333334" + ], + [ + 1686940245, + "66.4" + ], + [ + 1686940260, + "71.06666666666666" + ], + [ + 1686940275, + "54.96666666666666" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-etcd-operator" + }, + "values": [ + [ + 1686940095, + "72.73333333333333" + ], + [ + 1686940200, + "65.76666666666667" + ], + [ + 1686940215, + "55.266666666666666" + ], + [ + 1686940305, + "74.4" + ], + [ + 1686940320, + "93.56666666666666" + ], + [ + 1686940335, + "38.56666666666667" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-image-registry" + }, + "values": [ + [ + 1686940065, + "100.06666666666668" + ], + [ + 1686940080, + "93" + ], + [ + 1686940095, + "96.23333333333333" + ], + [ + 1686940110, + "185.76666666666668" + ], + [ + 1686940125, + "103.8" + ], + [ + 1686940185, + "101.76666666666667" + ], + [ + 1686940200, + "97.10000000000001" + ], + [ + 1686940245, + "86.13333333333334" + ], + [ + 1686940260, + "88.33333333333334" + ], + [ + 1686940290, + "179.96666666666667" + ], + [ + 1686940305, + "175.53333333333333" + ], + [ + 1686940320, + "86.13333333333334" + ], + [ + 1686940335, + "88.60000000000001" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686940050, + "351.33333333333337" + ], + [ + 1686940065, + "268.1333333333333" + ], + [ + 1686940080, + "163.89999999999998" + ], + [ + 1686940095, + "165.5333333333333" + ], + [ + 1686940110, + "96.86666666666666" + ], + [ + 1686940125, + "91.76666666666668" + ], + [ + 1686940140, + "80.63333333333334" + ], + [ + 1686940155, + "279.6000000000001" + ], + [ + 1686940170, + "380.20000000000005" + ], + [ + 1686940185, + "264.43333333333334" + ], + [ + 1686940200, + "164.36666666666665" + ], + [ + 1686940215, + "81.63333333333334" + ], + [ + 1686940230, + "83.83333333333334" + ], + [ + 1686940245, + "75.43333333333334" + ], + [ + 1686940260, + "246.93333333333334" + ], + [ + 1686940275, + "446.4666666666667" + ], + [ + 1686940290, + "415.33333333333337" + ], + [ + 1686940305, + "312.03333333333336" + ], + [ + 1686940320, + "342.3" + ], + [ + 1686940335, + "364.1333333333333" + ], + [ + 1686940350, + "297.63333333333327" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-oauth-apiserver" + }, + "values": [ + [ + 1686940050, + "442.1333333333333" + ], + [ + 1686940065, + "504.0666666666667" + ], + [ + 1686940080, + "535.0666666666667" + ], + [ + 1686940095, + "363.6" + ], + [ + 1686940110, + "323.96666666666664" + ], + [ + 1686940125, + "328.6333333333333" + ], + [ + 1686940140, + "106.06666666666666" + ], + [ + 1686940155, + "250.16666666666669" + ], + [ + 1686940170, + "231.79999999999998" + ], + [ + 1686940185, + "262.2" + ], + [ + 1686940200, + "274.7" + ], + [ + 1686940215, + "164" + ], + [ + 1686940230, + "219.33333333333331" + ], + [ + 1686940245, + "290.56666666666666" + ], + [ + 1686940260, + "255.26666666666665" + ], + [ + 1686940275, + "233.06666666666666" + ], + [ + 1686940290, + "558.3333333333334" + ], + [ + 1686940305, + "507.73333333333335" + ], + [ + 1686940320, + "292.46666666666664" + ], + [ + 1686940335, + "311.8666666666667" + ], + [ + 1686940350, + "187.03333333333333" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-operator-lifecycle-manager" + }, + "values": [ + [ + 1686940065, + "184.4" + ], + [ + 1686940080, + "174.3" + ], + [ + 1686940110, + "244.23333333333335" + ], + [ + 1686940125, + "284.5" + ], + [ + 1686940140, + "142.2" + ], + [ + 1686940155, + "100.43333333333334" + ], + [ + 1686940170, + "200.83333333333331" + ], + [ + 1686940185, + "200.83333333333334" + ], + [ + 1686940215, + "96.86666666666667" + ], + [ + 1686940230, + "200.13333333333333" + ], + [ + 1686940245, + "149.3" + ], + [ + 1686940260, + "68.06666666666666" + ], + [ + 1686940275, + "117.7" + ], + [ + 1686940290, + "125.33333333333333" + ], + [ + 1686940305, + "77.3" + ], + [ + 1686940335, + "34.56666666666666" + ] + ] + }, + { + "metric": { + "SrcK8S_Namespace": "openshift-route-controller-manager" + }, + "values": [ + [ + 1686940050, + "107" + ], + [ + 1686940065, + "109.73333333333333" + ], + [ + 1686940110, + "122.06666666666666" + ], + [ + 1686940125, + "111.4" + ], + [ + 1686940140, + "115.6" + ], + [ + 1686940155, + "220.66666666666669" + ], + [ + 1686940170, + "115.13333333333333" + ], + [ + 1686940230, + "114" + ], + [ + 1686940245, + "111.8" + ], + [ + 1686940350, + "105.2" + ] + ] + }, + { + "metric": {}, + "values": [ + [ + 1686940050, + "138976.93333333332" + ], + [ + 1686940065, + "138351.7" + ], + [ + 1686940080, + "56012.36666666667" + ], + [ + 1686940095, + "60688.666666666664" + ], + [ + 1686940110, + "55283.5" + ], + [ + 1686940125, + "57013.3" + ], + [ + 1686940140, + "52823.76666666667" + ], + [ + 1686940155, + "50354.133333333324" + ], + [ + 1686940170, + "41510.39999999999" + ], + [ + 1686940185, + "30856.83333333333" + ], + [ + 1686940200, + "38304.1" + ], + [ + 1686940215, + "53538.666666666664" + ], + [ + 1686940230, + "51548.59999999999" + ], + [ + 1686940245, + "67146.16666666667" + ], + [ + 1686940260, + "86725.03333333335" + ], + [ + 1686940275, + "60214.03333333333" + ], + [ + 1686940290, + "69615.43333333333" + ], + [ + 1686940305, + "97079.36666666665" + ], + [ + 1686940320, + "86623.26666666668" + ], + [ + 1686940335, + "69609.06666666668" + ], + [ + 1686940350, + "159123.53333333335" + ] + ] + } + ], + "stats": { + "numQueries": 1, + "limitReached": true, + "queriesStats": [ + { + "cache": { + "chunk": { + "bytesReceived": 3775300, + "bytesSent": 0, + "downloadTime": 31107, + "entriesFound": 2, + "entriesRequested": 2, + "entriesStored": 0, + "requests": 2 + }, + "index": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + }, + "result": { + "bytesReceived": 0, + "bytesSent": 0, + "downloadTime": 0, + "entriesFound": 0, + "entriesRequested": 0, + "entriesStored": 0, + "requests": 0 + } + }, + "ingester": { + "store": { + "chunk": { + "compressedBytes": 6847302, + "decompressedBytes": 31906696, + "decompressedLines": 41042, + "headChunkBytes": 11388183, + "headChunkLines": 15022, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 65, + "totalChunksMatched": 910, + "totalLinesSent": 26153, + "totalReached": 32 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 96821, + "decompressedBytes": 486868, + "decompressedLines": 604, + "headChunkBytes": 0, + "headChunkLines": 0, + "totalDuplicates": 71 + }, + "chunksDownloadTime": 1003763, + "totalChunksDownloaded": 2, + "totalChunksRef": 2 + } + }, + "summary": { + "bytesProcessedPerSecond": 153551400, + "execTime": 0.28512763, + "linesProcessedPerSecond": 198746, + "queueTime": 0, + "shards": 32, + "splits": 2, + "subqueries": 0, + "totalBytesProcessed": 43781747, + "totalEntriesReturned": 118, + "totalLinesProcessed": 56668 + } + } + ] + }, + "isMock": false, + "unixTimestamp": 1686940358 +} \ No newline at end of file diff --git a/web/cypress/fixtures/perf/netflow_table_perf.json b/web/cypress/fixtures/perf/netflow_table_perf.json new file mode 100644 index 000000000..c3f22c390 --- /dev/null +++ b/web/cypress/fixtures/perf/netflow_table_perf.json @@ -0,0 +1,569 @@ +{ + "resultType": "streams", + "result": [ + { + "stream": { + "FlowDirection": "1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531384999936", + "{\"DstAddr\":\"169.254.169.254\",\"IfDirection\":1,\"Interface\":\"ens4\",\"AgentIP\":\"10.0.128.3\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstPort\":32781,\"Etype\":2048,\"Flags\":784,\"Packets\":4,\"SrcPort\":31666,\"TimeFlowStartMs\":1693597531384,\"Bytes\":495,\"SrcMac\":\"42:01:0A:00:80:03\",\"Proto\":6,\"TimeReceived\":1693597531,\"Duplicate\":false,\"SrcAddr\":\"34.170.33.252\",\"TimeFlowEndMs\":1693597531385,\"DstMac\":\"42:01:0A:00:80:01\"}" + ], + [ + "1693597531070000128", + "{\"SrcPort\":31666,\"SrcAddr\":\"34.170.33.252\",\"DstMac\":\"42:01:0A:00:80:01\",\"AgentIP\":\"10.0.128.3\",\"SrcMac\":\"42:01:0A:00:80:03\",\"Duplicate\":false,\"Flags\":784,\"TimeReceived\":1693597531,\"Packets\":4,\"Bytes\":495,\"Etype\":2048,\"TimeFlowEndMs\":1693597531070,\"TimeFlowStartMs\":1693597531070,\"DstPort\":32777,\"IfDirection\":1,\"Proto\":6,\"Interface\":\"br-ex\",\"DstAddr\":\"169.254.169.254\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531199000064", + "{\"DstPort\":443,\"Duplicate\":false,\"TimeFlowEndMs\":1693597531199,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcPort\":35434,\"TimeFlowStartMs\":1693597531150,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_Type\":\"Node\",\"DstMac\":\"42:01:0A:00:80:01\",\"SrcAddr\":\"10.0.128.3\",\"Interface\":\"ens4\",\"Bytes\":1400,\"TimeReceived\":1693597531,\"DstAddr\":\"142.251.120.128\",\"IfDirection\":1,\"Etype\":2048,\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.128.3\",\"SrcMac\":\"42:01:0A:00:80:03\",\"Packets\":3,\"AgentIP\":\"10.0.128.3\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-image-registry", + "SrcK8S_OwnerName": "image-registry", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531199000064", + "{\"SrcK8S_Name\":\"image-registry-789bfd69df-h49hr\",\"Flags\":16,\"DstAddr\":\"142.251.120.128\",\"SrcK8S_Type\":\"Pod\",\"IfDirection\":0,\"Bytes\":1400,\"Proto\":6,\"SrcPort\":35434,\"Etype\":2048,\"TimeFlowEndMs\":1693597531199,\"AgentIP\":\"10.0.128.3\",\"DstMac\":\"0A:58:0A:83:00:01\",\"Packets\":3,\"TimeReceived\":1693597531,\"Interface\":\"a20126002369ec7\",\"DstPort\":443,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcMac\":\"0A:58:0A:83:00:07\",\"Duplicate\":false,\"SrcAddr\":\"10.131.0.7\",\"SrcK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1693597531150,\"SrcK8S_HostIP\":\"10.0.128.3\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531384999936", + "{\"Interface\":\"ens4\",\"TimeFlowEndMs\":1693597531385,\"SrcPort\":32781,\"Packets\":6,\"AgentIP\":\"10.0.128.3\",\"Etype\":2048,\"Duplicate\":false,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeReceived\":1693597531,\"SrcMac\":\"42:01:0A:00:80:01\",\"IfDirection\":0,\"SrcAddr\":\"169.254.169.254\",\"DstPort\":31666,\"DstAddr\":\"34.170.33.252\",\"Proto\":6,\"DstMac\":\"42:01:0A:00:80:03\",\"Flags\":530,\"Bytes\":506,\"TimeFlowStartMs\":1693597531384}" + ], + [ + "1693597531071000064", + "{\"Proto\":6,\"Flags\":530,\"DstMac\":\"42:01:0A:00:80:03\",\"SrcMac\":\"42:01:0A:00:80:01\",\"AgentIP\":\"10.0.128.3\",\"SrcPort\":32777,\"Etype\":2048,\"TimeFlowStartMs\":1693597531070,\"TimeFlowEndMs\":1693597531071,\"DstPort\":31666,\"SrcAddr\":\"169.254.169.254\",\"IfDirection\":0,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeReceived\":1693597531,\"Packets\":6,\"DstAddr\":\"34.170.33.252\",\"Interface\":\"ens4\",\"Duplicate\":false,\"Bytes\":506}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531088999936", + "{\"SrcK8S_HostIP\":\"10.0.128.2\",\"TimeReceived\":1693597531,\"Duplicate\":false,\"Etype\":2048,\"IfDirection\":0,\"SrcMac\":\"42:01:0A:00:00:01\",\"Packets\":1,\"Flags\":16,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.2\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Proto\":6,\"SrcK8S_Type\":\"Node\",\"SrcPort\":43996,\"TimeFlowStartMs\":1693597531089,\"AgentIP\":\"10.0.0.4\",\"TimeFlowEndMs\":1693597531089,\"SrcAddr\":\"10.0.128.2\",\"DstPort\":6443,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal\",\"Interface\":\"br-ex\",\"Bytes\":66,\"DstMac\":\"42:01:0A:00:00:04\"}" + ] + ] + }, + { + "stream": { + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-0.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531070000128", + "{\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"Etype\":2048,\"Packets\":1,\"SrcK8S_Type\":\"Node\",\"DstPort\":6443,\"Interface\":\"ens4\",\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Bytes\":66,\"Duplicate\":false,\"SrcPort\":58220,\"SrcAddr\":\"10.0.0.5\",\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.0.5\",\"TimeFlowEndMs\":1693597531070,\"DstMac\":\"42:01:0A:00:00:04\",\"AgentIP\":\"10.0.0.4\",\"DstAddr\":\"10.0.0.2\",\"TimeFlowStartMs\":1693597531070,\"IfDirection\":0,\"TimeReceived\":1693597531,\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531199000064", + "{\"TimeReceived\":1693597531,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcPort\":443,\"DstMac\":\"42:01:0A:00:80:03\",\"DstK8S_Type\":\"Node\",\"IfDirection\":0,\"TimeFlowEndMs\":1693597531199,\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"DstK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.128.3\",\"Flags\":16,\"Proto\":6,\"AgentIP\":\"10.0.128.3\",\"TimeFlowStartMs\":1693597531151,\"DstPort\":35434,\"SrcMac\":\"42:01:0A:00:80:01\",\"Etype\":2048,\"DstK8S_HostIP\":\"10.0.128.3\",\"Duplicate\":false,\"Bytes\":688,\"Packets\":6,\"Interface\":\"ens4\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcAddr\":\"142.251.120.128\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531075000064", + "{\"Proto\":17,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowStartMs\":1693597531075,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"TimeFlowEndMs\":1693597531075,\"Packets\":1,\"Bytes\":124,\"DstMac\":\"42:01:0A:00:80:03\",\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.128.3\",\"SrcPort\":32720,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Etype\":2048,\"Interface\":\"br-ex\",\"SrcMac\":\"42:01:0A:00:80:01\",\"SrcAddr\":\"10.0.128.4\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeReceived\":1693597531,\"Duplicate\":false,\"SrcK8S_HostIP\":\"10.0.128.4\",\"DstPort\":6081,\"DstAddr\":\"10.0.128.3\",\"AgentIP\":\"10.0.128.3\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"IfDirection\":0,\"SrcK8S_Type\":\"Node\",\"SrcK8S_OwnerType\":\"Node\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-2.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531350000128", + "{\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Bytes\":16331,\"TimeFlowStartMs\":1693597526735,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.0.3\",\"SrcPort\":6443,\"SrcK8S_Type\":\"Node\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeFlowEndMs\":1693597531350,\"Flags\":16,\"Interface\":\"ens4\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Duplicate\":false,\"DstK8S_HostIP\":\"10.0.128.3\",\"DstPort\":53582,\"Proto\":6,\"TimeReceived\":1693597531,\"Packets\":35,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcMac\":\"42:01:0A:00:80:01\",\"IfDirection\":0,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.0.3\",\"DstAddr\":\"10.0.128.3\",\"DstK8S_Type\":\"Node\",\"DstMac\":\"42:01:0A:00:80:03\",\"AgentIP\":\"10.0.128.3\"}" + ], + [ + "1693597531230000128", + "{\"SrcAddr\":\"10.0.0.3\",\"TimeReceived\":1693597531,\"Duplicate\":false,\"TimeFlowStartMs\":1693597531179,\"SrcMac\":\"42:01:0A:00:80:01\",\"Proto\":17,\"DstMac\":\"42:01:0A:00:80:03\",\"AgentIP\":\"10.0.128.3\",\"Bytes\":522713,\"IfDirection\":0,\"SrcK8S_HostIP\":\"10.0.0.3\",\"DstK8S_Type\":\"Node\",\"Interface\":\"ens4\",\"TimeFlowEndMs\":1693597531230,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"DstPort\":6081,\"DstK8S_OwnerType\":\"Node\",\"Packets\":35,\"SrcPort\":43558,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstAddr\":\"10.0.128.3\",\"DstK8S_HostIP\":\"10.0.128.3\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"Etype\":2048,\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal", + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531089999872", + "{\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.4\",\"DstPort\":45232,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_OwnerType\":\"Node\",\"Interface\":\"br-ex\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal\",\"DstK8S_Type\":\"Node\",\"SrcK8S_Type\":\"Node\",\"Packets\":1,\"SrcPort\":9204,\"Proto\":6,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"Flags\":16,\"Etype\":2048,\"TimeFlowStartMs\":1693597531090,\"Duplicate\":false,\"SrcMac\":\"42:01:0A:00:00:04\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Bytes\":66,\"TimeFlowEndMs\":1693597531090,\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal\",\"DstAddr\":\"10.0.128.2\",\"TimeReceived\":1693597531,\"SrcAddr\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:01\",\"IfDirection\":1,\"DstK8S_HostIP\":\"10.0.128.2\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal", + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531076000000", + "{\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstMac\":\"42:01:0A:00:80:01\",\"Proto\":17,\"DstK8S_HostIP\":\"10.0.128.4\",\"DstAddr\":\"10.0.128.4\",\"Etype\":2048,\"SrcAddr\":\"10.0.128.3\",\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.128.3\",\"IfDirection\":1,\"TimeReceived\":1693597531,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"Duplicate\":false,\"Bytes\":124,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"42:01:0A:00:80:03\",\"DstK8S_Type\":\"Node\",\"SrcPort\":23053,\"DstPort\":6081,\"Packets\":1,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"Interface\":\"ens4\",\"TimeFlowStartMs\":1693597531076,\"SrcK8S_HostIP\":\"10.0.128.3\",\"TimeFlowEndMs\":1693597531076}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal", + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531076000000", + "{\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Interface\":\"ens4\",\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_Type\":\"Node\",\"TimeFlowStartMs\":1693597531076,\"Etype\":2048,\"Packets\":1,\"Duplicate\":false,\"TimeReceived\":1693597531,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"Bytes\":124,\"DstPort\":6081,\"SrcPort\":8419,\"DstAddr\":\"10.0.128.4\",\"DstMac\":\"42:01:0A:00:00:01\",\"TimeFlowEndMs\":1693597531076,\"DstK8S_Type\":\"Node\",\"DstK8S_HostIP\":\"10.0.128.4\",\"AgentIP\":\"10.0.0.4\",\"SrcMac\":\"42:01:0A:00:00:04\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"IfDirection\":1,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"Proto\":17}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-2.c.openshift-qe.internal", + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531391000064", + "{\"DstMac\":\"42:01:0A:00:80:01\",\"Proto\":6,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1693597531,\"DstAddr\":\"10.0.0.3\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcAddr\":\"10.0.128.3\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_HostIP\":\"10.0.128.3\",\"DstPort\":6443,\"TimeFlowStartMs\":1693597526776,\"Bytes\":6127,\"Interface\":\"ens4\",\"AgentIP\":\"10.0.128.3\",\"Flags\":16,\"TimeFlowEndMs\":1693597531391,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstK8S_Type\":\"Node\",\"Duplicate\":false,\"Packets\":36,\"SrcK8S_Type\":\"Node\",\"Etype\":2048,\"DstK8S_OwnerType\":\"Node\",\"SrcPort\":53582,\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"IfDirection\":1,\"SrcMac\":\"42:01:0A:00:80:03\"}" + ], + [ + "1693597531230000128", + "{\"DstPort\":6081,\"Duplicate\":false,\"TimeReceived\":1693597531,\"AgentIP\":\"10.0.128.3\",\"SrcMac\":\"42:01:0A:00:80:03\",\"SrcPort\":61615,\"TimeFlowEndMs\":1693597531230,\"DstAddr\":\"10.0.0.3\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":17,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"IfDirection\":1,\"Packets\":35,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcK8S_HostIP\":\"10.0.128.3\",\"DstK8S_HostIP\":\"10.0.0.3\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"Bytes\":4479,\"DstMac\":\"42:01:0A:00:80:01\",\"TimeFlowStartMs\":1693597531179,\"DstK8S_Type\":\"Node\",\"SrcAddr\":\"10.0.128.3\",\"Etype\":2048,\"Interface\":\"br-ex\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-2.c.openshift-qe.internal", + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531107000064", + "{\"Interface\":\"ens4\",\"SrcPort\":6443,\"SrcK8S_Type\":\"Node\",\"DstPort\":39546,\"SrcMac\":\"42:01:0A:00:00:04\",\"IfDirection\":1,\"AgentIP\":\"10.0.0.4\",\"DstAddr\":\"10.0.0.3\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Type\":\"Node\",\"TimeFlowStartMs\":1693597531107,\"Etype\":2048,\"Bytes\":3076,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcAddr\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:01\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"TimeFlowEndMs\":1693597531107,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Packets\":2,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstK8S_HostIP\":\"10.0.0.3\",\"TimeReceived\":1693597531,\"Duplicate\":false}" + ], + [ + "1693597531096999936", + "{\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_OwnerType\":\"Node\",\"DstPort\":46050,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"TimeFlowEndMs\":1693597531097,\"DstK8S_Type\":\"Node\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcK8S_OwnerType\":\"Node\",\"DstMac\":\"42:01:0A:00:00:01\",\"SrcMac\":\"42:01:0A:00:00:04\",\"Duplicate\":false,\"Flags\":16,\"Proto\":6,\"AgentIP\":\"10.0.0.4\",\"TimeFlowStartMs\":1693597531097,\"DstAddr\":\"10.0.0.3\",\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcPort\":2379,\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"Interface\":\"ens4\",\"TimeReceived\":1693597531,\"IfDirection\":1,\"Packets\":1,\"SrcAddr\":\"10.0.0.4\",\"Bytes\":112}" + ], + [ + "1693597531068999936", + "{\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Duplicate\":false,\"Interface\":\"br-ex\",\"Bytes\":172,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcMac\":\"42:01:0A:00:00:04\",\"DstK8S_Type\":\"Node\",\"AgentIP\":\"10.0.0.4\",\"TimeReceived\":1693597531,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"TimeFlowStartMs\":1693597531069,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstAddr\":\"10.0.0.3\",\"IfDirection\":1,\"SrcK8S_Type\":\"Node\",\"DstPort\":44152,\"TimeFlowEndMs\":1693597531069,\"SrcK8S_OwnerType\":\"Node\",\"Etype\":2048,\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.0.4\",\"Packets\":1,\"SrcAddr\":\"10.0.0.4\",\"SrcPort\":6443}" + ], + [ + "1693597531060999936", + "{\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"Interface\":\"ens4\",\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_Type\":\"Node\",\"Flags\":16,\"IfDirection\":1,\"SrcMac\":\"42:01:0A:00:00:04\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstPort\":37894,\"Proto\":6,\"AgentIP\":\"10.0.0.4\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"TimeReceived\":1693597531,\"Packets\":1,\"Duplicate\":false,\"DstAddr\":\"10.0.0.3\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstMac\":\"42:01:0A:00:00:01\",\"TimeFlowStartMs\":1693597531061,\"Bytes\":186,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_Type\":\"Node\",\"Etype\":2048,\"SrcPort\":6443,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"TimeFlowEndMs\":1693597531061,\"DstK8S_HostIP\":\"10.0.0.3\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531089999872", + "{\"Bytes\":66,\"TimeReceived\":1693597531,\"SrcAddr\":\"10.0.128.2\",\"Packets\":1,\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_Type\":\"Node\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal\",\"Duplicate\":false,\"Etype\":2048,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-b-2smvx.c.openshift-qe.internal\",\"DstK8S_HostIP\":\"10.0.0.4\",\"TimeFlowStartMs\":1693597531090,\"DstPort\":9204,\"SrcMac\":\"42:01:0A:00:00:01\",\"DstMac\":\"42:01:0A:00:00:04\",\"AgentIP\":\"10.0.0.4\",\"Flags\":16,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Interface\":\"br-ex\",\"SrcPort\":45232,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_HostIP\":\"10.0.128.2\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_Type\":\"Node\",\"DstAddr\":\"10.0.0.4\",\"IfDirection\":0,\"TimeFlowEndMs\":1693597531090}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531075000064", + "{\"SrcK8S_Type\":\"Node\",\"SrcK8S_HostIP\":\"10.0.128.4\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcAddr\":\"10.0.128.4\",\"Etype\":2048,\"DstPort\":6081,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcPort\":58063,\"Duplicate\":false,\"Interface\":\"ens4\",\"DstK8S_OwnerType\":\"Node\",\"Proto\":17,\"DstK8S_Type\":\"Node\",\"DstAddr\":\"10.0.0.4\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"TimeFlowStartMs\":1693597531075,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstMac\":\"42:01:0A:00:00:04\",\"Packets\":1,\"IfDirection\":0,\"AgentIP\":\"10.0.0.4\",\"DstK8S_HostIP\":\"10.0.0.4\",\"Bytes\":124,\"SrcK8S_OwnerType\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"TimeFlowEndMs\":1693597531075,\"TimeReceived\":1693597531}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-2.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531108000000", + "{\"SrcK8S_HostIP\":\"10.0.0.3\",\"DstMac\":\"42:01:0A:00:00:04\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Packets\":2,\"AgentIP\":\"10.0.0.4\",\"Duplicate\":false,\"Proto\":6,\"TimeFlowStartMs\":1693597531107,\"Flags\":16,\"DstPort\":6443,\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcPort\":39546,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"Etype\":2048,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstAddr\":\"10.0.0.4\",\"DstK8S_Type\":\"Node\",\"TimeReceived\":1693597531,\"TimeFlowEndMs\":1693597531108,\"SrcAddr\":\"10.0.0.3\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":167,\"IfDirection\":0,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Interface\":\"br-ex\"}" + ], + [ + "1693597531096999936", + "{\"Bytes\":191,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"SrcAddr\":\"10.0.0.3\",\"SrcPort\":46050,\"Duplicate\":false,\"TimeFlowStartMs\":1693597531097,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"Proto\":6,\"Etype\":2048,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstAddr\":\"10.0.0.4\",\"DstK8S_HostIP\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:04\",\"Packets\":2,\"DstK8S_Type\":\"Node\",\"TimeFlowEndMs\":1693597531097,\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Node\",\"TimeReceived\":1693597531,\"IfDirection\":0,\"AgentIP\":\"10.0.0.4\",\"Flags\":16,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcK8S_Type\":\"Node\",\"Interface\":\"ens4\"}" + ], + [ + "1693597531070000128", + "{\"Packets\":1,\"AgentIP\":\"10.0.0.4\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstK8S_Type\":\"Node\",\"SrcAddr\":\"10.0.0.3\",\"Interface\":\"ens4\",\"DstK8S_OwnerType\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"TimeFlowStartMs\":1693597531070,\"SrcK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"Bytes\":66,\"TimeReceived\":1693597531,\"SrcPort\":44152,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstMac\":\"42:01:0A:00:00:04\",\"TimeFlowEndMs\":1693597531070,\"DstAddr\":\"10.0.0.4\",\"DstK8S_HostIP\":\"10.0.0.4\",\"Duplicate\":false,\"SrcK8S_HostIP\":\"10.0.0.3\",\"IfDirection\":0,\"SrcK8S_Type\":\"Node\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstPort\":6443,\"Flags\":16,\"Etype\":2048,\"Proto\":6}" + ], + [ + "1693597531064999936", + "{\"IfDirection\":0,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcPort\":48032,\"Interface\":\"ens4\",\"SrcK8S_OwnerType\":\"Node\",\"DstPort\":2379,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_Type\":\"Node\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"Duplicate\":false,\"TimeFlowStartMs\":1693597528175,\"AgentIP\":\"10.0.0.4\",\"TimeReceived\":1693597531,\"DstK8S_OwnerType\":\"Node\",\"TimeFlowEndMs\":1693597531065,\"Proto\":6,\"Packets\":7,\"SrcMac\":\"42:01:0A:00:00:01\",\"Etype\":2048,\"DstMac\":\"42:01:0A:00:00:04\",\"SrcK8S_Type\":\"Node\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Bytes\":745,\"Flags\":16,\"SrcAddr\":\"10.0.0.3\",\"DstAddr\":\"10.0.0.4\"}" + ], + [ + "1693597531060999936", + "{\"Bytes\":66,\"DstAddr\":\"10.0.0.4\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"DstK8S_HostIP\":\"10.0.0.4\",\"Etype\":2048,\"SrcPort\":37894,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Flags\":16,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Proto\":6,\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.0.3\",\"IfDirection\":0,\"TimeReceived\":1693597531,\"DstPort\":6443,\"Packets\":1,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"TimeFlowStartMs\":1693597531061,\"Duplicate\":false,\"DstMac\":\"42:01:0A:00:00:04\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"SrcK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.4\",\"SrcK8S_Type\":\"Node\",\"SrcMac\":\"42:01:0A:00:00:01\",\"TimeFlowEndMs\":1693597531061,\"DstK8S_Type\":\"Node\",\"Interface\":\"br-ex\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-0.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531112999936", + "{\"TimeFlowStartMs\":1693597531113,\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"SrcPort\":33158,\"Proto\":6,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstK8S_Type\":\"Node\",\"DstPort\":2380,\"Packets\":1,\"Flags\":16,\"Etype\":2048,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"SrcAddr\":\"10.0.0.5\",\"Duplicate\":false,\"DstAddr\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:04\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"TimeReceived\":1693597531,\"SrcMac\":\"42:01:0A:00:00:01\",\"AgentIP\":\"10.0.0.4\",\"Bytes\":66,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"IfDirection\":0,\"Interface\":\"ens4\",\"DstK8S_HostIP\":\"10.0.0.4\",\"TimeFlowEndMs\":1693597531113}" + ], + [ + "1693597531112000000", + "{\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Duplicate\":false,\"TimeFlowEndMs\":1693597531112,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"AgentIP\":\"10.0.0.4\",\"TimeReceived\":1693597531,\"DstMac\":\"42:01:0A:00:00:04\",\"SrcK8S_OwnerType\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"DstPort\":54042,\"TimeFlowStartMs\":1693597531112,\"SrcMac\":\"42:01:0A:00:00:01\",\"Packets\":1,\"Proto\":6,\"SrcPort\":2380,\"SrcK8S_Type\":\"Node\",\"Flags\":16,\"IfDirection\":0,\"DstK8S_Type\":\"Node\",\"Etype\":2048,\"SrcAddr\":\"10.0.0.5\",\"Bytes\":160,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"Interface\":\"br-ex\",\"DstAddr\":\"10.0.0.4\"}" + ], + [ + "1693597531108999936", + "{\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstK8S_Type\":\"Node\",\"Duplicate\":false,\"Flags\":16,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstPort\":54058,\"SrcAddr\":\"10.0.0.5\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstAddr\":\"10.0.0.4\",\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"IfDirection\":0,\"TimeFlowEndMs\":1693597531109,\"SrcMac\":\"42:01:0A:00:00:01\",\"SrcK8S_OwnerType\":\"Node\",\"Packets\":1,\"Interface\":\"ens4\",\"DstMac\":\"42:01:0A:00:00:04\",\"Proto\":6,\"Etype\":2048,\"TimeReceived\":1693597531,\"SrcK8S_HostIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1693597531109,\"SrcK8S_Type\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"Bytes\":111,\"AgentIP\":\"10.0.0.4\",\"SrcPort\":2380}" + ], + [ + "1693597531107000064", + "{\"TimeFlowEndMs\":1693597531107,\"DstMac\":\"42:01:0A:00:00:04\",\"SrcMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstAddr\":\"10.0.0.4\",\"DstK8S_HostIP\":\"10.0.0.4\",\"DstK8S_Type\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"SrcAddr\":\"10.0.0.5\",\"Bytes\":217,\"SrcK8S_Type\":\"Node\",\"IfDirection\":0,\"SrcK8S_OwnerType\":\"Node\",\"Duplicate\":false,\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstPort\":59830,\"Flags\":16,\"Packets\":2,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"Etype\":2048,\"SrcPort\":2379,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Interface\":\"ens4\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Proto\":6,\"TimeFlowStartMs\":1693597531107,\"TimeReceived\":1693597531,\"AgentIP\":\"10.0.0.4\"}" + ], + [ + "1693597531102000128", + "{\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"Packets\":1,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"DstK8S_HostIP\":\"10.0.0.4\",\"Flags\":16,\"IfDirection\":0,\"SrcMac\":\"42:01:0A:00:00:01\",\"DstMac\":\"42:01:0A:00:00:04\",\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_HostIP\":\"10.0.0.5\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Proto\":6,\"DstK8S_Type\":\"Node\",\"Bytes\":112,\"AgentIP\":\"10.0.0.4\",\"SrcPort\":2379,\"SrcK8S_Type\":\"Node\",\"TimeFlowEndMs\":1693597531102,\"SrcAddr\":\"10.0.0.5\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeFlowStartMs\":1693597531102,\"TimeReceived\":1693597531,\"Interface\":\"br-ex\",\"SrcK8S_OwnerType\":\"Node\",\"DstAddr\":\"10.0.0.4\",\"DstPort\":34250,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Duplicate\":false,\"Etype\":2048}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-apiserver", + "SrcK8S_OwnerName": "apiserver", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531089999872", + "{\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"IfDirection\":0,\"Bytes\":66,\"Duplicate\":false,\"TimeReceived\":1693597531,\"AgentIP\":\"10.0.0.4\",\"Etype\":2048,\"Interface\":\"43c7f0d8a9de2d5\",\"Packets\":1,\"SrcPort\":39306,\"DstK8S_Type\":\"Node\",\"SrcK8S_Type\":\"Pod\",\"TimeFlowEndMs\":1693597531090,\"TimeFlowStartMs\":1693597531090,\"DstMac\":\"0A:58:0A:82:00:01\",\"DstAddr\":\"10.0.0.4\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcMac\":\"0A:58:0A:82:00:52\",\"Proto\":6,\"SrcAddr\":\"10.130.0.82\",\"DstK8S_OwnerType\":\"Node\",\"DstK8S_HostIP\":\"10.0.0.4\",\"SrcK8S_Name\":\"apiserver-5b689969b7-dq5bj\",\"Flags\":16,\"SrcK8S_HostIP\":\"10.0.0.4\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstPort\":2379,\"SrcK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-0.c.openshift-qe.internal", + "FlowDirection": "1", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531068999936", + "{\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstAddr\":\"10.0.0.5\",\"Packets\":1,\"DstK8S_Type\":\"Node\",\"IfDirection\":1,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"SrcAddr\":\"10.0.0.2\",\"SrcPort\":6443,\"SrcMac\":\"42:01:0A:00:00:04\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"Interface\":\"ens4\",\"DstK8S_HostIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1693597531069,\"DstMac\":\"42:01:0A:00:00:01\",\"Etype\":2048,\"DstPort\":58220,\"TimeFlowEndMs\":1693597531069,\"AgentIP\":\"10.0.0.4\",\"Proto\":6,\"Duplicate\":false,\"TimeReceived\":1693597531,\"DstK8S_OwnerType\":\"Node\",\"Bytes\":172,\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_OwnerName": "memodi-09011002-sj6qc-master-0.c.openshift-qe.internal", + "FlowDirection": "1", + "SrcK8S_OwnerName": "memodi-09011002-sj6qc-master-1.c.openshift-qe.internal", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531112000000", + "{\"DstAddr\":\"10.0.0.5\",\"Interface\":\"br-ex\",\"Etype\":2048,\"DstK8S_Type\":\"Node\",\"Proto\":6,\"TimeFlowStartMs\":1693597531112,\"SrcAddr\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostIP\":\"10.0.0.5\",\"IfDirection\":1,\"Packets\":1,\"Flags\":16,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"SrcMac\":\"42:01:0A:00:00:04\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"TimeFlowEndMs\":1693597531112,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_Type\":\"Node\",\"Duplicate\":false,\"SrcK8S_HostIP\":\"10.0.0.4\",\"TimeReceived\":1693597531,\"Bytes\":158,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"AgentIP\":\"10.0.0.4\",\"DstPort\":33158,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcPort\":2380}" + ], + [ + "1693597531112000000", + "{\"DstPort\":2380,\"Proto\":6,\"SrcK8S_HostIP\":\"10.0.0.4\",\"TimeFlowEndMs\":1693597531112,\"TimeReceived\":1693597531,\"IfDirection\":1,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Bytes\":66,\"SrcMac\":\"42:01:0A:00:00:04\",\"Packets\":1,\"Duplicate\":false,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostIP\":\"10.0.0.5\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"AgentIP\":\"10.0.0.4\",\"SrcPort\":54042,\"TimeFlowStartMs\":1693597531112,\"DstAddr\":\"10.0.0.5\",\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Interface\":\"ens4\",\"Etype\":2048,\"Flags\":16,\"SrcK8S_Type\":\"Node\",\"DstK8S_Type\":\"Node\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\"}" + ], + [ + "1693597531108999936", + "{\"TimeReceived\":1693597531,\"Etype\":2048,\"SrcK8S_HostIP\":\"10.0.0.4\",\"SrcK8S_Type\":\"Node\",\"DstAddr\":\"10.0.0.5\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"DstK8S_OwnerType\":\"Node\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_Type\":\"Node\",\"IfDirection\":1,\"TimeFlowStartMs\":1693597531109,\"SrcMac\":\"42:01:0A:00:00:04\",\"Bytes\":66,\"Interface\":\"br-ex\",\"Flags\":16,\"AgentIP\":\"10.0.0.4\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcPort\":54058,\"SrcAddr\":\"10.0.0.4\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Proto\":6,\"DstK8S_HostIP\":\"10.0.0.5\",\"DstPort\":2380,\"SrcK8S_OwnerType\":\"Node\",\"Duplicate\":false,\"Packets\":1,\"TimeFlowEndMs\":1693597531109,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\"}" + ], + [ + "1693597531107000064", + "{\"DstK8S_HostIP\":\"10.0.0.5\",\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_Type\":\"Node\",\"DstPort\":2379,\"DstK8S_OwnerType\":\"Node\",\"SrcK8S_Type\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Proto\":6,\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"AgentIP\":\"10.0.0.4\",\"Interface\":\"ens4\",\"Bytes\":66,\"SrcAddr\":\"10.0.0.4\",\"DstAddr\":\"10.0.0.5\",\"TimeFlowEndMs\":1693597531107,\"SrcPort\":59830,\"IfDirection\":1,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"Duplicate\":false,\"SrcK8S_HostIP\":\"10.0.0.4\",\"TimeReceived\":1693597531,\"Flags\":16,\"Etype\":2048,\"SrcMac\":\"42:01:0A:00:00:04\",\"TimeFlowStartMs\":1693597531107,\"Packets\":1}" + ], + [ + "1693597531100999936", + "{\"SrcK8S_HostIP\":\"10.0.0.4\",\"TimeFlowEndMs\":1693597531101,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstPort\":2379,\"SrcK8S_Type\":\"Node\",\"SrcK8S_OwnerType\":\"Node\",\"Proto\":6,\"DstMac\":\"42:01:0A:00:00:01\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"TimeFlowStartMs\":1693597531101,\"DstK8S_Type\":\"Node\",\"DstK8S_OwnerType\":\"Node\",\"AgentIP\":\"10.0.0.4\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Interface\":\"ens4\",\"Bytes\":125,\"DstK8S_HostIP\":\"10.0.0.5\",\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"SrcPort\":34250,\"DstAddr\":\"10.0.0.5\",\"SrcAddr\":\"10.0.0.4\",\"Packets\":1,\"Etype\":2048,\"IfDirection\":1,\"Flags\":16,\"SrcMac\":\"42:01:0A:00:00:04\",\"Duplicate\":false,\"TimeReceived\":1693597531}" + ], + [ + "1693597531086000128", + "{\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"DstAddr\":\"10.0.0.5\",\"SrcK8S_Type\":\"Node\",\"SrcPort\":59722,\"TimeFlowEndMs\":1693597531086,\"SrcK8S_HostIP\":\"10.0.0.4\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"IfDirection\":1,\"AgentIP\":\"10.0.0.4\",\"DstMac\":\"42:01:0A:00:00:01\",\"Proto\":6,\"Flags\":16,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcK8S_OwnerType\":\"Node\",\"SrcK8S_Name\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"DstPort\":2379,\"SrcAddr\":\"10.0.0.4\",\"Duplicate\":false,\"Packets\":1,\"Etype\":2048,\"DstK8S_Name\":\"memodi-09011002-sj6qc-master-0.c.openshift-qe.internal\",\"DstK8S_OwnerType\":\"Node\",\"TimeReceived\":1693597531,\"DstK8S_HostIP\":\"10.0.0.5\",\"TimeFlowStartMs\":1693597531086,\"Interface\":\"br-ex\",\"SrcMac\":\"42:01:0A:00:00:04\",\"Bytes\":66,\"DstK8S_Type\":\"Node\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-route-controller-manager", + "DstK8S_OwnerName": "route-controller-manager", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531076000000", + "{\"DstK8S_Name\":\"route-controller-manager-85874d9767-rjt48\",\"IfDirection\":0,\"Etype\":2048,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"DstMac\":\"0A:58:A8:FE:00:04\",\"AgentIP\":\"10.0.0.4\",\"TimeFlowStartMs\":1693597531076,\"SrcK8S_Name\":\"prometheus-k8s-1\",\"SrcPort\":51394,\"DstK8S_HostIP\":\"10.0.0.4\",\"Proto\":6,\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostIP\":\"10.0.128.4\",\"Packets\":1,\"DstAddr\":\"10.130.0.32\",\"SrcK8S_Type\":\"Pod\",\"Duplicate\":false,\"SrcMac\":\"0A:58:A8:FE:00:07\",\"TimeFlowEndMs\":1693597531076,\"SrcK8S_OwnerType\":\"StatefulSet\",\"Flags\":16,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeReceived\":1693597531,\"DstPort\":8443,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"Bytes\":66,\"SrcAddr\":\"10.129.2.18\",\"DstK8S_Type\":\"Pod\",\"DstK8S_OwnerType\":\"Deployment\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-netobserv-operator", + "DstK8S_OwnerName": "netobserv-controller-manager", + "FlowDirection": "0", + "SrcK8S_Namespace": "default", + "SrcK8S_OwnerName": "kubernetes", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531350000128", + "{\"Duplicate\":false,\"DstAddr\":\"10.131.0.55\",\"DstK8S_Name\":\"netobserv-controller-manager-d459df68b-b7wtx\",\"SrcK8S_OwnerType\":\"Service\",\"Flags\":16,\"DstMac\":\"0A:58:0A:83:00:37\",\"DstPort\":53582,\"SrcK8S_Type\":\"Service\",\"SrcAddr\":\"172.30.0.1\",\"DstK8S_OwnerType\":\"Deployment\",\"TimeFlowStartMs\":1693597526735,\"TimeFlowEndMs\":1693597531350,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"DstK8S_Type\":\"Pod\",\"Proto\":6,\"Bytes\":16331,\"DstK8S_HostIP\":\"10.0.128.3\",\"AgentIP\":\"10.0.128.3\",\"Packets\":35,\"IfDirection\":1,\"SrcPort\":443,\"Etype\":2048,\"TimeReceived\":1693597531,\"SrcK8S_Name\":\"kubernetes\",\"SrcMac\":\"0A:58:0A:83:00:01\",\"Interface\":\"16c5db093a50488\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-route-controller-manager", + "SrcK8S_OwnerName": "route-controller-manager", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531076000000", + "{\"DstK8S_OwnerType\":\"StatefulSet\",\"DstMac\":\"0A:58:A8:FE:00:07\",\"SrcAddr\":\"10.130.0.32\",\"Bytes\":66,\"SrcK8S_Name\":\"route-controller-manager-85874d9767-rjt48\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstK8S_Type\":\"Pod\",\"TimeFlowStartMs\":1693597531076,\"SrcK8S_Type\":\"Pod\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-1.c.openshift-qe.internal\",\"SrcMac\":\"0A:58:A8:FE:00:04\",\"DstPort\":51394,\"Packets\":1,\"SrcK8S_OwnerType\":\"Deployment\",\"TimeReceived\":1693597531,\"DstK8S_HostIP\":\"10.0.128.4\",\"SrcK8S_HostIP\":\"10.0.0.4\",\"AgentIP\":\"10.0.0.4\",\"IfDirection\":1,\"TimeFlowEndMs\":1693597531076,\"Proto\":6,\"DstK8S_Name\":\"prometheus-k8s-1\",\"SrcPort\":8443,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"Duplicate\":false,\"Flags\":16,\"Interface\":\"genev_sys_6081\",\"Etype\":2048,\"DstAddr\":\"10.129.2.18\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-k8s", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-adapter", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531076000000", + "{\"DstK8S_Type\":\"Pod\",\"SrcK8S_Name\":\"prometheus-adapter-784dcdd4c8-cn9l2\",\"TimeFlowStartMs\":1693597531076,\"DstAddr\":\"10.129.2.18\",\"IfDirection\":0,\"SrcPort\":6443,\"Duplicate\":false,\"Etype\":2048,\"DstK8S_Name\":\"prometheus-k8s-1\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Proto\":6,\"Flags\":16,\"SrcMac\":\"0A:58:0A:83:00:09\",\"TimeReceived\":1693597531,\"Bytes\":66,\"DstPort\":50246,\"SrcK8S_HostIP\":\"10.0.128.3\",\"AgentIP\":\"10.0.128.3\",\"DstK8S_OwnerType\":\"StatefulSet\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Packets\":1,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"TimeFlowEndMs\":1693597531076,\"SrcAddr\":\"10.131.0.9\",\"DstK8S_HostIP\":\"10.0.128.4\",\"SrcK8S_OwnerType\":\"Deployment\",\"Interface\":\"cf31d1ecb0c180a\",\"DstMac\":\"0A:58:0A:83:00:01\",\"SrcK8S_Type\":\"Pod\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-monitoring", + "DstK8S_OwnerName": "prometheus-adapter", + "FlowDirection": "0", + "SrcK8S_Namespace": "openshift-monitoring", + "SrcK8S_OwnerName": "prometheus-k8s", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531076000000", + "{\"SrcPort\":50246,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-a-srxmm.c.openshift-qe.internal\",\"TimeFlowStartMs\":1693597531076,\"SrcMac\":\"0A:58:0A:83:00:01\",\"SrcK8S_Name\":\"prometheus-k8s-1\",\"Packets\":1,\"Interface\":\"cf31d1ecb0c180a\",\"IfDirection\":1,\"DstPort\":6443,\"Duplicate\":false,\"SrcK8S_HostIP\":\"10.0.128.4\",\"Proto\":6,\"DstMac\":\"0A:58:0A:83:00:09\",\"DstK8S_OwnerType\":\"Deployment\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Etype\":2048,\"TimeReceived\":1693597531,\"DstAddr\":\"10.131.0.9\",\"Bytes\":66,\"DstK8S_Name\":\"prometheus-adapter-784dcdd4c8-cn9l2\",\"DstK8S_Type\":\"Pod\",\"AgentIP\":\"10.0.128.3\",\"SrcK8S_Type\":\"Pod\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"TimeFlowEndMs\":1693597531076,\"SrcK8S_OwnerType\":\"StatefulSet\",\"SrcAddr\":\"10.129.2.18\",\"DstK8S_HostIP\":\"10.0.128.3\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "openshift-image-registry", + "DstK8S_OwnerName": "image-registry", + "FlowDirection": "0", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531199000064", + "{\"Etype\":2048,\"IfDirection\":1,\"SrcPort\":443,\"SrcMac\":\"0A:58:0A:83:00:01\",\"Proto\":6,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"AgentIP\":\"10.0.128.3\",\"SrcAddr\":\"142.251.120.128\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstPort\":35434,\"DstK8S_Name\":\"image-registry-789bfd69df-h49hr\",\"TimeFlowEndMs\":1693597531199,\"Duplicate\":false,\"DstMac\":\"0A:58:0A:83:00:07\",\"Bytes\":688,\"Interface\":\"a20126002369ec7\",\"TimeFlowStartMs\":1693597531151,\"DstAddr\":\"10.131.0.7\",\"DstK8S_Type\":\"Pod\",\"TimeReceived\":1693597531,\"DstK8S_OwnerType\":\"Deployment\",\"Packets\":6,\"DstK8S_HostIP\":\"10.0.128.3\",\"Flags\":16}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "loki", + "FlowDirection": "0", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "flowlogs-pipeline", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531230000128", + "{\"DstK8S_OwnerType\":\"Pod\",\"TimeFlowEndMs\":1693597531230,\"SrcMac\":\"0A:58:0A:83:00:01\",\"DstK8S_Type\":\"Pod\",\"SrcAddr\":\"10.128.0.80\",\"IfDirection\":1,\"TimeReceived\":1693597531,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstK8S_Name\":\"loki\",\"SrcK8S_Type\":\"Pod\",\"Etype\":2048,\"DstK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"SrcK8S_HostIP\":\"10.0.0.3\",\"DstMac\":\"0A:58:0A:83:00:35\",\"SrcK8S_Name\":\"flowlogs-pipeline-9cq8g\",\"SrcPort\":43382,\"Bytes\":520683,\"Duplicate\":false,\"DstPort\":3100,\"Flags\":530,\"Packets\":35,\"TimeFlowStartMs\":1693597531179,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"DstAddr\":\"10.131.0.53\",\"DstK8S_HostIP\":\"10.0.128.3\",\"SrcK8S_OwnerType\":\"DaemonSet\",\"Proto\":6,\"Interface\":\"22f1f60d9f719e0\",\"AgentIP\":\"10.0.128.3\"}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "netobserv", + "DstK8S_OwnerName": "flowlogs-pipeline", + "FlowDirection": "1", + "SrcK8S_Namespace": "netobserv", + "SrcK8S_OwnerName": "loki", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531230000128", + "{\"Etype\":2048,\"SrcK8S_OwnerType\":\"Pod\",\"Interface\":\"genev_sys_6081\",\"SrcK8S_HostIP\":\"10.0.128.3\",\"IfDirection\":1,\"DstK8S_Name\":\"flowlogs-pipeline-9cq8g\",\"DstK8S_HostName\":\"memodi-09011002-sj6qc-master-2.c.openshift-qe.internal\",\"DstAddr\":\"10.128.0.80\",\"Packets\":35,\"TimeReceived\":1693597531,\"DstK8S_OwnerType\":\"DaemonSet\",\"SrcK8S_Type\":\"Pod\",\"AgentIP\":\"10.0.128.3\",\"Flags\":784,\"SrcAddr\":\"10.131.0.53\",\"DstK8S_HostIP\":\"10.0.0.3\",\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"DstK8S_Type\":\"Pod\",\"DstMac\":\"0A:58:A8:FE:00:02\",\"SrcMac\":\"0A:58:A8:FE:00:05\",\"SrcPort\":3100,\"Proto\":6,\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"Bytes\":2449,\"DstPort\":43382,\"Duplicate\":false,\"SrcK8S_Name\":\"loki\",\"TimeFlowStartMs\":1693597531179,\"TimeFlowEndMs\":1693597531230}" + ] + ] + }, + { + "stream": { + "DstK8S_Namespace": "default", + "DstK8S_OwnerName": "kubernetes", + "FlowDirection": "1", + "SrcK8S_Namespace": "openshift-netobserv-operator", + "SrcK8S_OwnerName": "netobserv-controller-manager", + "app": "netobserv-flowcollector" + }, + "values": [ + [ + "1693597531391000064", + "{\"Duplicate\":false,\"Proto\":6,\"DstK8S_Type\":\"Service\",\"AgentIP\":\"10.0.128.3\",\"DstK8S_Name\":\"kubernetes\",\"SrcK8S_Name\":\"netobserv-controller-manager-d459df68b-b7wtx\",\"K8S_ClusterName\":\"456ef137-3c78-4311-9fed-bf75c1070c55\",\"SrcMac\":\"0A:58:0A:83:00:37\",\"SrcK8S_Type\":\"Pod\",\"SrcK8S_OwnerType\":\"Deployment\",\"Bytes\":6127,\"SrcK8S_HostIP\":\"10.0.128.3\",\"IfDirection\":0,\"DstPort\":443,\"Packets\":36,\"DstAddr\":\"172.30.0.1\",\"DstMac\":\"0A:58:0A:83:00:01\",\"TimeFlowStartMs\":1693597526776,\"SrcK8S_HostName\":\"memodi-09011002-sj6qc-worker-c-ldl2l.c.openshift-qe.internal\",\"Flags\":16,\"TimeFlowEndMs\":1693597531391,\"TimeReceived\":1693597531,\"Interface\":\"16c5db093a50488\",\"DstK8S_OwnerType\":\"Service\",\"SrcPort\":53582,\"SrcAddr\":\"10.131.0.55\",\"Etype\":2048}" + ] + ] + } + ], + "stats": { + "numQueries": 1, + "totalEntries": 50, + "duplicates": 0, + "limitReached": true, + "queriesStats": [ + { + "ingester": { + "store": { + "chunk": { + "compressedBytes": 10306689, + "decompressedBytes": 49149607, + "decompressedLines": 57952, + "headChunkBytes": 17805247, + "headChunkLines": 22119, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + }, + "totalBatches": 16, + "totalChunksMatched": 787, + "totalLinesSent": 800, + "totalReached": 16 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 358266311, + "execTime": 0.18688571, + "linesProcessedPerSecond": 428449, + "queueTime": 0.541156605, + "subqueries": 1, + "totalBytesProcessed": 66954854, + "totalEntriesReturned": 50, + "totalLinesProcessed": 80071 + } + } + ] + }, + "isMock": false, + "unixTimestamp": 0 +} \ No newline at end of file diff --git a/web/cypress/fixtures/perf/overview_perf_app.json b/web/cypress/fixtures/perf/overview_perf_app.json new file mode 100644 index 000000000..bc688c703 --- /dev/null +++ b/web/cypress/fixtures/perf/overview_perf_app.json @@ -0,0 +1,150 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "app": "netobserv-flowcollector" + }, + "values": [ + [ + 1686858495, + "3201731.033333334" + ], + [ + 1686858510, + "4570573.133333334" + ], + [ + 1686858525, + "4499798.633333335" + ], + [ + 1686858540, + "2758475.366666667" + ], + [ + 1686858555, + "10760865.733333332" + ], + [ + 1686858570, + "11405891.03333333" + ], + [ + 1686858585, + "5918738.066666666" + ], + [ + 1686858600, + "5623226.4333333345" + ], + [ + 1686858615, + "31970331.199999996" + ], + [ + 1686858630, + "34038560.46666667" + ], + [ + 1686858645, + "5157872.000000001" + ], + [ + 1686858660, + "3440526.899999999" + ], + [ + 1686858675, + "4823679.6000000015" + ], + [ + 1686858690, + "3407676.4333333336" + ], + [ + 1686858705, + "505817.70000000007" + ], + [ + 1686858720, + "172426.90000000002" + ], + [ + 1686858735, + "80406.36666666667" + ], + [ + 1686858750, + "67755.26666666666" + ], + [ + 1686858765, + "68964.13333333335" + ], + [ + 1686858780, + "61928.03333333332" + ], + [ + 1686858795, + "67873.23333333334" + ] + ] + } + ], + "stats": { + "numQueries": 1, + "limitReached": false, + "queriesStats": [ + { + "ingester": { + "store": { + "chunk": { + "compressedBytes": 56218200, + "decompressedBytes": 257178667, + "decompressedLines": 329046, + "headChunkBytes": 31647617, + "headChunkLines": 42185, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 38604093, + "totalChunksDownloaded": 50, + "totalChunksRef": 50 + }, + "totalBatches": 350, + "totalChunksMatched": 2344, + "totalLinesSent": 152457, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 288547519, + "execTime": 1.000966097, + "linesProcessedPerSecond": 370872, + "queueTime": 20.505935991, + "subqueries": 6, + "totalBytesProcessed": 288826284, + "totalEntriesReturned": 1, + "totalLinesProcessed": 371231 + } + } + ] + }, + "isMock": false, + "unixTimestamp": 1686858804 +} \ No newline at end of file diff --git a/web/cypress/fixtures/perf/overview_perf_ns.json b/web/cypress/fixtures/perf/overview_perf_ns.json new file mode 100644 index 000000000..33d1c03a4 --- /dev/null +++ b/web/cypress/fixtures/perf/overview_perf_ns.json @@ -0,0 +1,563 @@ +{ + "resultType": "matrix", + "result": [ + { + "metric": { + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686858705, + "31032.633333333335" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "netobserv", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1686858495, + "314668.4" + ], + [ + 1686858510, + "318824.36666666664" + ], + [ + 1686858525, + "321527.43333333335" + ], + [ + 1686858540, + "317840.56666666665" + ], + [ + 1686858555, + "315374.36666666664" + ], + [ + 1686858570, + "303380.8" + ], + [ + 1686858585, + "343978.13333333336" + ], + [ + 1686858600, + "365588.6666666667" + ], + [ + 1686858615, + "404711.23333333334" + ], + [ + 1686858630, + "423665.3333333333" + ], + [ + 1686858645, + "347320.1333333333" + ], + [ + 1686858660, + "329071.80000000005" + ], + [ + 1686858675, + "334202.8333333333" + ], + [ + 1686858690, + "191812.19999999998" + ], + [ + 1686858705, + "23327.86666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686858540, + "25409.533333333333" + ], + [ + 1686858660, + "175381.3" + ], + [ + 1686858675, + "150868.7" + ], + [ + 1686858690, + "51834.13333333333" + ], + [ + 1686858720, + "6689.366666666667" + ], + [ + 1686858735, + "5779.333333333333" + ], + [ + 1686858750, + "3635.733333333333" + ], + [ + 1686858765, + "2933.2" + ], + [ + 1686858780, + "3913.866666666667" + ], + [ + 1686858795, + "3565.8333333333335" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-console", + "SrcK8S_Namespace": "netobserv" + }, + "values": [ + [ + 1686858585, + "368840.2" + ], + [ + 1686858600, + "369307.86666666664" + ], + [ + 1686858645, + "365128.73333333334" + ], + [ + 1686858705, + "44260.36666666667" + ], + [ + 1686858720, + "28269.6" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-ingress", + "SrcK8S_Namespace": "openshift-console" + }, + "values": [ + [ + 1686858525, + "53211.26666666667" + ], + [ + 1686858540, + "28681.3" + ], + [ + 1686858585, + "564785.2666666667" + ], + [ + 1686858600, + "569142.2666666667" + ], + [ + 1686858630, + "520179.1666666667" + ], + [ + 1686858645, + "565920.5666666667" + ], + [ + 1686858660, + "179180.5" + ], + [ + 1686858675, + "154757.13333333333" + ], + [ + 1686858690, + "65838.73333333334" + ], + [ + 1686858705, + "33175.2" + ], + [ + 1686858720, + "22647.466666666667" + ], + [ + 1686858735, + "3424.633333333333" + ], + [ + 1686858750, + "3675.9333333333334" + ], + [ + 1686858765, + "4720.466666666667" + ], + [ + 1686858780, + "5419.266666666666" + ], + [ + 1686858795, + "4684.533333333334" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686858570, + "197552.86666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring", + "SrcK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686858495, + "240960.8666666667" + ], + [ + 1686858510, + "241535.8666666667" + ], + [ + 1686858555, + "136125.06666666668" + ], + [ + 1686858615, + "153261.43333333335" + ], + [ + 1686858735, + "5996.866666666668" + ], + [ + 1686858750, + "5199.433333333334" + ], + [ + 1686858765, + "5547.066666666666" + ], + [ + 1686858780, + "5427.033333333333" + ], + [ + 1686858795, + "7605" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-monitoring" + }, + "values": [ + [ + 1686858495, + "364504.8333333334" + ], + [ + 1686858510, + "364494.86666666664" + ], + [ + 1686858525, + "364622.2333333333" + ], + [ + 1686858540, + "364611.2666666667" + ], + [ + 1686858555, + "372299.76666666666" + ], + [ + 1686858570, + "372919.5333333333" + ], + [ + 1686858585, + "373315.3666666667" + ], + [ + 1686858600, + "372696.9" + ], + [ + 1686858615, + "366583.9" + ], + [ + 1686858630, + "366511.8666666667" + ], + [ + 1686858645, + "364397.3333333334" + ], + [ + 1686858660, + "364443.3333333334" + ], + [ + 1686858675, + "361391.1" + ], + [ + 1686858690, + "225965.3333333333" + ], + [ + 1686858720, + "6043.5666666666675" + ], + [ + 1686858735, + "9305.133333333333" + ], + [ + 1686858750, + "10387.1" + ], + [ + 1686858765, + "9338.1" + ], + [ + 1686858780, + "7348.8" + ], + [ + 1686858795, + "6854.099999999999" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Namespace": "default" + }, + "values": [ + [ + 1686858495, + "100928.06666666667" + ] + ] + }, + { + "metric": { + "DstK8S_Namespace": "openshift-operator-lifecycle-manager", + "SrcK8S_Namespace": "openshift-marketplace" + }, + "values": [ + [ + 1686858510, + "1176993.8333333333" + ], + [ + 1686858525, + "1177002.6333333333" + ], + [ + 1686858555, + "5061967.266666666" + ], + [ + 1686858570, + "5061967.266666666" + ], + [ + 1686858615, + "18692435.26666667" + ], + [ + 1686858630, + "18692435.26666667" + ] + ] + }, + { + "metric": {}, + "values": [ + [ + 1686858495, + "1780561.7" + ], + [ + 1686858510, + "2062862.1333333335" + ], + [ + 1686858525, + "2125423.2666666666" + ], + [ + 1686858540, + "1653324.5666666667" + ], + [ + 1686858555, + "4491887.399999999" + ], + [ + 1686858570, + "4978250.8999999985" + ], + [ + 1686858585, + "3430363.1666666665" + ], + [ + 1686858600, + "3093776.5" + ], + [ + 1686858615, + "11591624.100000001" + ], + [ + 1686858630, + "12557379.266666662" + ], + [ + 1686858645, + "2711936.5666666673" + ], + [ + 1686858660, + "2012935.8666666667" + ], + [ + 1686858675, + "3394583.733333333" + ], + [ + 1686858690, + "2555238.4666666663" + ], + [ + 1686858705, + "305644.2666666666" + ], + [ + 1686858720, + "91670.96666666666" + ], + [ + 1686858735, + "46543.7" + ], + [ + 1686858750, + "36253.13333333334" + ], + [ + 1686858765, + "36538.26666666667" + ], + [ + 1686858780, + "30904.66666666667" + ], + [ + 1686858795, + "34100.56666666667" + ] + ] + } + ], + "stats": { + "numQueries": 1, + "limitReached": true, + "queriesStats": [ + { + "ingester": { + "store": { + "chunk": { + "compressedBytes": 56218200, + "decompressedBytes": 257178667, + "decompressedLines": 329046, + "headChunkBytes": 31647617, + "headChunkLines": 42185, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 141265463, + "totalChunksDownloaded": 50, + "totalChunksRef": 50 + }, + "totalBatches": 350, + "totalChunksMatched": 2344, + "totalLinesSent": 152457, + "totalReached": 96 + }, + "querier": { + "store": { + "chunk": { + "compressedBytes": 0, + "decompressedBytes": 0, + "decompressedLines": 0, + "headChunkBytes": 0, + "headChunkLines": 0, + "totalDuplicates": 0 + }, + "chunksDownloadTime": 0, + "totalChunksDownloaded": 0, + "totalChunksRef": 0 + } + }, + "summary": { + "bytesProcessedPerSecond": 409161241, + "execTime": 0.705898445, + "linesProcessedPerSecond": 525898, + "queueTime": 11.869901296, + "subqueries": 6, + "totalBytesProcessed": 288826284, + "totalEntriesReturned": 11, + "totalLinesProcessed": 371231 + } + } + ] + }, + "isMock": false, + "unixTimestamp": 1686858804 +} \ No newline at end of file diff --git a/web/cypress/fixtures/prom-role-roleBinding.yaml b/web/cypress/fixtures/prom-role-roleBinding.yaml new file mode 100644 index 000000000..615225016 --- /dev/null +++ b/web/cypress/fixtures/prom-role-roleBinding.yaml @@ -0,0 +1,35 @@ +kind: Template +apiVersion: template.openshift.io/v1 +metadata: + name: netobserv-prom-rbac +objects: +- apiVersion: rbac.authorization.k8s.io/v1 + kind: Role + metadata: + name: netobserv-prom + namespace: ${NAMESPACE} + rules: + - verbs: + - create + apiGroups: + - metrics.k8s.io + resources: + - pods +- apiVersion: rbac.authorization.k8s.io/v1 + kind: RoleBinding + metadata: + name: netobserv-prom-test + namespace: ${NAMESPACE} + roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: netobserv-prom + subjects: + - kind: User + apiGroup: rbac.authorization.k8s.io + name: ${USERNAME} +parameters: +- name: NAMESPACE + value: "netobserv" +- name: USERNAME + value: "testuser-0" diff --git a/web/cypress/fixtures/test-pod.yaml b/web/cypress/fixtures/test-pod.yaml new file mode 100644 index 000000000..93a919403 --- /dev/null +++ b/web/cypress/fixtures/test-pod.yaml @@ -0,0 +1,36 @@ +--- +kind: Namespace +apiVersion: v1 +metadata: + name: netobserv-test-67615 + labels: + name: netobserv-test-67615 + +--- +apiVersion: v1 +kind: Pod +metadata: + creationTimestamp: null + labels: + run: test + name: test + namespace: netobserv-test-67615 +spec: + containers: + - command: + - sh + - -c + - "curl -kIL https://52.200.142.250 --output /tmp/test ;" + image: quay.io/openshifttest/hello-openshift:multiarch + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + privileged: false + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + name: utils + resources: {} + restartPolicy: Never +status: {} diff --git a/web/cypress/fixtures/test-server-client.yaml b/web/cypress/fixtures/test-server-client.yaml new file mode 100644 index 000000000..040e4e9cb --- /dev/null +++ b/web/cypress/fixtures/test-server-client.yaml @@ -0,0 +1,94 @@ +apiVersion: template.openshift.io/v1 +kind: Template +metadata: + name: netobserv-test-client-server +objects: + - kind: Namespace + apiVersion: v1 + metadata: + name: ${SERVER_NS} + labels: + name: ${SERVER_NS} + - apiVersion: apps/v1 + kind: Deployment + metadata: + name: nginx + namespace: ${SERVER_NS} + labels: + app: nginx + spec: + securityContext: + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + privileged: false + image: quay.io/openshifttest/nginx-alpine:1.2.3 + imagePullPolicy: IfNotPresent + ports: + - containerPort: 8080 + - apiVersion: v1 + kind: Service + metadata: + namespace: ${SERVER_NS} + name: nginx-service + spec: + selector: + app: nginx + type: NodePort + ports: + - protocol: TCP + port: 80 + targetPort: 8080 + - kind: Namespace + apiVersion: v1 + metadata: + name: ${CLIENT_NS} + labels: + name: ${CLIENT_NS} + - apiVersion: v1 + kind: Pod + metadata: + creationTimestamp: null + labels: + run: client + name: client + namespace: ${CLIENT_NS} + spec: + containers: + - command: + - sh + - -c + - " + \ while : ; do\n + \ curl nginx-service.${SERVER_NS}.svc:80/data/100K 2>&1 > /dev/null ; sleep 5 \n + \ done" + image: quay.io/openshifttest/hello-openshift:1.2.0 + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: ["ALL"] + privileged: false + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + name: client +parameters: + - name: SERVER_NS + value: test-server + - name: CLIENT_NS + value: test-client diff --git a/web/cypress/fixtures/testuser-server-client.yaml b/web/cypress/fixtures/testuser-server-client.yaml new file mode 100644 index 000000000..beec9fa7c --- /dev/null +++ b/web/cypress/fixtures/testuser-server-client.yaml @@ -0,0 +1,103 @@ +--- +kind: ProjectRequest +apiVersion: project.openshift.io/v1 +metadata: + name: "test-server" + labels: + name: "test-server" +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + namespace: test-server + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + securityContext: + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + containers: + - name: nginx + securityContext: + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + image: quay.io/openshifttest/nginx-alpine:1.2.3 + imagePullPolicy: IfNotPresent + ports: + - containerPort: 8080 +--- +apiVersion: v1 +kind: Service +metadata: + namespace: test-server + name: nginx-service +spec: + selector: + app: nginx + type: NodePort + ports: + - protocol: TCP + port: 80 + targetPort: 8080 +--- +apiVersion: route.openshift.io/v1 +kind: Route +metadata: + namespace: test-server + name: nginx-route +spec: + port: + targetPort: 8080 + to: + kind: Service + name: nginx-service +--- +kind: ProjectRequest +apiVersion: project.openshift.io/v1 +metadata: + name: "test-client" + labels: + name: "test-client" +--- +apiVersion: v1 +kind: Pod +metadata: + creationTimestamp: null + labels: + run: client + name: client + namespace: test-client +spec: + containers: + - command: + - sh + - -c + - " + \ while : ; do\n + \ curl nginx-service.test-server.svc:80/data/100K 2>&1 > /dev/null ; sleep 5 \n + \ done" + image: quay.io/openshifttest/hello-openshift:multiarch + securityContext: + allowPrivilegeEscalation: false + privileged: false + capabilities: + drop: ["ALL"] + runAsNonRoot: true + seccompProfile: + type: RuntimeDefault + name: client + resources: {} +status: {} diff --git a/web/cypress/integration-tests/client_performance.cy.ts b/web/cypress/integration-tests/client_performance.cy.ts new file mode 100644 index 000000000..0259ace11 --- /dev/null +++ b/web/cypress/integration-tests/client_performance.cy.ts @@ -0,0 +1,96 @@ +import { netflowPage, loadTimes, memoryUsage, overviewSelectors, getTopologyScopeURL, getMemoryUsageMB } from "@views/netflow-page" +import { Operator } from "@views/netobserv" + +describe("(OCP-67725, memodi) Network_Observability Client Performances", { browser: 'chrome', tags: ['Performance'] }, function () { + before("tests", function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach("test", function () { + cy.clearLocalStorage() + cy.visit('/netflow-traffic') + // wait for page to be fully loaded + cy.get('#overview-container', { timeout: 60000 }).should('exist') + cy.byTestID('no-results-found').should('not.exist') + + }) + + it("(OCP-67725, memodi, Network_Observability) should measure overview page load times", function () { + netflowPage.clearAllFilters() + const start = performance.now() + cy.intercept('GET', getTopologyScopeURL("namespace"), { + fixture: 'perf/overview_perf_ns.json' + }) + cy.intercept('GET', getTopologyScopeURL("app"), { + fixture: 'perf/overview_perf_app.json' + }) + + cy.get('#overview-flex').contains(overviewSelectors.defaultPanels[0]).should('be.visible').then(() => { + cy.wrap(performance.now()).then(end => { + let pageload = Math.round(end - start) + let curMemoryUsage = getMemoryUsageMB() + cy.log(`Overview page load took ${pageload} ms.`) + cy.log(`Overview page memory consumption ${curMemoryUsage} MB`) + let thresPageload = loadTimes.overview + loadTimes.overview * 0.5 + let memThreshold = memoryUsage.overview + memoryUsage.overview * 0.5 + expect(pageload).to.be.lessThan(thresPageload) + expect(curMemoryUsage).to.be.lessThan(memThreshold) + }) + }) + }) + + it("(OCP-67725, memodi, Network_Observability) should measure table page load times", function () { + cy.get('#tabs-container').contains('Traffic flows').click() + netflowPage.clearAllFilters() + const start = performance.now() + const url = '**/api/flow/metrics*' + cy.intercept('GET', url, { + fixture: 'perf/netflow_table_perf.json' + }) + cy.byTestID("table-composable").should('be.visible').then(() => { + cy.wrap(performance.now()).then(end => { + let pageload = Math.round(end - start) + let curMemoryUsage = getMemoryUsageMB() + cy.log(`Table view page load took ${pageload} ms.`) + cy.log(`Table view memory consumption ${curMemoryUsage} MB`) + let thresPageload = loadTimes.table + loadTimes.table * 0.5 + let memThreshold = memoryUsage.table + memoryUsage.table * 0.5 + expect(pageload).to.be.lessThan(thresPageload) + expect(curMemoryUsage).to.be.lessThan(memThreshold) + }) + }) + }) + + it("(OCP-67725, memodi, Network_Observability) should measure topology page load times", function () { + cy.get('#tabs-container').contains('Topology').click() + netflowPage.clearAllFilters() + const start = performance.now() + cy.intercept('GET', getTopologyScopeURL("namespace"), { + fixture: 'perf/flow_metrics_perf.json' + }) + cy.get('[data-surface="true"]').should('be.visible').then(() => { + cy.wrap(performance.now()).then(end => { + let pageload = Math.round(end - start) + let curMemoryUsage = getMemoryUsageMB() + cy.log(`Topology view page load took ${pageload} ms.`) + cy.log(`Topology view memory consumption ${curMemoryUsage} MB`) + let thresPageload = loadTimes.topology + loadTimes.topology * 0.5 + let memThreshold = memoryUsage.topology + memoryUsage.topology * 0.5 + expect(pageload).to.be.lessThan(thresPageload) + expect(curMemoryUsage).to.be.lessThan(memThreshold) + }) + }) + }) + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/dns_dashboards.cy.ts b/web/cypress/integration-tests/dns_dashboards.cy.ts new file mode 100644 index 000000000..289363e2d --- /dev/null +++ b/web/cypress/integration-tests/dns_dashboards.cy.ts @@ -0,0 +1,90 @@ +import { Operator } from "@views/netobserv" +import { displayDropdownSelectors, filterSelectors, netflowPage, querySumSelectors } from "@views/netflow-page" +import { dashboard } from "@views/dashboards-page" + +const metricType = [ + "Bytes", + "Packets", + "DNS latencies" +] + +const DNSPanels = [ + // below 3 panels should appear with the 'node_dns_latency_seconds' metric + "top-p50-dns-latency-per-node-(ms)-chart", + "top-p99-dns-latency-per-node-(ms)-chart", + "dns-error-rate-per-node-chart", + // below 3 panels should appear with the 'namespace_dns_latency_seconds' metric + "top-p50-dns-latency-per-infra-namespace-(ms)-chart", + "top-p99-dns-latency-per-infra-namespace-(ms)-chart", + "dns-error-rate-per-infra-namespace-chart", + // below 3 panels should appear with the 'workload_dns_latency_seconds' metric + "top-p50-dns-latency-per-infra-workload-(ms)-chart", + "top-p99-dns-latency-per-infra-workload-(ms)-chart", + "dns-error-rate-per-infra-workload-chart" +] + +describe('(OCP-67087 Network_Observability) DNSTracking test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("DNSTracking") + }) + + it("(OCP-67087, aramesha, Network_Observability) Validate DNSLatencies edge label and Query Summary stats", function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Topology').click() + cy.get('#drawer').should('not.be.empty') + + // Filter with DNSLatency > 0 + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.get('#group-2-toggle').click().should('be.visible') + cy.byTestID('dns_latency').click() + cy.get(filterSelectors.compareDropdown).should('exist').click().then(() => { + cy.contains("More than").should('exist').click() + }) + cy.get('#search').type('0' + '{enter}') + + cy.byTestID("show-view-options-button").should('exist').click().then(views => { + cy.get(displayDropdownSelectors.overview).should('exist').click() + // set one display to test with + cy.byTestID('layout-dropdown').click() + cy.byTestID('Grid').click() + }) + + cy.byTestID('metricType').should('exist').click() + cy.get('#metricType').find('li').should('have.length', 3).each((item, index) => { + cy.wrap(item).should('contain.text', metricType[index]) + }) + + cy.get('#DnsLatencyMs').click() + cy.byTestID("scope-dropdown").click().byTestID("host").click() + cy.get(displayDropdownSelectors.overview).should('exist').click() + + cy.get('[data-test-id=edge-handler]').should('exist').each((g) => { + expect(g.text()).to.match(/\d+\s*ms/); + }); + + // verify Query Summary stats for DNSTracking + cy.get(querySumSelectors.dnsAvg).should('exist').then(DNSAvg => { + cy.checkQuerySummary(DNSAvg) + }) + netflowPage.clearAllFilters() + }) + + it("(OCP-67087, aramesha, Network_Observability) Validate DNSTracking dashboards", function () { + // navigate to 'NetObserv / Main' Dashboard page + dashboard.visit() + dashboard.visitDashboard("netobserv-main") + + cy.checkDashboards(DNSPanels) + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/dns_tracking.cy.ts b/web/cypress/integration-tests/dns_tracking.cy.ts new file mode 100644 index 000000000..5d5b14d8e --- /dev/null +++ b/web/cypress/integration-tests/dns_tracking.cy.ts @@ -0,0 +1,101 @@ +import { Operator } from "@views/netobserv" +import { netflowPage, overviewSelectors, querySumSelectors, colSelectors } from "@views/netflow-page" + +describe('(OCP-67087 Network_Observability) DNSTracking test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("DNSTracking") + }) + + beforeEach('any DNSTracking test', function () { + netflowPage.visit() + }) + + it("(OCP-67087, aramesha, Network_Observability) Verify DNSTracking panels and Query Summary", function () { + // verify default DNSTracking panels are visible + cy.checkPanel(overviewSelectors.defaultDNSTrackingPanels) + cy.checkPanelsNum(5); + + // open panels modal and verify all relevant panels are listed + cy.openPanelsModal(); + cy.checkPopupItems(overviewSelectors.panelsModal, overviewSelectors.manageDNSTrackingPanelsList); + + // select all panels and verify they are rendered + cy.get(overviewSelectors.panelsModal).contains('Select all').click(); + cy.get(overviewSelectors.panelsModal).contains('Save').click(); + netflowPage.waitForLokiQuery() + cy.checkPanelsNum(10); + + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.allDNSTrackingPanels) + + // restore default panels and verify they are visible + cy.openPanelsModal() + cy.byTestID(overviewSelectors.resetDefault).click() + cy.byTestID(overviewSelectors.save).click() + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.defaultDNSTrackingPanels) + cy.checkPanelsNum(5); + + // verify Query Summary stats for DNSTracking + cy.get(querySumSelectors.dnsAvg).should('exist').then(DNSAvg => { + cy.checkQuerySummary(DNSAvg) + }) + }) + + it("(OCP-67087, aramesha) Validate DNSTracking columns and DNSName", function () { + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + netflowPage.stopAutoRefresh() + + // verify default DNS columns: DNS Latency and DNS Response Code + cy.byTestID('table-composable').should('exist').within(() => { + cy.get(colSelectors.dnsLatency).should('exist') + cy.get(colSelectors.dnsResponseCode).should('exist') + }) + + const dns_name = "loki.netobserv.svc.cluster" + // Filter with DNSLatency > 0 + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.get('#group-2-toggle').click().should('be.visible') + cy.byTestID('dns_name').click() + cy.get('#search').type(dns_name + '{enter}') + + // select DNS Id, DNS Error and DNS Name columns + cy.openColumnsModal() + cy.get(colSelectors.columnsModal).should('be.visible') + cy.get('#DNSId').check() + cy.get('#DNSErrNo').check() + cy.get('#DNSName').check() + cy.byTestID(colSelectors.save).click() + cy.reload() + + // verify they are visible in table view + cy.byTestID('table-composable').should('exist').within(() => { + cy.get(colSelectors.dnsId).should('exist') + cy.get(colSelectors.dnsError).should('exist') + cy.get(colSelectors.dnsName).should('exist') + }) + + // Verify DNSName column for all rows + cy.get('[data-test-td-column-id="DNSName"]').each((td) => { + expect(td).to.contain(`${dns_name}`) + }) + + netflowPage.clearAllFilters() + }) + + afterEach("test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/flowRTT.cy.ts b/web/cypress/integration-tests/flowRTT.cy.ts new file mode 100644 index 000000000..3a145e234 --- /dev/null +++ b/web/cypress/integration-tests/flowRTT.cy.ts @@ -0,0 +1,68 @@ +import { Operator } from "@views/netobserv" +import { netflowPage, overviewSelectors, querySumSelectors, colSelectors } from "@views/netflow-page" + +describe('(OCP-68246 Network_Observability) FlowRTT test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("FlowRTT") + }) + + beforeEach('any flowRTT test', function () { + netflowPage.visit() + }) + + it("(OCP-68246, aramesha, Network_Observability) Verify flowRTT panels", function () { + // verify default flowRTT panels are visible + cy.checkPanel(overviewSelectors.defaultFlowRTTPanels) + cy.checkPanelsNum(5); + + // verify all relevant panels are listed + cy.openPanelsModal(); + cy.checkPopupItems(overviewSelectors.panelsModal, overviewSelectors.manageFlowRTTPanelsList); + + // select all panels and verify they are rendered + cy.get(overviewSelectors.panelsModal).contains('Select all').click(); + cy.get(overviewSelectors.panelsModal).contains('Save').click(); + netflowPage.waitForLokiQuery() + + cy.checkPanelsNum(9); + cy.checkPanel(overviewSelectors.allFlowRTTPanels) + + // restore default panels and verify they are visible + cy.openPanelsModal(); + cy.byTestID(overviewSelectors.resetDefault).click().byTestID(overviewSelectors.save).click() + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.defaultFlowRTTPanels) + cy.checkPanelsNum(5); + + // verify Query Summary stats for flowRTT + cy.get(querySumSelectors.avgRTT).should('exist').then(avgRTT => { + cy.checkQuerySummary(avgRTT) + }) + }) + + it("(OCP-68246, aramesha, Network_Observability) Verify default flowRTT column", function () { + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + netflowPage.stopAutoRefresh() + + // verify default FowRTT column + cy.byTestID('table-composable').should('exist').within(() => { + cy.get(colSelectors.flowRTT).should('exist') + }) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/flowRTT_dashboards.cy.ts b/web/cypress/integration-tests/flowRTT_dashboards.cy.ts new file mode 100644 index 000000000..ec7164c02 --- /dev/null +++ b/web/cypress/integration-tests/flowRTT_dashboards.cy.ts @@ -0,0 +1,89 @@ +import { Operator } from "@views/netobserv" +import { displayDropdownSelectors, netflowPage, querySumSelectors } from "@views/netflow-page" +import { dashboard, graphSelector } from "@views/dashboards-page" + +const metricType = [ + "Bytes", + "Packets", + "RTT" +] + +const flowRTTPanels = [ + // below 2 panels should appear with the 'node_rtt_seconds' metric + "top-p50-srtt-per-node-(ms)-chart", + "top-p99-srtt-per-node-(ms)-chart", + // below 2 panels should appear with the 'namespace_rtt_seconds' metric + "top-p50-srtt-per-infra-namespace-(ms)-chart", + "top-p99-srtt-per-infra-namespace-(ms)-chart", + // below 2 panels should appear with the 'workload_rtt_seconds' metric + "top-p50-srtt-per-infra-workload-(ms)-chart", + "top-p99-srtt-per-infra-workload-(ms)-chart" +] + +describe('(OCP-68246 Network_Observability) FlowRTT test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("FlowRTT") + }) + + it("(OCP-68246, aramesha, Network_Observability) Validate flowRTT edge labels and Query Summary stats", function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Topology').click() + cy.get('#drawer').should('not.be.empty') + + cy.byTestID("show-view-options-button").should('exist').click().then(views => { + cy.get(displayDropdownSelectors.overview).should('exist').click() + // set one display to test with + cy.byTestID('layout-dropdown').click() + cy.byTestID('Grid').click() + }) + + cy.byTestID('metricType').should('exist').click() + cy.get('#metricType > ul > li').should('have.length', 3).each((item, index) => { + cy.wrap(item).should('contain.text', metricType[index]) + }) + + cy.get('#TimeFlowRttNs').click() + cy.byTestID("scope-dropdown").click().byTestID("host").click() + cy.get(displayDropdownSelectors.overview).should('exist').click() + + // Filter with Protocol=TCP + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.get('#group-2-toggle').click().should('be.visible') + cy.byTestID('protocol').click() + cy.get('#autocomplete-search').type('TCP' + '{enter}') + + cy.get('[data-test-id=edge-handler]').each((g) => { + expect(g.text()).to.match(/\d+\s*ms/); + }); + netflowPage.clearAllFilters() + + // verify Query summary panel + cy.get(querySumSelectors.avgRTT).should('exist').then(avgRTT => { + cy.checkQuerySummary(avgRTT) + }) + netflowPage.resetClearFilters() + }) + + it("(OCP-68246, aramesha, Network_Observability) Validate flowRTT dashboards", function () { + // navigate to 'NetObserv / Main' Dashboard page + dashboard.visit() + dashboard.visitDashboard("netobserv-main") + + // verify 'TCP latency,p99' panel + cy.checkDashboards(['tcp-latency,-p99-chart']) + + cy.checkDashboards(flowRTTPanels) + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) + diff --git a/web/cypress/integration-tests/flow_dashboards_bytes.cy.ts b/web/cypress/integration-tests/flow_dashboards_bytes.cy.ts new file mode 100644 index 000000000..c57e05e14 --- /dev/null +++ b/web/cypress/integration-tests/flow_dashboards_bytes.cy.ts @@ -0,0 +1,55 @@ +import { Operator } from "@views/netobserv" +import { dashboard } from "@views/dashboards-page" + +const overviewPanels = [ + "total-egress-traffic-chart", + "total-ingress-traffic-chart", +] + +const trafficRatesPanelsTop = [ + "top-egress-traffic-per-node-(bps)-chart", + "top-ingress-traffic-per-node-(bps)-chart", + "top-egress-traffic-per-infra-namespace-(bps)-chart", +] + +const trafficRatesPanelsBottom = [ + "top-ingress-traffic-per-infra-namespace-(bps)-chart", + "top-egress-traffic-per-infra-workload-(bps)-chart", + "top-ingress-traffic-per-infra-workload-(bps)-chart", +] + +describe('Network_Observability flow dashboards tests', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("BytesMetrics") + }) + + it("(OCP-63790, memodi, Network_Observability), should have flow dashboards for bytes metrics", function () { + // navigate to 'NetObserv / Main' Dashboard page + dashboard.visit() + dashboard.visitDashboard("netobserv-main") + + // verify that overview panels panels exist and are populated + cy.checkDashboards(overviewPanels) + + cy.get('#content-scrollable').scrollTo('top') + cy.wait(1000) + + // verify that Traffic Rates panels panels exist and are populated + cy.checkDashboards(trafficRatesPanelsTop) + + cy.get('#content-scrollable').scrollTo('bottom') + cy.wait(1000) + cy.checkDashboards(trafficRatesPanelsBottom) + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/flow_dashboards_packets.cy.ts b/web/cypress/integration-tests/flow_dashboards_packets.cy.ts new file mode 100644 index 000000000..9de0a6771 --- /dev/null +++ b/web/cypress/integration-tests/flow_dashboards_packets.cy.ts @@ -0,0 +1,55 @@ +import { Operator } from "@views/netobserv" +import { dashboard } from "@views/dashboards-page" + +const overviewPanels = [ + "total-egress-traffic-chart", + "total-ingress-traffic-chart", +] + +const trafficRatesPanelsTop = [ + "top-egress-traffic-per-node-(pps)-chart", + "top-ingress-traffic-per-node-(pps)-chart", + "top-egress-traffic-per-infra-namespace-(pps)-chart", +] + +const trafficRatesPanelsBottom = [ + "top-ingress-traffic-per-infra-namespace-(pps)-chart", + "top-egress-traffic-per-infra-workload-(pps)-chart", + "top-ingress-traffic-per-infra-workload-(pps)-chart" +] + +describe('Network_Observability flow dashboards tests', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("PacketsMetrics") + }) + + it("(OCP-63790, memodi, Network_Observability), should have flow dashboards for packets metrics", function () { + // navigate to 'NetObserv / Main' Dashboard page + dashboard.visit() + dashboard.visitDashboard("netobserv-main") + + // verify that overview panels panels exist and are populated + cy.checkDashboards(overviewPanels) + + cy.get('#content-scrollable').scrollTo('top') + cy.wait(1000) + + // verify that Traffic Rates panels panels exist and are populated + cy.checkDashboards(trafficRatesPanelsTop) + + cy.get('#content-scrollable').scrollTo('bottom') + cy.wait(1000) + cy.checkDashboards(trafficRatesPanelsBottom) + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/health_dashboards.cy.ts b/web/cypress/integration-tests/health_dashboards.cy.ts new file mode 100644 index 000000000..a74976288 --- /dev/null +++ b/web/cypress/integration-tests/health_dashboards.cy.ts @@ -0,0 +1,90 @@ +import { Operator } from "@views/netobserv" +import { dashboard, dashboardSelectors } from "@views/dashboards-page" + +const healthPanels = [ + "global-sampling-chart", + "errors-last-minute-chart", + "dropped-flows-per-second-chart" +] + +const flowPanels = [ + "flows-per-second-chart", + "flows-overhead-(%-generated-by-netobserv-own-traffic)-chart", + "by-namespace-chart", + "by-node-chart", + "metrics-cardinality-chart" +] + +const eBPFPanels = [ + "eviction-rate-chart", + "evicted-flows-rate-chart", + "dropped-flows-rate-chart", + "ringbuffer-/-hashmap-ratio-chart", + "buffer-size-chart", + "filtered-flows-rate-chart" +] + +const operatorPanels = [ + "reconcile-events-per-minute-chart", + "average-and-p99-reconcile-time-chart" +] + +const resourcePanels = [ + "overall-cpu-chart", + "overall-memory-chart", + "ebpf-agent-cpu---top-10-pods-chart", + "ebpf-agent-memory---top-10-pods-chart", + "flowlogs-pipeline-cpu---top-10-pods-chart", + "flowlogs-pipeline-memory---top-10-pods-chart" +] + +describe('Network_Observability health dashboards tests', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + Operator.createFlowcollector("BytesMetrics") + }) + + it('(OCP-61893, memodi, Network_Observability), should have health dashboards', function () { + // navigate to 'NetObserv / Health' Dashboard page + // all health panels are visible with default metrics + dashboard.visit() + dashboard.visitDashboard("grafana-dashboard-netobserv-health") + + // verify that 'Flows per second', 'Sampling', 'Errors last minute' and 'Dropped flows per second' panels exist and are populated + cy.checkDashboards(healthPanels) + + // verify that 'Flows per second', 'Flows overhead (% generated by NetObserv own traffic)', 'Errors per minute', 'By namespace' and 'By node' panels exist and are populated + cy.checkDashboards(flowPanels) + + cy.get(dashboardSelectors.flowStatsToggle).should('exist').click() + cy.get(dashboardSelectors.ebpfStatsToggle).should('exist').click() + cy.get('#content-scrollable').scrollTo('bottom') + cy.wait(1000) + + // verify that 'Eviction rate', 'Evicted flows rate', 'Dropped flows rate', 'Ringbuffer / HashMap ratio', 'Buffer size' and 'Errors per minute' panels exist and are populated + cy.checkDashboards(eBPFPanels) + + cy.get(dashboardSelectors.ebpfStatsToggle).should('exist').click() + cy.get(dashboardSelectors.operatorStatsToggle).should('exist').click() + + // verify that 'Reconcile events per minute' and 'Average and P99 reconcile time' panels exist and are populated + cy.checkDashboards(operatorPanels) + + cy.get(dashboardSelectors.operatorStatsToggle).should('exist').click() + cy.get(dashboardSelectors.resourceStatsToggle).should('exist').click() + cy.get('#content-scrollable').scrollTo('bottom') + cy.wait(1000) + + // verify that 'Overall CPU', 'Overall memory', 'eBPF agent CPU - top 10 pods', 'eBPF agent memory - top 10 pods', 'Flowlogs-pipeline CPU - top 10 pods' and 'Flowlogs-pipeline memory - top 10 pods' panels exist and are populated + cy.checkDashboards(resourcePanels) + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/netflow_cluster_admin_group.cy.ts b/web/cypress/integration-tests/netflow_cluster_admin_group.cy.ts new file mode 100644 index 000000000..b1a1b4f62 --- /dev/null +++ b/web/cypress/integration-tests/netflow_cluster_admin_group.cy.ts @@ -0,0 +1,46 @@ +import { Operator } from "@views/netobserv" +import { netflowPage } from "@views/netflow-page" + +describe('(OCP-67617 Network_Observability) User in group with cluster-admin role', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + // create new group, add user to that group and give that group cluster-admin role + cy.adminCLI(`oc adm groups new netobservadmins`) + cy.adminCLI(`oc adm groups add-users netobservadmins ${Cypress.env('LOGIN_USERNAME')}`) + cy.adminCLI(`oc adm policy add-cluster-role-to-group cluster-admin netobservadmins`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + Operator.createFlowcollector() + }) + + it("(OCP-67617, aramesha, Network_Observability) should verify user in group with cluster-admin role is able to access flows", function () { + // validate netflow traffic page + netflowPage.visit() + cy.checkNetflowTraffic() + }) + + it("(OCP-67617, aramesha, Network_Observability) should verify user NOT in group with cluster-admin role is NOT able to access flows", function () { + // remove user from cluster-admin group + cy.adminCLI(`oc adm policy remove-cluster-role-from-group cluster-admin netobservadmins`) + cy.visit('/netflow-traffic') + // validate user is not able to access netflow traffic page + // overview shows no panels + cy.get('li.overviewTabButton').should('exist').click() + cy.get("#overview-flex").should('not.exist') + + // table view shows no grid + cy.get('li.tableTabButton').should('exist').click() + cy.byTestID("table-composable").should('not.exist') + + // topology view shows no view + cy.get('li.topologyTabButton').should('exist').click() + cy.byTestID("error-state").should('exist') + }) + + after("all tests", function () { + cy.adminCLI(`oc adm groups remove-users netobservadmins ${Cypress.env('LOGIN_USERNAME')}`) + cy.adminCLI(`oc delete groups netobservadmins`) + cy.uiLogout() + }) +}) diff --git a/web/cypress/integration-tests/netflow_conversations.cy.ts b/web/cypress/integration-tests/netflow_conversations.cy.ts new file mode 100644 index 000000000..bd4b3d4e3 --- /dev/null +++ b/web/cypress/integration-tests/netflow_conversations.cy.ts @@ -0,0 +1,54 @@ +import { Operator } from "@views/netobserv" +import { netflowPage, colSelectors, querySumSelectors } from "@views/netflow-page" + +describe('(OCP-71787 Network_Observability) Conversation tracking test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("Conversations") + }) + + beforeEach('any conversation tracking test', function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + }) + + it("(OCP-71787, aramesha, Network_Observability) should validate default conversation tracking columns", function () { + cy.byTestID('table-composable').should('exist').within(() => { + cy.get(colSelectors.recordType).should('exist') + cy.get(colSelectors.conversationID).should('exist') + }) + }) + + it("(OCP-71787, aramesha, Network_Observability) should verify Query Summary panel", function () { + cy.changeQueryOption('Conversation') + + // validate Query Summary panel + let warningExists = false + cy.get(querySumSelectors.queryStatsPanel).should('exist').then(qrySum => { + if (Cypress.$(querySumSelectors.queryStatsPanel + ' svg.query-summary-warning').length > 0) { + warningExists = true + } + }) + + cy.get(querySumSelectors.flowsCount).should('exist').then(ConversationsCnt => { + const nflows = parseFloat(ConversationsCnt.text()) + cy.wait(10) + expect(nflows).to.be.gte(0) + }) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/netflow_developer_view.cy.ts b/web/cypress/integration-tests/netflow_developer_view.cy.ts new file mode 100644 index 000000000..321c95463 --- /dev/null +++ b/web/cypress/integration-tests/netflow_developer_view.cy.ts @@ -0,0 +1,82 @@ +import { Operator, project } from "@views/netobserv" +import { netflowPage } from "@views/netflow-page" + +const loginUsers = Cypress.env('LOGIN_USERS').split(','); +const hasEnoughUsers = loginUsers.length >= 3; + +const [user1, user1Passwd] = hasEnoughUsers ? loginUsers[2].split(':') : ['', '']; +const [user2, user2Passwd] = hasEnoughUsers ? loginUsers[3].split(':') : ['', '']; +const [user3, user3Passwd] = hasEnoughUsers ? loginUsers[4].split(':') : ['', '']; + +describe.skip('NetObserv developer view', { tags: ['Network_Observability'] }, function () { + if (!hasEnoughUsers) { + before('check user requirements', function () { + this.skip(); + }); + } + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${user1}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), user1, user1Passwd) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + it("(OCP-75874, aramesha, Network_Observability) should verify developer view - Loki DataSource", function () { + netflowPage.visitDeveloper(project) + + // verify Netflow traffic tab + cy.checkNetflowTraffic() + }) + + it("(OCP-75874, aramesha, Network_Observability) should verify developer view - Prom DataSource", function () { + cy.switchPerspective('Administrator'); + // Deploy flowcollector with Loki disabled + Operator.createFlowcollector("LokiDisabled") + + // Provide user2 and user3 with netobserv-metrics-reader role to view prom queries + cy.adminCLI(`oc adm policy add-cluster-role-to-user netobserv-metrics-reader ${user2}`) + cy.adminCLI(`oc adm policy add-cluster-role-to-user netobserv-metrics-reader ${user3}`) + + // Deploy client server manifests logged in as user2 + cy.cliLogin(`${user2}`, `${user2Passwd}`) + cy.exec(`oc create -f cypress/fixtures/testuser-server-client.yaml`) + + // Logout from console as user1 and login as user2 + cy.uiLogout().then(() => { + cy.visit(Cypress.config('baseUrl') as string) + }) + cy.uiLogin(Cypress.env('LOGIN_IDP'), user2, user2Passwd) + + // Verify Netflow traffic tab Developer view as user2 + netflowPage.visitDeveloper("test-client") + cy.checkNetflowTraffic("Disabled") + + // Add view role for test-server project to user3 + cy.adminCLI(`oc adm policy add-role-to-user view ${user3} -n test-server`) + + // Logout from console as user2 and login as user3 + cy.uiLogout().then(() => { + cy.visit(Cypress.config('baseUrl') as string) + }) + cy.uiLogin(Cypress.env('LOGIN_IDP'), user3, user3Passwd) + + // verify Netflow traffic tab as user3 + netflowPage.visitDeveloper("test-server") + cy.checkNetflowTraffic("Disabled") + // Login as system:admin from CLI + cy.adminCLI(`oc login -u system:admin`) + cy.adminCLI(`oc delete project test-client`) + cy.adminCLI(`oc delete project test-server`) + cy.adminCLI(`oc adm policy remove-cluster-role-from-user netobserv-metrics-reader ${user2}`) + cy.adminCLI(`oc adm policy remove-cluster-role-from-user netobserv-metrics-reader ${user3}`) + }) + + after("after all tests", function () { + cy.adminCLI(`oc login -u system:admin`) + cy.adminCLI(`oc delete flowcollector cluster`) + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${user1}`) + }) +}) diff --git a/web/cypress/integration-tests/netflow_export.cy.ts b/web/cypress/integration-tests/netflow_export.cy.ts new file mode 100644 index 000000000..6fe22f114 --- /dev/null +++ b/web/cypress/integration-tests/netflow_export.cy.ts @@ -0,0 +1,76 @@ +import { Operator, project } from "@views/netobserv" +import { netflowPage, exportSelectors } from "@views/netflow-page" + +describe('(OCP-72610 Network_Observability) Export automation', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach('any export test', function () { + netflowPage.visit() + }) + + it("(OCP-72610, aramesha, Network_Observability) should validate exporting panels", function () { + // Export all overview panels + cy.get('li.overviewTabButton').should('exist').click() + netflowPage.stopAutoRefresh() + cy.byTestID('show-view-options-button').should('exist').click() + cy.get('#export-button').should('exist').click() + cy.readFile('cypress/downloads/overview_page.png') + + // Export only Top 5 average bytes rates panel + cy.get(exportSelectors.avgBytesRatesDropdown).should('exist').click() + cy.contains("Export panel").should('exist').click() + cy.readFile('cypress/downloads/overview_panel_top_avg_byte_rates.png') + cy.exec('rm cypress/downloads/overview_page.png') + cy.exec('rm cypress/downloads/overview_panel_top_avg_byte_rates.png') + }) + + it("(OCP-72610, aramesha, Network_Observability) should validate exporting table view", function () { + cy.get('#tabs-container').contains('Traffic flows').click() + netflowPage.stopAutoRefresh() + netflowPage.selectSourceNS(project) + cy.byTestID("table-composable").should('exist') + cy.byTestID('show-view-options-button').should('exist').click() + cy.get(exportSelectors.tableExport).should('exist').click() + cy.get('#export-modal').find(exportSelectors.exportButton).should('exist').then((exportbtn) => { + cy.wrap(exportbtn).click() + // wait for download to complete + cy.wait(3000) + // get the CSV file name + cy.exec("ls cypress/downloads").then((response) => { + // rename CSV file to export_table.csv + cy.wrap(response.stdout).should('not.be.empty') + cy.exec(`mv cypress/downloads/${response.stdout} cypress/downloads/export_table.csv`) + cy.readFile('cypress/downloads/export_table.csv') + }) + cy.exec('rm cypress/downloads/export_table.csv') + }) + }) + + it("(OCP-72610, aramesha, Network_Observability) should validate exporting topology view", function () { + cy.get('#tabs-container').contains('Topology').click() + netflowPage.selectSourceNS(project) + netflowPage.stopAutoRefresh() + cy.get('#drawer').should('not.be.empty') + cy.showAdvancedOptions() + cy.get('#export-button').should('exist').click() + cy.readFile('cypress/downloads/topology.png').then(() => { + cy.exec('rm cypress/downloads/topology.png') + }) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/netflow_external_subnet.cy.ts b/web/cypress/integration-tests/netflow_external_subnet.cy.ts new file mode 100644 index 000000000..759a63155 --- /dev/null +++ b/web/cypress/integration-tests/netflow_external_subnet.cy.ts @@ -0,0 +1,78 @@ +import { Operator } from "@views/netobserv" +import { netflowPage, colSelectors } from "@views/netflow-page" + +describe('(OCP-67615, OCP-72874 Network_Observability) Return external traffic and custom subnet labels test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("SubnetLabels") + + // deploy test pod + cy.adminCLI('oc create -f cypress/fixtures/test-pod.yaml') + }) + + it("(OCP-67615, aramesha, Network_Observability) External traffic and custom subnet label", function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + + // enable SrcSubnetLabel and DstSubnetLabel columns + cy.openColumnsModal() + cy.get(colSelectors.columnsModal).should('be.visible') + cy.get('#SrcSubnetLabel').check() + cy.get('#DstSubnetLabel').check() + cy.byTestID(colSelectors.save).click() + + // filter on SrcSubnetLabel Pods and DstIP 52.200.142.250 + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.byTestID('src_subnet_label').click() + cy.get('#autocomplete-search').type('Pods' + '{enter}') + + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.byTestID('group-1-toggle').click().should('be.visible') + cy.byTestID('dst_address').click() + cy.get('#search').type('52.200.142.250' + '{enter}') + + netflowPage.waitForLokiQuery() + + // validate rows count=1, DstNamespace and DstName is n/a for external traffic + cy.byTestID('table-composable').each((td) => { + expect(td).attr("data-test-rows-count").to.contain(1) + }) + + // validate SrcSubnetLabel=Pods and DstSustomLabel=testcustomlabel for custom subnet labels + cy.get('[data-test-td-column-id=SrcSubnetLabel]').each((td) => { + expect(td).attr("data-test-td-value").to.contain('Pods') + }) + cy.get('[data-test-td-column-id=DstSubnetLabel]').each((td) => { + expect(td).to.contain('testcustomlabel') + }) + + // click on Back-on-Forth button + cy.byTestID("back-and-forth-button").should('exist').click() + + // validate rows count=2 + cy.byTestID('table-composable').each((td) => { + expect(td).attr("data-test-rows-count").to.contain(2) + }) + + // click on filters so that pop-up goes away + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.byTestID('group-0-toggle').click().should('be.visible') + cy.byTestID('src_namespace').click() + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + cy.adminCLI('oc delete -f cypress/fixtures/test-pod.yaml --ignore-not-found') + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/netflow_table.cy.ts b/web/cypress/integration-tests/netflow_table.cy.ts new file mode 100644 index 000000000..5c3fe64d6 --- /dev/null +++ b/web/cypress/integration-tests/netflow_table.cy.ts @@ -0,0 +1,311 @@ +import { colSelectors, displayDropdownSelectors, genSelectors, histogramSelectors, netflowPage } from "@views/netflow-page" +import { Operator, project } from "@views/netobserv" + +describe('(OCP-50532, OCP-50531, OCP-50530, OCP-59408 Network_Observability) Netflow Table view tests', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.login(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach("test", function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + }) + + it("(OCP-50532, memodi, Network_Observability) should validate netflow table features", function () { + cy.byTestID(genSelectors.timeDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.get('[data-test="1h"]').should('exist').click() + }) + }) + + cy.byTestID(genSelectors.refreshDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.get('[data-test="15s"]').should('exist').click() + }) + }) + + cy.byTestID(genSelectors.refreshBtn).should('exist').click() + + // change row sizes + cy.showAdvancedOptions() + cy.get(displayDropdownSelectors.table).should('exist').click() + cy.byTestID('size-s').click() + cy.byTestID('size-l').click() + cy.byTestID('size-m').click() + + // expand view + cy.byTestID('fullscreen-button').click() + cy.get('#page-sidebar').then(sidenav => { + cy.byLegacyTestID('perspective-switcher-menu').should('not.be.visible') + }) + + cy.byTestID("show-view-options-button").should('exist').click() + }) + + it("(OCP-50532, memodi, Network_Observability) should validate columns", function () { + netflowPage.stopAutoRefresh() + cy.openColumnsModal() + cy.get(colSelectors.columnsModal).should('be.visible') + cy.get('#K8S_OwnerObject').check() + cy.get('#AddrPort').check() + + cy.get('#Mac').should('exist').check() + cy.get('#FlowDirection').should('exist').check() + // ICMP related columns + cy.get('#IcmpType').should('exist').check() + cy.get('#IcmpCode').should('exist').check() + + // source columns + cy.get('#SrcK8S_HostIP').check() + cy.get('#SrcK8S_Namespace[type="checkbox"]').uncheck() + + // dest columns + cy.get('#DstK8S_HostIP').check() + + cy.byTestID(colSelectors.save).click() + cy.reload() + + cy.byTestID('table-composable').should('exist').within(() => { + cy.get(colSelectors.srcNS).should('not.exist') + cy.get(colSelectors.dstNodeIP).should('exist') + cy.get(colSelectors.mac).should('exist') + cy.get(colSelectors.k8sOwner).should('exist') + cy.get(colSelectors.ipPort).should('exist') + cy.get(colSelectors.protocol).should('exist') + cy.get(colSelectors.icmpType).should('exist') + cy.get(colSelectors.icmpCode).should('exist') + + cy.get(colSelectors.srcNodeIP).should('exist') + + cy.get(colSelectors.direction).should('exist') + }) + + // restore defaults + cy.openColumnsModal() + cy.byTestID(colSelectors.resetDefault).click() + cy.byTestID(colSelectors.save).click() + + cy.byTestID('table-composable').within(() => { + cy.get(colSelectors.srcNS).should('exist') + cy.get(colSelectors.mac).should('not.exist') + }) + }) + + it("(OCP-50532, memodi, Network_Observability) should validate filters", function () { + netflowPage.stopAutoRefresh() + + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + + // verify Source namespace filter + cy.byTestID('group-0-toggle').should('exist').byTestID('src_namespace').click() + cy.byTestID('autocomplete-search').type(project + '{enter}') + cy.get('#filters div.custom-chip > p').should('contain.text', `${project}`) + + // Verify SrcNS column for all rows + cy.get('[data-test-td-column-id=SrcK8S_Namespace]').each((td) => { + expect(td).to.contain(`${project}`) + }) + + // verify swap button + cy.byTestID("swap-filters-button").should('exist').click() + cy.get('#filters div.custom-chip-group > p').should('contain.text', 'Destination Namespace') + + // Verify DstNS column for all rows + cy.get('[data-test-td-column-id=DstK8S_Namespace]').each((td) => { + expect(td).to.contain(`${project}`) + }) + + netflowPage.clearAllFilters() + cy.get('div.custom-chip').should('not.exist') + + // verify NOT filter switch button + cy.get('#filter-compare-switch-button').should('exist').click() + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.byTestID('group-0-toggle').should('exist').byTestID('src_namespace').click() + cy.byTestID('autocomplete-search').type(project + '{enter}') + cy.get('#filters div.custom-chip-group > p').should('contain.text', 'Not Source Namespace') + + netflowPage.clearAllFilters() + + // verify NOT filter toggle + cy.get('#filter-compare-toggle-button').should('exist').click().then(moreOpts => { + cy.contains("Not equals").should('exist').click() + }) + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.byTestID('group-0-toggle').should('exist').byTestID('src_namespace').click() + cy.byTestID('autocomplete-search').type(project + '{enter}') + cy.get('#filters div.custom-chip-group > p').should('contain.text', 'Not Source Namespace') + + // verify One-way and back-forth button + cy.byTestID("back-and-forth-button").should('exist').click() + + cy.byTestID("back-and-forth-button").should('exist').click() + + cy.get('#filter-compare-toggle-button').should('exist').click().then(moreOpts => { + cy.contains("Equals").should('exist').click() + }) + + netflowPage.clearAllFilters() + + // verify src port filter and port Naming + cy.byTestID("column-filter-toggle").click() + cy.byTestID('src_port').click() + cy.byTestID('autocomplete-search').type('3100{enter}') + cy.get('#filters div.custom-chip > p').should('have.text', 'loki') + + // check enabled or disabling filter + cy.get(':nth-child(1) > .pf-c-chip-group__label').click() + cy.get('#filters > .pf-c-toolbar__item > :nth-child(1)').should('have.class', 'disabled-group') + + // sort by port + cy.get('[data-test=th-SrcPort] > .pf-c-table__button').click() + // cy.reload() + // cy.get('#tabs-container li:nth-child(2)').click() + + // Verify SrcPort doesnt not have text loki for all rows + cy.get('[data-test-td-column-id=SrcPort]').each((td) => { + cy.get('[data-test-td-column-id=SrcPort] > div > div').should('not.contain.text', 'loki (3100)') + }) + + cy.get(':nth-child(1) > .pf-c-chip-group__label').click() + cy.get('#filters > .pf-c-toolbar__item > :nth-child(1)').should('not.have.class', '.disabled-value') + + // Verify SrcPort has text loki for all rows + cy.get('[data-test-td-column-id=SrcPort]').each((td) => { + cy.get('[data-test-td-column-id=SrcPort] > div > div').should('contain.text', 'loki (3100)') + }) + + netflowPage.clearAllFilters() + cy.get('div.custom-chip').should('not.exist') + }) + + it("(OCP-50531, memodi, Network_Observability) should validate localstorage for plugin", function () { + netflowPage.stopAutoRefresh() + + cy.byTestID(genSelectors.refreshDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.get('[data-test="15s"]').should('exist').click() + }) + }) + + // select compact column size + cy.showAdvancedOptions() + cy.get(displayDropdownSelectors.table).should('exist').click() + cy.byTestID('size-s').click() + cy.get(displayDropdownSelectors.table).should('exist').click() + cy.openColumnsModal() + cy.get(colSelectors.columnsModal).should('be.visible') + cy.get('#StartTime').check() + cy.byTestID(colSelectors.save).click() + cy.showAdvancedOptions() + + cy.visit('/monitoring/alerts') + cy.visit('/netflow-traffic') + + cy.get('#pageHeader').should('exist').then(() => { + const settings = JSON.parse(localStorage.getItem('netobserv-plugin-settings') as string) + expect(settings['netflow-traffic-refresh']).to.be.equal(15000) + expect(settings['netflow-traffic-size-size']).to.be.equal('s') + expect(settings['netflow-traffic-columns']).to.include('StartTime') + }) + }) + + it("(OCP-59408, memodi, Network_Observability) should verify histogram", function () { + cy.get('#time-range-dropdown-dropdown').should('exist').click().byTestID("5m").should('exist').click() + cy.byTestID("show-histogram-button").should('exist').click() + cy.get("#refresh-dropdown button").should('be.disabled') + cy.get('#popover-netobserv-tour-popover-body').should('exist') + // close tour + cy.get("#popover-netobserv-tour-popover-header > div > div:nth-child(2) > button").should("exist").click() + // get current refreshed time + let lastRefresh = Cypress.$("#lastRefresh").text() + + cy.get("#chart-histogram").should('exist') + // move histogram slider + cy.get("#chart-histogram rect").should('exist').then(hist => { + const histWidth = cy.$$('#chart-histogram').prop("clientWidth") + const clientX = histWidth / 2 + cy.wrap(hist).trigger('mousedown').trigger("mousemove", { clientX: clientX, clientY: 45 }).trigger("mouseup", { waitForAnimations: true }) + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + }) + // zoom out + cy.get(histogramSelectors.zoomout).should('exist').then(zoomout => { + cy.wrap(zoomout).click() + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + }) + // zoom in + cy.get(histogramSelectors.zoomin).should('exist').then(zoomin => { + cy.wrap(zoomin).click() + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + cy.wrap(zoomin).trigger('mouseleave') + }) + + // time shift single right arrow + cy.get(histogramSelectors.singleRightShift).should('exist').then(sRightShift => { + cy.wrap(sRightShift).click() + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + }) + // time shift double right arrow + cy.get(histogramSelectors.doubleRightShift).should('exist').then(dblRightShift => { + cy.wrap(dblRightShift).click() + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + }) + + // time shift single left right arrow + cy.get(histogramSelectors.singleLeftShift).should('exist').then(sLeftShift => { + cy.wrap(sLeftShift).click() + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + }) + // time shift double left arrow + cy.get(histogramSelectors.doubleLeftShift).should('exist').then(dblLeftShift => { + cy.wrap(dblLeftShift).click() + cy.wait(5000) + let newRefresh = Cypress.$("#lastRefresh").text() + cy.wrap(lastRefresh).should("not.eq", newRefresh) + lastRefresh = newRefresh + }) + // hide histogram + cy.byTestID("show-histogram-button").should('exist').click().then(() => { + cy.byTestID("time-range-dropdown-dropdown").should('exist').click() + cy.get("#5m").should("exist").click() + cy.byTestID("refresh-dropdown-dropdown").should('exist').should('not.be.disabled') + }) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogout() + }) +}) diff --git a/web/cypress/integration-tests/netflow_zone_multiCluster.cy.ts b/web/cypress/integration-tests/netflow_zone_multiCluster.cy.ts new file mode 100644 index 000000000..654546088 --- /dev/null +++ b/web/cypress/integration-tests/netflow_zone_multiCluster.cy.ts @@ -0,0 +1,91 @@ +import { colSelectors, netflowPage, setupTopologyViewWithNamespaceFilter, topologyPage, topologySelectors } from "@views/netflow-page" +import { Operator } from "@views/netobserv" + +function getTopologyScopeURL(scope: string): string { + return `**/flow/metrics**aggregateBy=${scope}*` +} + +describe('Netflow Zone and multiCluster test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("ZonesAndMultiCluster") + }) + + beforeEach('any netflow zone and multiCluster test', function () { + netflowPage.visit() + }) + + it("(OCP-71525, aramesha, Network_Observability) should validate zone/multiCluster columns", function () { + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + + cy.openColumnsModal() + cy.get(colSelectors.columnsModal).should('be.visible') + // Check zone columns + cy.get('#SrcZone').check() + cy.get('#DstZone').check() + + // Check multiCluster column + cy.get('#ClusterName').check() + cy.byTestID(colSelectors.save).click() + + cy.byTestID('table-composable').should('exist').within(() => { + // Verify zone column + cy.get(colSelectors.srcZone).should('exist') + cy.get(colSelectors.dstZone).should('exist') + + // Verify multiCluster column + cy.get(colSelectors.clusterName).should('exist') + }) + }) + + it("(OCP-71524, aramesha, Network_Observability) should verify zone/cluster scope topology", function () { + setupTopologyViewWithNamespaceFilter() + + // Verify Zone scope + var scope = "zone" + cy.intercept('GET', getTopologyScopeURL(scope), { + fixture: 'flowmetrics/zone.json' + }).as('matchedUrl') + + topologyPage.selectScopeGroup(scope, undefined) + cy.wait('@matchedUrl').then(({ response }) => { + expect(response?.statusCode).to.eq(200) + }) + topologyPage.isViewRendered() + + // verify number of edges and nodes. + cy.get('#drawer ' + topologySelectors.edge).should('have.length', 6) + cy.get('#drawer ' + topologySelectors.node).should('have.length', 4) + + // Verify Cluster scope + scope = "cluster" + cy.intercept('GET', getTopologyScopeURL(scope), { + fixture: 'flowmetrics/cluster.json' + }).as('matchedUrl') + + topologyPage.selectScopeGroup(scope, undefined) + cy.wait('@matchedUrl').then(({ response }) => { + expect(response?.statusCode).to.eq(200) + }) + topologyPage.isViewRendered() + + // verify number of edges and nodes. + cy.get('#drawer ' + topologySelectors.edge).should('have.length', 0) + cy.get('#drawer ' + topologySelectors.node).should('have.length', 1) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/overview_page.cy.ts b/web/cypress/integration-tests/overview_page.cy.ts new file mode 100644 index 000000000..ce33adfc2 --- /dev/null +++ b/web/cypress/integration-tests/overview_page.cy.ts @@ -0,0 +1,151 @@ +import { displayDropdownSelectors, genSelectors, netflowPage, overviewSelectors, querySumSelectors } from "@views/netflow-page" +import { Operator } from "@views/netobserv" + +describe('(OCP-54839 Network_Observability) Netflow Overview page tests', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.login(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach('overview page test', function () { + netflowPage.visit() + netflowPage.waitForLokiQuery() + cy.get('.overviewTabButton').should('exist') + + cy.checkPanel(overviewSelectors.defaultPanels) + cy.checkPanelsNum(); + }) + + it("(OCP-54839, aramesha, Network_Observability) should validate overview page features", function () { + cy.byTestID(genSelectors.timeDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.byTestID('1h').should('exist').click() + }) + }) + + cy.byTestID(genSelectors.refreshDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.byTestID('15s').should('exist').click() + }) + }) + + cy.byTestID(genSelectors.refreshBtn).should('exist').click() + + cy.showAdvancedOptions().then(views => { + cy.get(displayDropdownSelectors.overview).should('exist').click() + + // validate scope dropdown + cy.byTestID(overviewSelectors.scopeDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.byTestID('host').should('exist') + cy.byTestID('namespace').should('exist') + cy.byTestID('owner').should('exist') + cy.byTestID('resource').should('exist').click() + }) + }) + + // verify truncate labels dropdown + cy.byTestID(overviewSelectors.truncateDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.byTestID('0').should('exist') + cy.byTestID('10').should('exist') + cy.byTestID('20').should('exist') + cy.byTestID('30').should('exist') + cy.byTestID('40').should('exist') + cy.byTestID('25').should('exist').click() + }) + }) + }) + }) + + it("(OCP-54839, aramesha, Network_Observability) should validate query summary panel", function () { + cy.get(querySumSelectors.bytesCount).should('exist').then(bytesCnt => { + cy.checkQuerySummary(bytesCnt) + }) + + cy.get(querySumSelectors.bpsCount).should('exist').then(bpsCnt => { + cy.checkQuerySummary(bpsCnt) + }) + cy.get('#query-summary-toggle').should('exist').click() + cy.get('#summaryPanel').should('be.visible') + cy.contains('Results').should('exist') + cy.contains('Cardinality').should('exist') + cy.contains('Configuration').should('exist') + cy.contains('Sampling').should('exist') + }) + + it("(OCP-54839, aramesha, Network_Observability) should validate panels", function () { + cy.showAdvancedOptions().then(views => { + cy.get(displayDropdownSelectors.overview).should('exist').click() + + // verify single focus graph toggle + cy.get('#focus-switch').check() + // verify 'Top 5 average bytes rates' panel is in focus + cy.get('#overview-absolute-graph').contains('Top 5 average bytes rates'); + cy.get('[data-test-metrics]').its('length').should('gt', 0); + + // verify other panels are scrollable on the right + for (let i = 0; i < overviewSelectors.defaultPanels.length; i++) { + cy.get('#overview-graph-list').contains(overviewSelectors.defaultPanels[i]) + } + + // uncheck single focus toggle and verify panels + cy.get('#focus-switch').check() + cy.checkPanel(overviewSelectors.defaultPanels) + cy.checkPanelsNum(); + }) + + // open panels modal + cy.openPanelsModal(); + + // verify all panels are listed + cy.checkPopupItems(overviewSelectors.panelsModal, overviewSelectors.managePanelsList); + + // select all panels + cy.get(overviewSelectors.panelsModal).contains('Select all').click(); + cy.get(overviewSelectors.panelsModal).contains('Save').click(); + netflowPage.waitForLokiQuery() + cy.checkPanelsNum(4); + + // verify all panels are rendered + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.allPanels) + + // unselect all panels and verify save is disabled + cy.openPanelsModal(); + cy.get(overviewSelectors.panelsModal).contains('Unselect all').click(); + cy.get(overviewSelectors.panelsModal).contains('Save').should('be.disabled'); + + // select 1 panel and verify its visible on console + cy.get('[data-test="overview-panel-management"]').find('#top_avg_packet_rates').check(); + cy.get(overviewSelectors.panelsModal).contains('Save').click(); + netflowPage.waitForLokiQuery() + cy.checkPanel([overviewSelectors.allPanels[2]]) + cy.checkPanelsNum(1); + + // restore default panels and verify visible on console + cy.openPanelsModal(); + cy.get(overviewSelectors.panelsModal).contains('Restore default panels').click(); + cy.get(overviewSelectors.panelsModal).contains('Save').click(); + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.defaultPanels) + cy.checkPanelsNum(); + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("after all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/packet_drop.cy.ts b/web/cypress/integration-tests/packet_drop.cy.ts new file mode 100644 index 000000000..2ffd8a6cf --- /dev/null +++ b/web/cypress/integration-tests/packet_drop.cy.ts @@ -0,0 +1,80 @@ +import { Operator } from "@views/netobserv" +import { netflowPage, overviewSelectors } from "@views/netflow-page" + +function getPacketDropURL(drop: string): string { + return `**/netflow-traffic**packetLoss=${drop}` +} + +describe('(OCP-66141 Network_Observability) PacketDrop test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("PacketDrop") + }) + + beforeEach('any packetDrop test', function () { + netflowPage.visit() + }) + + it("(OCP-66141, aramesha, Network_Observability) Verify packetDrop panels", function () { + // verify default PacketDrop panels are visible + cy.checkPanel(overviewSelectors.defaultPacketDropPanels) + cy.checkPanelsNum(6); + + // open panels modal and verify all relevant panels are listed + cy.openPanelsModal(); + cy.checkPopupItems(overviewSelectors.panelsModal, overviewSelectors.managePacketDropPanelsList); + + // select all panels and verify they are rendered + cy.get(overviewSelectors.panelsModal).contains('Select all').click(); + cy.get(overviewSelectors.panelsModal).contains('Save').click(); + netflowPage.waitForLokiQuery() + cy.checkPanelsNum(10); + + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.allPacketDropPanels) + + // restore default panels and verify they are visible + cy.openPanelsModal().byTestID(overviewSelectors.resetDefault).click().byTestID(overviewSelectors.save).click() + netflowPage.waitForLokiQuery() + cy.checkPanel(overviewSelectors.defaultPacketDropPanels) + cy.checkPanelsNum(6); + }) + + it("(OCP-66141, aramesha, Network_Observability) Verify packetDrop Query Options filters", function () { + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + + // toggle between drops filter + cy.changeQueryOption('Fully dropped'); + netflowPage.waitForLokiQuery() + cy.intercept('GET', getPacketDropURL('dropped'), { + fixture: 'flowmetrics/fully_dropped.json' + }).as('matchedUrl') + + cy.changeQueryOption('Without drops') + netflowPage.waitForLokiQuery() + cy.intercept('GET', getPacketDropURL('hasDrops'), { + fixture: 'flowmetrics/without_drops.json' + }).as('matchedUrl') + + cy.changeQueryOption('Containing drops') + netflowPage.waitForLokiQuery() + cy.intercept('GET', getPacketDropURL('sent'), { + fixture: 'flowmetrics/containing_drops.json' + }).as('matchedUrl') + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/packet_drop_dashboards.cy.ts b/web/cypress/integration-tests/packet_drop_dashboards.cy.ts new file mode 100644 index 000000000..8d625cb43 --- /dev/null +++ b/web/cypress/integration-tests/packet_drop_dashboards.cy.ts @@ -0,0 +1,99 @@ +import { Operator } from "@views/netobserv" +import { displayDropdownSelectors, netflowPage, querySumSelectors, topologySelectors } from "@views/netflow-page" +import { dashboard, graphSelector } from "@views/dashboards-page" + +const metricType = [ + "Bytes", + "Packets", + "Dropped bytes", + "Dropped packets" +] + +const PacketDropPanels = [ + // below panel should appear with the 'node_drop_packets_total' metric + "top-drops-per-node-(pps)-chart", + // below panel should appear with the 'namespace_drop_packets_total' metric + "top-drops-per-infra-namespace-(pps)-chart", + // below panel should appear with the 'workload_drop_packets_total' metric + "top-drops-per-infra-workload-(pps)-chart", +] + +describe('(OCP-66141 Network_Observability) PacketDrop dashboards test', { tags: ['Network_Observability'] }, function () { + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector("PacketDrop") + }) + + it("(OCP-66141, aramesha, Network_Observability) Validate PacketDrop edge labels and Query Summary stats", function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Topology').click() + cy.get('#drawer').should('not.be.empty') + + cy.byTestID("show-view-options-button").should('exist').click().then(views => { + cy.get(displayDropdownSelectors.overview).should('exist').click() + // set one display to test with + cy.byTestID('layout-dropdown').click() + cy.byTestID('Grid').click() + }) + + // update metricType to Dropped bytes + cy.byTestID(topologySelectors.metricTypeDrop).should('exist').click() + cy.get(topologySelectors.metricType).find('li').should('have.length', 4).each((item, index) => { + cy.wrap(item).should('contain.text', metricType[index]) + }) + cy.get('#PktDropBytes').click() + + // verify Query Summary stats for Dropped Bytes metric + cy.get(querySumSelectors.droppedBytesCount).should('exist').then(droppedBytesCnt => { + cy.checkQuerySummary(droppedBytesCnt) + }) + + cy.get(querySumSelectors.droppedBpsCount).should('exist').then(droppedBpsCnt => { + cy.checkQuerySummary(droppedBpsCnt) + }) + + cy.get(querySumSelectors.droppedPacketsCount).should('exist').then(droppedPacketsCnt => { + cy.checkQuerySummary(droppedPacketsCnt) + }) + + // update metricType to Dropped packets + cy.byTestID(topologySelectors.metricTypeDrop).should('exist').click() + cy.get('#PktDropPackets').click() + + // verify Query Summary stats for Dropped Bytes metric + cy.get(querySumSelectors.droppedBytesCount).should('exist').then(droppedBytesCnt => { + cy.checkQuerySummary(droppedBytesCnt) + }) + + cy.get(querySumSelectors.droppedBpsCount).should('exist').then(droppedBpsCnt => { + cy.checkQuerySummary(droppedBpsCnt) + }) + + cy.get(querySumSelectors.droppedPacketsCount).should('exist').then(droppedPacketsCnt => { + cy.checkQuerySummary(droppedPacketsCnt) + }) + netflowPage.resetClearFilters() + }) + + it("(OCP-66141, aramesha, Network_Observability) Validate packetDrop dashboards", function () { + // navigate to 'NetObserv / Main' Dashboard page + dashboard.visit() + dashboard.visitDashboard("netobserv-main") + + // verify 'Drops' panel + cy.checkDashboards(['drops-chart']) + + cy.get('#content-scrollable').scrollTo('bottom') + + cy.checkDashboards(PacketDropPanels) + }) + + after("all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/prom_datasource_only.cy.ts b/web/cypress/integration-tests/prom_datasource_only.cy.ts new file mode 100644 index 000000000..89a87bbf5 --- /dev/null +++ b/web/cypress/integration-tests/prom_datasource_only.cy.ts @@ -0,0 +1,58 @@ +import { Operator, project } from "@views/netobserv" +import { displayDropdownSelectors, netflowPage } from "@views/netflow-page" + +describe('(OCP-74049, OCP-73875 Network_Observability) Prometheus datasource only', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + Operator.createFlowcollector("LokiDisabled") + }) + + it('(OCP-74049, aramesha, Network_Observability), Verify Prom dataSource in Administrator view as cluster-admin user', function () { + netflowPage.visit() + + cy.checkNetflowTraffic("Disabled") + + // verify only prom and auto dataSource is enabled in query options + cy.get('#filter-toolbar-search-filters').contains('Query options').click(); + cy.get('#query-options-dropdown').click(); + cy.get('#dataSource-loki').should('be.disabled') + cy.get('#dataSource-prom').should('not.be.disabled') + cy.get('#dataSource-auto').should('not.be.disabled') + cy.get('#filter-toolbar-search-filters').contains('Query options').click(); + + // verify resource scope is not observed with prom dataSource + cy.byTestID("show-view-options-button").should('exist').click().then(views => { + cy.get(displayDropdownSelectors.overview).should('exist').click() + // set one display to test with + cy.byTestID('scope-dropdown').click() + cy.byTestID('resource').should('not.exist') + }) + }) + + it('(OCP-73876, aramesha, Network_Observability), Verify prom dataSource in Administrator view as non-cluster-admin user', function () { + // Add user to netobserv-metrics-reader role to view metrics + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-monitoring-view ${Cypress.env('LOGIN_USERNAME')}`) + + // Add edit role to user for netobserv NS + cy.adminCLI(`oc adm policy add-role-to-user edit ${Cypress.env('LOGIN_USERNAME')} -n ${project}`) + + // Remove user from cluster-admin role + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + + cy.wait(5000) + + netflowPage.visit() + + cy.checkNetflowTraffic("Disabled") + }) + + after("after all tests", function () { + Operator.deleteFlowCollector() + cy.adminCLI(`oc delete clusterRoleBinding cluster-monitoring-view`) + cy.adminCLI(`oc adm policy remove-role-from-user edit ${Cypress.env('LOGIN_USERNAME')} -n ${project}`) + }) +}) diff --git a/web/cypress/integration-tests/quickFilters.cy.ts b/web/cypress/integration-tests/quickFilters.cy.ts new file mode 100644 index 000000000..ca6a769b6 --- /dev/null +++ b/web/cypress/integration-tests/quickFilters.cy.ts @@ -0,0 +1,85 @@ +import { Operator } from "@views/netobserv" +import { netflowPage } from "@views/netflow-page" + +const CLIENT_NS = "test-client-56222" +const SERVER_NS = "test-server-56222" +var patch = [{ + "op": "$op", + "path": "/spec/consolePlugin/quickFilters", + "value": [ + { + "default": true, + "filter": { + "dst_namespace": CLIENT_NS, + "src_namespace": SERVER_NS + }, + "name": "Test NS" + } + ] +}] +var templateParams = `-p SERVER_NS=${SERVER_NS} CLIENT_NS=${CLIENT_NS}` +var templateProcessCmd = `oc process -f cypress/fixtures/test-server-client.yaml ${templateParams} --kubeconfig ${Cypress.env('KUBECONFIG_PATH')}` + +describe('(OCP-56222 Network_Observability) Quick Filters test', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + // create test server and client pods + cy.adminCLI(`${templateProcessCmd}| oc apply -f -`) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach('any netflow table test', function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + }) + + it("(OCP-56222, memodi, Network_Observability) should verify quick filters add", function () { + const addQuickFilterPatch = JSON.stringify(patch).replace('$op', 'add') + cy.adminCLI(`oc patch flowcollector/cluster --type json -p \'${addQuickFilterPatch}\'`) + // wait 10 seconds for plugin pod to get restarted + cy.wait(10000).then(() => { + cy.reload() + }) + cy.contains("Quick filters").should('exist').click() + cy.get('#quick-filters-dropdown').contains("Test NS") + cy.contains("Test NS").parent().find('input[type="checkbox"]').should('exist').click() + + // verify source and destination NS are test-server and test-client respectively + cy.get('[data-test-td-column-id=SrcK8S_Namespace]').each((td) => { + expect(td).to.contain(SERVER_NS) + }) + cy.get('[data-test-td-column-id=DstK8S_Namespace]').each((td) => { + expect(td).to.contain(CLIENT_NS) + }) + netflowPage.clearAllFilters() + }) + + it("(OCP-56222, memodi, Network_Observability) should verify quick filters remove", function () { + const addQuickFilterPatch = JSON.stringify(patch).replace('$op', 'remove') + cy.adminCLI(`oc patch flowcollector/cluster --type json -p \'${addQuickFilterPatch}\'`) + + // wait 10 seconds for plugin pod to get restarted + cy.wait(10000).then(() => { + cy.reload() + }) + cy.contains("Quick filters").should('exist').click() + cy.get('#quick-filters-dropdown label').should('exist').each((ele, index, $list) => { + cy.wrap(ele).should('not.contain', "Test NS") + }) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + cy.adminCLI(`${templateProcessCmd} | oc delete -f -`) + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/table_queryopts.cy.ts b/web/cypress/integration-tests/table_queryopts.cy.ts new file mode 100644 index 000000000..d4f9e704b --- /dev/null +++ b/web/cypress/integration-tests/table_queryopts.cy.ts @@ -0,0 +1,120 @@ +import { Operator } from "@views/netobserv" +import { netflowPage, colSelectors, querySumSelectors } from "@views/netflow-page" + +function getTableLimitURL(limit: string): string { + return `**/netflow-traffic**limit=${limit}` +} + +describe('(OCP-50532, OCP-50531, OCP-50530, OCP-59408 Network_Observability) Netflow Table Query Options', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach('any netflow table test', function () { + netflowPage.visit() + cy.get('#tabs-container').contains('Traffic flows').click() + cy.byTestID("table-composable").should('exist') + }) + + it("(OCP-50532, aramesha, Network_Observability) should verify Query Options dropdown", function () { + // toggle between the page limits + cy.changeQueryOption('500') + netflowPage.waitForLokiQuery() + cy.intercept('GET', getTableLimitURL('500'), { + fixture: 'flowmetrics/table_500.json' + }).as('matchedUrl') + + cy.changeQueryOption('100') + netflowPage.waitForLokiQuery() + cy.intercept('GET', getTableLimitURL('100'), { + fixture: 'flowmetrics/table_100.json' + }).as('matchedUrl') + + cy.changeQueryOption('50') + netflowPage.waitForLokiQuery() + cy.intercept('GET', getTableLimitURL('50'), { + fixture: 'flowmetrics/table_50.json' + }).as('matchedUrl') + }) + + it("(OCP-50532, memodi, Network_Observability) should validate query summary panel", function () { + let warningExists = false + cy.get(querySumSelectors.queryStatsPanel).should('exist').then(qrySum => { + if (Cypress.$(querySumSelectors.queryStatsPanel + ' svg.query-summary-warning').length > 0) { + warningExists = true + } + }) + + cy.get(querySumSelectors.flowsCount).should('exist').then(flowsCnt => { + const nflows = parseFloat(flowsCnt.text()) + cy.wait(10) + expect(nflows).to.be.greaterThan(0) + }) + + cy.get(querySumSelectors.bytesCount).should('exist').then(bytesCnt => { + const nbytes = parseFloat(bytesCnt.text()) + expect(nbytes).to.be.greaterThan(0) + }) + + cy.get(querySumSelectors.packetsCount).should('exist').then(pktsCnt => { + const npkts = parseFloat(pktsCnt.text()) + expect(npkts).to.be.greaterThan(0) + }) + cy.get('#query-summary-toggle').should('exist').click() + cy.get('#summaryPanel').should('be.visible') + + cy.contains('Results').should('exist') + cy.contains('Average time').should('exist') + cy.contains('Duration').should('exist') + cy.contains('Collection latency').should('exist') + cy.contains('Cardinality').should('exist') + cy.contains('Configuration').should('exist') + cy.contains('Sampling').should('exist') + cy.contains('Version').should('exist') + cy.contains('Number').should('exist') + cy.contains('Date').should('exist') + }) + + it("(OCP-68125, aramesha, Network_Observability) should verify DSCP column", function () { + netflowPage.stopAutoRefresh() + cy.openColumnsModal().then(col => { + cy.get(colSelectors.columnsModal).should('be.visible') + cy.get('#Dscp').check() + cy.byTestID(colSelectors.save).click() + }) + cy.reload() + + cy.byTestID('table-composable').should('exist').within(() => { + cy.get(colSelectors.dscp).should('exist') + }) + + // filter on DSCP values + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + // verify drop TCP state filter + cy.byTestID('group-2-toggle').click().should('be.visible') + cy.byTestID('dscp').click() + cy.byTestID('autocomplete-search').type('0' + '{enter}') + cy.get('#filters div.custom-chip > p').should('contain.text', 'Standard') + + // Verify DSCP value is Standard for all rows + cy.get('[data-test-td-column-id=Dscp]').each((td) => { + cy.wrap(td).should('have.attr', 'data-test-td-value').and('contain', '0') + cy.wrap(td).should('contain.text', 'Standard') + }) + netflowPage.clearAllFilters() + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/topology_edges_labels.cy.ts b/web/cypress/integration-tests/topology_edges_labels.cy.ts new file mode 100644 index 000000000..f39aeb43f --- /dev/null +++ b/web/cypress/integration-tests/topology_edges_labels.cy.ts @@ -0,0 +1,97 @@ +import { displayDropdownSelectors, netflowPage, topologySelectors, topologyPage, setupTopologyViewWithNamespaceFilter, getTopologyResourceScopeGroupURL } from "@views/netflow-page" +import { Operator, project } from "@views/netobserv" + +describe("(OCP-53591 Network_Observability) Netflow Topology edges,labels, badges features", { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach("run before each test", function () { + setupTopologyViewWithNamespaceFilter() + + // advance options menu remains visible throughout the test + topologyPage.selectScopeGroup("resource", "owners") + cy.get(displayDropdownSelectors.topology).should('exist').click() + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group owners", function () { + cy.intercept(getTopologyResourceScopeGroupURL('owners'), { fixture: 'flowmetrics/Owners.json' }) + cy.get(topologySelectors.nGroups).its('length').should('be.gte', 5) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group expand/collapse", function () { + cy.get(topologySelectors.groupToggle).click() + cy.get(topologySelectors.groupLayer + ' > ' + topologySelectors.group).each((node, index) => { + cy.wrap(node).should('not.have.descendants', 'g.pf-topology__group') + }) + cy.get(topologySelectors.groupToggle).click() + cy.get(topologySelectors.groupLayer + ' > ' + topologySelectors.group).each((node, index) => { + cy.wrap(node).should('have.descendants', 'g.pf-topology__group') + }) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify edges display/hidden", function () { + cy.get(topologySelectors.edgeToggle).uncheck() + + // verify labels are also hidden + cy.get('#edges-tag-switch').should('be.disabled') + cy.get(topologySelectors.defaultLayer).each((node, index) => { + cy.wrap(node).should('not.have.descendants', '' + topologySelectors.edge) + }) + cy.get(topologySelectors.edgeToggle).check() + cy.get('#edges-tag-switch').should('be.enabled') + cy.get(topologySelectors.defaultLayer).each((node, index) => { + cy.wrap(node).should('have.descendants', '' + topologySelectors.edge) + }) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify edges labels can be displayed/hidden", function () { + netflowPage.selectSourceNS(project) + topologyPage.selectScopeGroup(undefined, "none") + topologyPage.selectScopeGroup("namespace") + cy.get('#reset-view').should('exist').click() + cy.get('[data-test-id="edge-handler"] g.pf-topology__edge__tag').should("exist") + + + cy.get(displayDropdownSelectors.topology).should('exist').click() + cy.get(topologySelectors.labelToggle).uncheck() + + cy.get('[data-test-id="edge-handler"] g.pf-topology__edge__tag').should("not.exist") + + cy.get(topologySelectors.labelToggle).check() + cy.get('[data-test-id="edge-handler"] g.pf-topology__edge__tag').should("exist") + netflowPage.clearAllFilters() + }) + + it("(OCP-53591, memodi, Network_Observability) should verify badges display/hidden", function () { + netflowPage.selectSourceNS(project) + topologyPage.selectScopeGroup(undefined, "none") + topologyPage.selectScopeGroup("namespace") + cy.get('#reset-view').should('exist').click() + + cy.get(displayDropdownSelectors.topology).should('exist').click() + cy.get(topologySelectors.badgeToggle).uncheck() + + cy.get('g.pf-topology__node__label').each((node, index) => { + cy.wrap(node).should('not.have.descendants', 'g.pf-topology__node__label__badge') + }) + // not checking the existence of the badge since there may be an + // "Unknown" node present with empty badge. + netflowPage.clearAllFilters() + }) + + afterEach("each test", function () { + cy.get(displayDropdownSelectors.topology).should('exist').click() + netflowPage.resetClearFilters() + }) + + after("after all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/topology_groups.cy.ts b/web/cypress/integration-tests/topology_groups.cy.ts new file mode 100644 index 000000000..b38115da5 --- /dev/null +++ b/web/cypress/integration-tests/topology_groups.cy.ts @@ -0,0 +1,114 @@ +import { netflowPage, topologySelectors, topologyPage, setupTopologyViewWithNamespaceFilter, getTopologyScopeURL, getTopologyResourceScopeGroupURL } from "@views/netflow-page" +import { Operator } from "@views/netobserv" + +describe("(OCP-53591 Network_Observability) Netflow Topology groups features", { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach("run before each test", function () { + setupTopologyViewWithNamespaceFilter() + }) + + it("(OCP-53591, memodi, Network_Observability) should verify namespace scope", function () { + const scope = "namespace" + cy.intercept('GET', getTopologyScopeURL(scope), { + fixture: 'flowmetrics/namespace.json' + }).as('matchedUrl') + + // selecting something different first + // to re-trigger API request on namespace selection + topologyPage.selectScopeGroup("owner") + topologyPage.selectScopeGroup(scope) + cy.wait('@matchedUrl').then(({ response }) => { + expect(response?.statusCode).to.eq(200) + }) + topologyPage.isViewRendered() + // verify number of edges and nodes. + cy.get('#drawer ' + topologySelectors.edge).should('have.length', 4) + cy.get('#drawer ' + topologySelectors.node).should('have.length', 5) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify owner scope", function () { + const scope = "owner" + cy.intercept('GET', getTopologyScopeURL(scope), { + fixture: 'flowmetrics/owner.json' + }).as('matchedUrl') + + // selecting something different first + // to re-trigger API request on owner selection + topologyPage.selectScopeGroup("namespace") + topologyPage.selectScopeGroup(scope) + cy.wait('@matchedUrl').then(({ response }) => { + expect(response?.statusCode).to.eq(200) + }) + topologyPage.isViewRendered() + // verify number of edges and nodes. + cy.get('#drawer ' + topologySelectors.edge).should('have.length', 17) + cy.get('#drawer ' + topologySelectors.node).should('have.length', 15) + }) + + it("(OCP-53591, memodi) should verify resource scope", function () { + const scope = 'resource' + cy.intercept('GET', getTopologyScopeURL(scope), { fixture: 'flowmetrics/resource.json' }).as('matchedUrl') + topologyPage.selectScopeGroup(scope) + cy.wait('@matchedUrl').then(({ response }) => { + expect(response?.statusCode).to.eq(200) + }) + topologyPage.isViewRendered() + // verify number of edges and nodes. + cy.get('#drawer ' + topologySelectors.edge).should('have.length', 47) + cy.get('#drawer ' + topologySelectors.node).should('have.length', 28) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group Nodes", function () { + const groups = 'hosts' + cy.intercept('GET', getTopologyResourceScopeGroupURL(groups), { + fixture: 'flowmetrics/hosts.json' + }) + topologyPage.selectScopeGroup("resource", groups) + topologyPage.isViewRendered() + // verify number of groups, to be equal to number of cluster nodes + cy.get(topologySelectors.nGroups).should('have.length', 6) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group Nodes+NS", function () { + cy.intercept('GET', getTopologyResourceScopeGroupURL('hosts%2Bnamespaces'), { fixture: 'flowmetrics/hostsNS.json' }) + topologyPage.selectScopeGroup("resource", "hosts+namespaces") + topologyPage.isViewRendered() + cy.get(topologySelectors.nGroups).should('have.length', 10) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group Nodes+Owners", function () { + cy.intercept('GET', getTopologyResourceScopeGroupURL('hosts%2Bowners'), { fixture: 'flowmetrics/hostsOwners.json' }) + topologyPage.selectScopeGroup("resource", "hosts+owners") + // verify number of groups + cy.get(topologySelectors.nGroups).should('have.length', 11) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group NS", function () { + cy.intercept('GET', getTopologyResourceScopeGroupURL('namespaces'), { fixture: 'flowmetrics/NS.json' }) + topologyPage.selectScopeGroup("resource", "namespaces") + cy.get(topologySelectors.nGroups).should('have.length', 4) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify group NS+Owners", function () { + cy.intercept('GET', getTopologyResourceScopeGroupURL('namespaces%2Bowners'), { fixture: 'flowmetrics/NSOwners.json' }) + topologyPage.selectScopeGroup("resource", "namespaces+owners") + cy.get(topologySelectors.nGroups).should('have.length', 9) + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("after all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/topology_view.cy.ts b/web/cypress/integration-tests/topology_view.cy.ts new file mode 100644 index 000000000..42a5add76 --- /dev/null +++ b/web/cypress/integration-tests/topology_view.cy.ts @@ -0,0 +1,101 @@ +import { displayDropdownSelectors, genSelectors, netflowPage, topologySelectors, setupTopologyViewWithNamespaceFilter } from "@views/netflow-page" +import { Operator } from "@views/netobserv" + +const metricFunction = [ + "Latest rate", + "Average rate", + "Min rate", + "Max rate", + "Total" +] +const metricType = [ + "Bytes", + "Packets" +] + +describe("(OCP-53591 Network_Observability) Netflow Topology view features", { tags: ['Network_Observability'] }, function () { + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + beforeEach("run before each test", function () { + setupTopologyViewWithNamespaceFilter() + }) + + it("(OCP-53591, memodi, Network_Observability) should verify topology page features", function () { + cy.byTestID('search-topology-element-input').should('exist') + cy.get(displayDropdownSelectors.topology).should('exist').click() + + cy.byTestID(topologySelectors.metricsDrop).should('exist').click() + cy.get(topologySelectors.metricsFunction).find('li').should('have.length', 5).each((item, index) => { + cy.wrap(item).should('contain.text', metricFunction[index]) + }) + cy.byTestID(topologySelectors.metricTypeDrop).should('exist').click() + cy.get(topologySelectors.metricType).find('li').should('have.length', 2).each((item, index) => { + cy.wrap(item).should('contain.text', metricType[index]) + }) + cy.get(displayDropdownSelectors.topology).should('exist').click() + + cy.byTestID(genSelectors.timeDrop).should('exist') + cy.byTestID(genSelectors.refreshDrop).should('exist') + cy.get('#zoom-in').should('exist') + cy.get('#zoom-out').should('exist') + cy.get('#reset-view').should('exist') + cy.get('#query-summary').should('exist') + }) + + it("(OCP-53591, memodi, Network_Observability) should verify local storage", function () { + // modify some options + cy.get(displayDropdownSelectors.topology).should('exist').click() + cy.byTestID('truncate-dropdown').click().byTestID("25") + cy.get(topologySelectors.badgeToggle).uncheck() + cy.byTestID('scope-dropdown').should('exist').click().byTestID('namespace').should('exist').click() + cy.get(displayDropdownSelectors.topology).should('exist').click() + + cy.visit('/monitoring/alerts') + cy.visit('/netflow-traffic') + cy.get('#drawer').should('exist') + + cy.get('#pageHeader').should('exist').then(() => { + const rawSettings = localStorage.getItem('netobserv-plugin-settings') + expect(rawSettings, 'netobserv-plugin-settings should exist').to.not.be.null + const settings = JSON.parse(rawSettings as string) + const topologySettings = settings['netflow-traffic-topology-options'] + + expect(settings['netflow-traffic-view-id']).to.be.equal('topology') + expect(topologySettings['edgeTags']).to.be.true + expect(topologySettings['edges']).to.be.true + expect(topologySettings['groupTypes']).to.be.equal('none') + // expect(topologySettings['layout']).to.be.equal('Grid') + expect(topologySettings['metricFunction']).to.be.equal('last') + expect(topologySettings['metricType']).to.be.equal('Bytes') + expect(topologySettings['nodeBadges']).to.be.false + expect(settings['netflow-traffic-metric-scope']).to.be.equal('namespace') + expect(topologySettings['truncateLength']).to.be.equal(25) + }) + }) + + it("(OCP-53591, memodi, Network_Observability) should verify side panel", function () { + cy.get('g[data-kind="node"] > g').eq(1).parent().should('exist').click() + cy.get('#elementPanel').should('be.visible') + + // details tab + cy.get('#drawer-tabs').contains('Details').should('exist') + // metrics tab + cy.get('#drawer-tabs').contains('Metrics').should('exist').click() + cy.get('.element-metrics-container svg').should('exist') + }) + + afterEach("each test", function () { + netflowPage.resetClearFilters() + }) + + after("after all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/integration-tests/workloads.cy.ts b/web/cypress/integration-tests/workloads.cy.ts new file mode 100644 index 000000000..42a5ab0e0 --- /dev/null +++ b/web/cypress/integration-tests/workloads.cy.ts @@ -0,0 +1,30 @@ +import { Operator } from "@views/netobserv" + +const pagesToVisit = ["/k8s/ns/netobserv/core~v1~Pod", + "/k8s/ns/netobserv/apps~v1~Deployment", + "/k8s/ns/openshift-dns/daemonsets", + "/k8s/ns/netobserv/apps~v1~ReplicaSet", +] + +describe('(OCP-70972 Network_Observability) Netflow traffic pages on workloads', { tags: ['Network_Observability'] }, function () { + + before('any test', function () { + cy.adminCLI(`oc adm policy add-cluster-role-to-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + cy.uiLogin(Cypress.env('LOGIN_IDP'), Cypress.env('LOGIN_USERNAME'), Cypress.env('LOGIN_PASSWORD')) + + Operator.install() + cy.checkStorageClass(this) + Operator.createFlowcollector() + }) + + it('(OCP-70972, memodi, Network_Observability), netflow traffic pages should appear on workloads', function () { + pagesToVisit.forEach((page) => { + cy.clearLocalStorage() + cy.visitNetflowTrafficTab(page) + }) + }) + + after("after all tests", function () { + cy.adminCLI(`oc adm policy remove-cluster-role-from-user cluster-admin ${Cypress.env('LOGIN_USERNAME')}`) + }) +}) diff --git a/web/cypress/support/commands.ts b/web/cypress/support/commands.ts index 068d2def1..a8fa5b4d1 100644 --- a/web/cypress/support/commands.ts +++ b/web/cypress/support/commands.ts @@ -39,6 +39,7 @@ // } import * as c from './const'; +import { guidedTour } from '@views/tour'; Cypress.Commands.add('openNetflowTrafficPage', (clearCache = true) => { if (clearCache) { @@ -56,6 +57,7 @@ Cypress.Commands.add('showAdvancedOptions', () => { return; } else { cy.get('#show-view-options-button').click(); + cy.get('[data-test-id="view-options-toolbar"]').should('be.visible'); } }) }); @@ -211,7 +213,120 @@ declare global { changeTimeRange(name: string, topology?: boolean): Chainable changeMetricFunction(name: string): Chainable changeMetricType(name: string): Chainable - checkRecordField(field: string, name: string, values: string[]) + checkRecordField(field: string, name: string, values: string[]): Chainable + switchPerspective(perspective: string): Chainable + login(provider: string, username: string, password: string): Chainable + uiLogin(provider: string, username: string, password: string): Chainable + uiLogout(): Chainable + cliLogin(username?: string, password?: string, hostapi?: string): Chainable + adminCLI(command: string, options?: any): Chainable + retryTask(condition: string, expectedoutput: string, options?: any): Chainable + checkCommandResult(condition: string, expectedoutput: string, options?: any): Chainable } } -} \ No newline at end of file +} +const kubeconfig = Cypress.env('KUBECONFIG_PATH'); +const DEFAULT_RETRY_OPTIONS = { retries: 3, interval: 10000 }; + +Cypress.Commands.add("switchPerspective", (perspective: string) => { + cy.get('body').then(($body) => { + if ($body.find('.pf-m-collapsed').length > 0) { + cy.get('#nav-toggle').click() + } + + const currentPerspective = $body.find('[data-test-id="perspective-switcher-toggle"]').text(); + if (currentPerspective.includes(perspective)) { + cy.log('Already on ' + perspective + ' perspective'); + return; + } + + cy.byLegacyTestID('perspective-switcher-toggle').click(); + cy.byLegacyTestID(`perspective-switcher-menu-option-${perspective.toLowerCase()}`).click(); + }); +}); + +Cypress.Commands.add("cliLogin", (username?, password?, hostapi?) => { + const loginUsername = username || Cypress.env('LOGIN_USERNAME'); + const loginPassword = password || Cypress.env('LOGIN_PASSWORD'); + const hostapiurl = hostapi || Cypress.env('HOST_API'); + cy.exec(`oc login -u ${loginUsername} -p ${loginPassword} ${hostapiurl} --insecure-skip-tls-verify=true`, { failOnNonZeroExit: false }) + .then(result => { + cy.log(result.stderr); + cy.log(result.stdout); + }); +}); + +Cypress.Commands.add("adminCLI", (command: string, options?: {}) => { + cy.log(`Run admin command: ${command}`) + cy.exec(`${command} --kubeconfig ${kubeconfig}`, options) +}); + +Cypress.Commands.add('retryTask', (command: string, expectedOutput: string, options?: any) => { + const { retries, interval } = options || DEFAULT_RETRY_OPTIONS; + + const retryTaskFn = (currentRetries: number): Cypress.Chainable => { + return cy.exec(`${command} --kubeconfig ${kubeconfig}`) + .then((result: any) => { + if (result.stdout.includes(expectedOutput)) { + return cy.wrap(true); + } else if (currentRetries < retries) { + return cy.wait(interval).then(() => retryTaskFn(currentRetries + 1)); + } else { + return cy.wrap(false); + } + }); + }; + return retryTaskFn(0); +}); + +Cypress.Commands.add("checkCommandResult", (command: string, expectedoutput: string, options?: any) => { + cy.retryTask(command, expectedoutput, options) + .then((conditionMet: boolean) =>{ + if (!conditionMet) { + throw new Error(`"${command}" failed to meet expectedoutput ${expectedoutput} within ${options.retries} retries`); + } + }) +}); + +Cypress.Commands.add('uiLogin', (provider: string, username: string, password: string)=> { + cy.clearCookie('openshift-session-token'); + cy.visit('/'); + cy.window().then((win: any) => { + if(win.SERVER_FLAGS?.authDisabled) { + cy.task('log', 'Skipping login, console is running with auth disabled'); + return; + } + cy.get('[data-test-id="login"]').should('be.visible'); + cy.get('body').then(($body) => { + if ($body.text().includes(provider)) { + cy.contains(provider).should('be.visible').click(); + }else if ($body.find('li.idp').length > 0) { + cy.get('li.idp').last().click(); + } + }); + cy.get('#inputUsername').type(username); + cy.get('#inputPassword').type(password); + cy.get('button[type=submit]').click(); + cy.byTestID("username", {timeout: 120000}) + .should('be.visible'); + }); + guidedTour.close(); + cy.switchPerspective('Administrator'); +}); + +Cypress.Commands.add('login', (provider: string, username: string, password: string) => { + cy.uiLogin(provider, username, password); +}); + +Cypress.Commands.add('uiLogout', () => { + cy.window().then((win: any) => { + if (win.SERVER_FLAGS?.authDisabled){ + cy.log('Skipping logout, console is running with auth disabled'); + return; + } + cy.log('Loggin out UI'); + cy.byTestID('user-dropdown').click(); + cy.byTestID('log-out').should('be.visible'); + cy.byTestID('log-out').click({ force: true }); + }) +}); diff --git a/web/cypress/support/e2e.ts b/web/cypress/support/e2e.ts index 2625284ca..ee8de34a3 100644 --- a/web/cypress/support/e2e.ts +++ b/web/cypress/support/e2e.ts @@ -9,4 +9,8 @@ // https://on.cypress.io/configuration // *********************************************************** -import './commands' \ No newline at end of file +// Import types to enable tags in describe/it blocks +import '@cypress/grep' +import './commands' +import './selectors' +import '../views/netflow-page' diff --git a/web/cypress/support/selectors.ts b/web/cypress/support/selectors.ts new file mode 100644 index 000000000..97f99ef12 --- /dev/null +++ b/web/cypress/support/selectors.ts @@ -0,0 +1,87 @@ +/* eslint-disable @typescript-eslint/no-use-before-define */ +import Loggable = Cypress.Loggable; +import Timeoutable = Cypress.Timeoutable; +import Withinable = Cypress.Withinable; +import Shadow = Cypress.Shadow; + +export {}; +declare global { + namespace Cypress { + interface Chainable { + byTestID( + selector: string, + options?: Partial, + ): Chainable; + byTestActionID(selector: string): Chainable>; + byLegacyTestID( + selector: string, + options?: Partial, + ): Chainable>; + byButtonText(selector: string): Chainable>; + byDataID(selector: string): Chainable>; + byTestSelector( + selector: string, + options?: Partial, + ): Chainable>; + byTestDropDownMenu(selector: string): Chainable>; + byTestOperatorRow( + selector: string, + options?: Partial, + ): Chainable>; + byTestSectionHeading(selector: string): Chainable>; + byTestOperandLink(selector: string): Chainable>; + } + } +} + +// any command added below, must be added to global Cypress interface above + +Cypress.Commands.add( + 'byTestID', + (selector: string, options?: Partial) => { + cy.get(`[data-test="${selector}"]`, options); + }, +); + +Cypress.Commands.add('byTestActionID', (selector: string) => + cy.get(`[data-test-action="${selector}"]:not([disabled])`), +); + +// deprecated! new IDs should use 'data-test', ie. `cy.byTestID(...)` +Cypress.Commands.add( + 'byLegacyTestID', + (selector: string, options?: Partial) => { + cy.get(`[data-test-id="${selector}"]`, options); + }, +); + +Cypress.Commands.add('byButtonText', (selector: string) => { + cy.get('button[type="button"]').contains(`${selector}`); +}); + +Cypress.Commands.add('byDataID', (selector: string) => { + cy.get(`[data-id="${selector}"]`); +}); + +Cypress.Commands.add( + 'byTestSelector', + (selector: string, options?: Partial) => { + cy.get(`[data-test-selector="${selector}"]`, options); + }, +); + +Cypress.Commands.add('byTestDropDownMenu', (selector: string) => { + cy.get(`[data-test-dropdown-menu="${selector}"]`); +}); + +Cypress.Commands.add('byTestOperatorRow', (selector: string, options?: object) => { + cy.get(`[data-test-operator-row="${selector}"]`, options); +}); + +Cypress.Commands.add('byTestSectionHeading', (selector: string) => { + cy.get(`[data-test-section-heading="${selector}"]`); +}); + +Cypress.Commands.add('byTestOperandLink', (selector: string) => { + cy.get(`[data-test-operand-link="${selector}"]`); +}); diff --git a/web/cypress/tsconfig.json b/web/cypress/tsconfig.json new file mode 100644 index 000000000..e0ccbbd2f --- /dev/null +++ b/web/cypress/tsconfig.json @@ -0,0 +1,14 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "baseUrl": "..", + "paths": { + "@views/*": ["cypress/views/*"] + }, + "types": ["cypress", "node"] + }, + "include": [ + "**/*.ts", + "**/*.tsx" + ] +} diff --git a/web/cypress/views/catalog-source.ts b/web/cypress/views/catalog-source.ts new file mode 100644 index 000000000..a1b974cc9 --- /dev/null +++ b/web/cypress/views/catalog-source.ts @@ -0,0 +1,25 @@ +export const catalogSources = { + navToOperatorHubSources: () => { + cy.visit('k8s/cluster/config.openshift.io~v1~OperatorHub/cluster/sources') + cy.get('#yaml-create').should('exist') + }, + createCustomCatalog: (image: any, catalogName: string, displayName: string) => { + catalogSources.navToOperatorHubSources() + // create custom catalog only if its not already present + let cmd = `oc get -n openshift-marketplace catalogsource ${catalogName} --kubeconfig=${Cypress.env('KUBECONFIG_PATH')} 2>&1` + cy.exec(cmd, { failOnNonZeroExit: false }).then(result => { + cy.wrap(result.stdout).then((out) => { + if (out.includes("NotFound")) { + cy.byTestID('item-create').should('exist').click() + cy.byTestID('catalog-source-name').type(catalogName) + cy.get('#catalog-source-display-name').type(displayName) + cy.get('#catalog-source-publisher').type('ocp-qe') + cy.byTestID('catalog-source-image').type(image) + cy.byTestID('save-changes').click() + } + }) + }) + cy.byTestID(catalogName).should('exist') + cy.checkCommandResult(`oc get catalogsource ${catalogName} -n openshift-marketplace -o jsonpath='{.status.connectionState.lastObservedState}'`, 'READY', { retries: 6, interval: 10000 }); + } +} diff --git a/web/cypress/views/dashboards-page.ts b/web/cypress/views/dashboards-page.ts new file mode 100644 index 000000000..d797f63c8 --- /dev/null +++ b/web/cypress/views/dashboards-page.ts @@ -0,0 +1,52 @@ +export const dashboard = { + visit: () => { + cy.visit('/monitoring/dashboards') + cy.byTestID('dashboard-dropdown').should('exist').click() + }, + visitDashboard: (dashboardName: string) => { + cy.visit(`/monitoring/dashboards/${dashboardName}`) + + cy.get('#refresh-interval-dropdown-dropdown').should('exist').then(btn => { + cy.wrap(btn).click().then(drop => { + cy.contains('15 seconds').should('exist').click() + }) + }) + + cy.get('#monitoring-time-range-dropdown').should('exist').then(btn => { + cy.wrap(btn).click().then(drop => { + cy.contains('Last 5 minutes').should('exist').click() + }) + }) + + // to load all the graphs on the dashboard + cy.wait(1000) + cy.get('#content-scrollable').scrollTo('bottom') + cy.wait(1000) + } +} + +export namespace dashboardSelectors { + export const flowStatsToggle = '[data-test-id=panel-flowlogs-pipeline-statistics] > .pf-c-button' + export const ebpfStatsToggle = '[data-test-id=panel-e-bpf-agent-statistics] > .pf-c-button' + export const operatorStatsToggle = '[data-test-id=panel-operator-statistics] > .pf-c-button' + export const resourceStatsToggle = '[data-test-id=panel-resource-usage] > .pf-c-button' +} + +export const graphSelector = { + graphBody: '.co-dashboard-card__body--dashboard > div > div' +} + +Cypress.Commands.add('checkDashboards', (names) => { + for (let i = 0; i < names.length; i++) { + cy.byTestID(names[i]).should('exist', { timeout: 120000 }) + .find(graphSelector.graphBody).should('not.have.class', 'graph-empty-state', { timeout: 120000 }) + } +}) + +declare global { + namespace Cypress { + interface Chainable { + checkDashboards(names: string[]): Chainable + } + } +} diff --git a/web/cypress/views/netflow-page.ts b/web/cypress/views/netflow-page.ts new file mode 100644 index 000000000..d79b404c1 --- /dev/null +++ b/web/cypress/views/netflow-page.ts @@ -0,0 +1,412 @@ +import { guidedTour } from "@views/tour"; + +declare global { + namespace Cypress { + interface Chainable { + showAdvancedOptions(): Chainable + checkPanelsNum(panels?: number): Chainable + checkPanel(panelName: string[]): Chainable + openPanelsModal(): Chainable + openColumnsModal(): Chainable + selectPopupItems(id: string, names: string[]): Chainable + checkPopupItems(id: string, names: string[]): Chainable + checkQuerySummary(metric: JQuery): Chainable + checkPerformance(page: string, loadTime: number, memoryUsage: number): Chainable + changeQueryOption(name: string): Chainable + visitNetflowTrafficTab(page: string): Chainable + checkNetflowTraffic(loki?: string): Chainable + } + } +} + +type Group = 'Node' | 'Namespace' | 'Owner' | 'Resource' + +export function getTopologyScopeURL(scope: string): string { + return `**/flow/metrics**aggregateBy=${scope}*` +} + +export function getTopologyResourceScopeGroupURL(groups: string): string { + return `**/flow/metrics**groups=${groups}*` +} + +export function getMemoryUsageMB(): number { + return Math.round((window.performance as any).memory?.usedJSHeapSize / 1048576) +} + +export const netflowPage = { + visit: () => { + cy.clearLocalStorage() + cy.intercept('**/backend/api/flow/metrics*').as('call1') + cy.visit('/netflow-traffic') + // wait for all calls to complete + cy.wait('@call1', { timeout: 60000 }) + + netflowPage.clearAllFilters() + + // set the page to auto refresh + netflowPage.setAutoRefresh() + + cy.byTestID('no-results-found').should('not.exist') + cy.get('#overview-container').should('exist') + }, + visitDeveloper: (project: string) => { + cy.clearLocalStorage() + cy.switchPerspective('Developer'); + guidedTour.close() + cy.visit(`/dev-monitoring/ns/${project}/netflow-traffic`) + }, + toggleFullScreen: () => { + cy.byTestID(genSelectors.moreOpts).should('exist').click().then(() => { + cy.get(genSelectors.expand).click() + }) + }, + setAutoRefresh: () => { + cy.byTestID(genSelectors.refreshDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.get('[data-test="15s"]').should('exist').click() + }) + }) + }, + stopAutoRefresh: () => { + cy.byTestID(genSelectors.refreshDrop).then(btn => { + expect(btn).to.exist + cy.wrap(btn).click().then(drop => { + cy.get('[data-test="OFF_KEY"]').should('exist').click() + }) + }) + }, + resetClearFilters: () => { + cy.byTestID("reset-filters-button").should('exist').click({ force: true }) + }, + clearAllFilters: () => { + cy.byTestID("clear-all-filters-button").should('exist').click() + }, + waitForLokiQuery: () => { + cy.get("#refresh-button > span > svg").invoke('attr', 'style').should('contain', '0s linear 0s') + }, + selectSourceNS: (project: string) => { + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + // verify Source namespace filter + cy.byTestID('group-0-toggle').should('exist').byTestID('src_namespace').click() + cy.byTestID('autocomplete-search').type(project + '{enter}{enter}') + cy.get('#filters div.custom-chip > p').should('contain.text', `${project}`) + } +} + +export const topologyPage = { + selectScopeGroup: (scope?: string, group?: string) => { + cy.get(displayDropdownSelectors.topology).should('exist').click() + if (scope) { + cy.byTestID("scope-dropdown").click().byTestID(scope).click() + } + if (group) { + cy.wait(5000) + cy.byTestID("group-dropdown").click().byTestID(group).click() + } + cy.get(displayDropdownSelectors.topology).should('exist').click() + }, + isViewRendered: () => { + cy.get('[data-surface="true"]').should('exist') + }, + getOwnerNode: (resourceType: string, resourceName: string, timeout: number = 60000) => { + return cy.get(`g[data-id*="o=${resourceType}.${resourceName}"]`, { timeout }) + }, + selectGroupWithSlider: (group: Group) => { + let selector + switch (group) { + case 'Node': + selector = '#scope-step-0' + break + case 'Namespace': + selector = '#scope-step-1' + break + case 'Owner': + selector = '#scope-step-2' + break + case 'Resource': + selector = '#scope-step-3' + break + } + cy.get('#lastRefresh').invoke('text').then((lastRefresh) => { + cy.get(`${selector} > div:nth-child(2) > button`).click().then(slider => { + netflowPage.waitForLokiQuery() + cy.wait(3000) + cy.get('#lastRefresh').invoke('text').should('not.eq', lastRefresh) + }) + }) + } +} + +/** + * Helper function to setup topology view with optional namespace filter + * Navigates to topology tab, clears filters, optionally applies namespace filter, and sets display options + * @param namespace - Optional namespace to filter topology view by + */ +export function setupTopologyViewWithNamespaceFilter(namespace?: string) { + cy.clearLocalStorage() + netflowPage.visit() + cy.get('#tabs-container').contains('Topology').click() + + if (Cypress.$('[data-surface=true][transform="translate(0, 0) scale(1)]').length > 0) { + cy.get('[data-test="filters"] > [data-test="clear-all-filters-button"]').should('exist').click() + } + cy.get('#drawer').should('not.be.empty') + + // Add filter for namespace if provided + if (namespace) { + cy.byTestID("column-filter-toggle").click().get('.pf-c-dropdown__menu').should('be.visible') + cy.byTestID('group-0-toggle').should('exist').byTestID('src_namespace').click() + cy.byTestID('autocomplete-search').type(namespace + '{enter}{enter}') + cy.get('#filters div.custom-chip > p').should('contain.text', `${namespace}`) + } + + cy.byTestID("show-view-options-button").should('exist').click() + cy.get('[data-test-id="view-options-toolbar"]').should('be.visible') + cy.get('#display-dropdown-container').should('be.visible') + cy.get(displayDropdownSelectors.topology).should('exist').click() + cy.byTestID('layout-dropdown').click() + cy.byTestID('Grid').click() + cy.byTestID(topologySelectors.metricsDrop).should('exist').click().get('#sum').click() + cy.get(displayDropdownSelectors.topology).should('exist').click() + // Leave view options toolbar open for subsequent operations +} + +export namespace genSelectors { + export const timeDrop = "time-range-dropdown-dropdown" + export const refreshDrop = "refresh-dropdown-dropdown" + export const refreshBtn = 'refresh-button' + export const moreOpts = 'more-options-button' + export const fullScreen = '[data-test=fullscreen-button]' +} + +// Helper function to generate table header column selectors +const thCol = (columnId: string): string => `[data-test=th-${columnId}] button`; + +export namespace colSelectors { + export const columnsModal = '.modal-content' + export const save = 'columns-save-button' + export const resetDefault = 'columns-reset-button' + export const mac = thCol('Mac') + export const k8sOwner = thCol('K8S_OwnerObject') + export const ipPort = thCol('AddrPort') + export const protocol = thCol('Proto') + export const icmpType = thCol('IcmpType') + export const icmpCode = thCol('IcmpCode') + export const srcNodeIP = thCol('SrcK8S_HostIP') + export const srcNS = thCol('SrcK8S_Namespace') + export const dstNodeIP = thCol('DstK8S_HostIP') + export const direction = thCol('FlowDirection') + export const bytes = thCol('Bytes') + export const packets = thCol('Packets') + export const recordType = thCol('RecordType') + export const conversationID = thCol('_HashId') + export const flowRTT = thCol('TimeFlowRttMs') + export const dscp = thCol('Dscp') + export const dnsLatency = thCol('DNSLatency') + export const dnsResponseCode = thCol('DNSResponseCode') + export const dnsId = thCol('DNSId') + export const dnsError = thCol('DNSErrNo') + export const dnsName = thCol('DNSName') + export const srcZone = thCol('SrcZone') + export const dstZone = thCol('DstZone') + export const clusterName = thCol('ClusterName') +} + +export namespace exportSelectors { + export const overviewExport = '#export-button' + export const avgBytesRatesDropdown = '#top_avg_byte_rates div:nth-child(3) button' + export const tableExport = '#export-button' + export const exportButton = '[data-test=export-button]' + export const closeButton = '[data-test=export-close-button]' + export const topologyExport = '#export-button' +} + +export namespace filterSelectors { + export const filterGroupText = '.custom-chip > p' + export const filterNames = "#filters p" + export const compareDropdown = '#filter-compare-toggle-button' +} + +export namespace displayDropdownSelectors { + export const overview = '#display-dropdown-container .pf-c-select' + export const table = '#display-dropdown-container .pf-c-select' + export const topology = '#display-dropdown-container .pf-c-select' +} + +export namespace querySumSelectors { + export const queryStatsPanel = "#query-summary" + export const flowsCount = "#flowsCount" + export const bytesCount = "#bytesCount" + export const packetsCount = "#packetsCount" + export const bpsCount = "#bytesPerSecondsCount" + export const avgRTT = "#rttAvg" + export const dnsAvg = "#dnsAvg" + export const droppedBytesCount = "#pktDropBytesCount" + export const droppedBpsCount = "#pktDropBytesPerSecondsCount" + export const droppedPacketsCount = "#pktDropPacketsCount" +} + +// Helper functions for topology selectors +const topoLayer = (layerId: string): string => `[data-layer-id="${layerId}"]`; +const topoSvg = (attr: 'type' | 'kind', value: string, modifier: string = ''): string => + `g[data-${attr}="${value}"]${modifier}`; +const topoToggle = (toggleId: string): string => `#${toggleId}-switch`; + +export namespace topologySelectors { + export const metricsDrop = 'metricFunction-dropdown' + export const metricsFunctionDrop = 'metricFunction-dropdown' + export const metricsFunction = '#metricFunction' + export const metricsList = '#metricFunction > ul > li' + export const metricTypeDrop = 'metricType-dropdown' + export const metricType = '#metricType' + export const optsClose = '[aria-label="Close drawer panel"]' + export const nGroups = topoLayer('groups') + ' > g' + export const group = topoSvg('type', 'group') + export const node = topoSvg('kind', 'node', ':empty') + export const edge = topoSvg('kind', 'edge') + export const groupLayer = topoLayer('groups') + export const defaultLayer = topoLayer('default') + export const groupToggle = topoToggle('group-collapsed') + export const edgeToggle = topoToggle('edges') + export const labelToggle = topoToggle('edges-tag') + export const badgeToggle = topoToggle('badge') +} + +export namespace overviewSelectors { + export const panelsModal = '.modal-content' + export const resetDefault = 'panels-reset-button' + export const save = 'panels-save-button' + export const cancel = 'panels-cancel-button' + export const typeDrop = 'type-dropdown' + export const scopeDrop = 'scope-dropdown' + export const truncateDrop = 'truncate-dropdown' + export const managePanelsList = ['Top X average bytes rates (donut)', 'Top X bytes rates stacked with total (bars and lines)', 'Top X average packets rates (donut)', 'Top X packets rates stacked with total (bars and lines)'] + export const managePacketDropPanelsList = ['Top X packet dropped state stacked with total (donut or bars and lines)', 'Top X packet dropped cause stacked with total (donut or bars and lines)', 'Top X average dropped bytes rates (donut)', 'Top X dropped bytes rates stacked with total (bars and lines)', 'Top X average dropped packets rates (donut)', 'Top X dropped packets rates stacked with total (bars and lines)'] + export const manageDNSTrackingPanelsList = ['Top X DNS response code with total (donut or bars and lines)', 'Top X average DNS latencies with overall (donut or lines)', 'Bottom X minimum DNS latencies with overall (donut or lines)', 'Top X maximum DNS latencies with overall (donut or lines)', 'Top X 90th percentile DNS latencies with overall (donut or lines)'] + export const manageFlowRTTPanelsList = ['Top X average TCP smoothed Round Trip Time with overall (donut or lines)', 'Bottom X minimum TCP smoothed Round Trip Time with overall (donut or lines)', 'Top X maximum TCP smoothed Round Trip Time with overall (donut or lines)', 'Top X 90th percentile TCP smoothed Round Trip Time with overall (donut or lines)', 'Top X 99th percentile TCP smoothed Round Trip Time with overall (donut or lines)'] + export const defaultPanels = ['Top 5 average bytes rates', 'Top 5 bytes rates stacked with total'] + export const defaultPacketDropPanels = ['Top 5 packet dropped state stacked with total', 'Top 5 packet dropped cause stacked with total', 'Top 5 average dropped packets rates', 'Top 5 dropped packets rates stacked with total'] + export const defaultDNSTrackingPanels = ['Top 5 DNS response code', 'Top 5 average DNS latencies with overall', 'Top 5 90th percentile DNS latencies'] + export const defaultFlowRTTPanels = ['Top 5 average TCP smoothed Round Trip Time with overall', 'Bottom 5 minimum TCP smoothed Round Trip Time', 'Top 5 90th percentile TCP smoothed Round Trip Time'] + export const allPanels = defaultPanels.concat(['Top 5 average packets rates', 'Top 5 packets rates']) + export const allPacketDropPanels = defaultPacketDropPanels.concat(['Top 5 average dropped bytes rates', 'Top 5 dropped bytes rates stacked with total']) + export const allDNSTrackingPanels = defaultDNSTrackingPanels.concat(['Bottom 5 minimum DNS latencies', 'Top 5 maximum DNS latencies']) + export const allFlowRTTPanels = defaultFlowRTTPanels.concat(['Top 5 maximum TCP smoothed Round Trip Time', 'Top 5 99th percentile TCP smoothed Round Trip Time']) +} + +export const loadTimes = { + "overview": 8500, + "table": 5000, + "topology": 5000 +} + +export const memoryUsage = { + "overview": 300, + "table": 450, + "topology": 360 +} + +export namespace histogramSelectors { + export const timeRangeContainer = "#chart-histogram .histogram-range-container" + export const zoomin = '[data-test="histogram-zoom-in"]' + export const zoomout = '[data-test="histogram-zoom-out"]' + export const singleRightShift = '[data-test="histogram-single-right"]' + export const doubleRightShift = '[data-test="histogram-double-right"]' + export const singleLeftShift = '[data-test="histogram-single-left"]' + export const doubleLeftShift = '[data-test="histogram-double-left"]' +} + +Cypress.Commands.add('showAdvancedOptions', () => { + cy.get('#show-view-options-button') + .then(function ($button) { + if ($button.text() === 'Hide advanced options') { + return; + } else { + cy.get('#show-view-options-button').click(); + } + }) +}); + +Cypress.Commands.add('checkPanelsNum', (panels = 2) => { + cy.get('#overview-flex').find('.overview-card').its('length').should('eq', panels); +}); + +Cypress.Commands.add('checkPanel', (panelName) => { + for (let i = 0; i < panelName.length; i++) { + cy.get('#overview-flex', { timeout: 60000 }).contains(panelName[i]); + cy.get('[data-test-metrics]', { timeout: 120000 }).its('length').should('gt', 0); + } +}); + +Cypress.Commands.add('openPanelsModal', () => { + cy.showAdvancedOptions(); + cy.byTestID('manage-overview-panels-button').should('exist').click(); + cy.get('#overview-panels-modal').should('exist'); +}); + +Cypress.Commands.add('openColumnsModal', () => { + cy.showAdvancedOptions(); + cy.get('#manage-columns-button').click(); + cy.get('#table-column-management').should('exist'); +}); + +Cypress.Commands.add('checkPopupItems', (id, names) => { + for (let i = 0; i < names.length; i++) { + cy.get(id).contains('label', names[i]).should('exist'); + } +}); + +Cypress.Commands.add('selectPopupItems', (id, names) => { + for (let i = 0; i < names.length; i++) { + cy.get(id).contains(names[i]) + .parent().find('input[type="checkbox"]').click(); + } +}); + +Cypress.Commands.add('checkQuerySummary', (metric) => { + // parseFloat handles formats: "123 ms", "123+ ms", "1.5k ms", "1.5k+ ms" + const num = parseFloat(metric.text()) + expect(num).to.be.greaterThan(0) +}); + +Cypress.Commands.add('changeQueryOption', (name: string) => { + cy.get('#filter-toolbar-search-filters').contains('Query options').click(); + cy.get('#query-options-dropdown').contains(name).click(); + cy.get('#filter-toolbar-search-filters').contains('Query options').click(); +}); + +Cypress.Commands.add('visitNetflowTrafficTab', (page) => { + cy.visit(page) + cy.get('[role="gridcell"]').eq(0).should('exist').within(() => { + cy.get('a').should('exist').click() + }) + cy.byLegacyTestID('horizontal-link-Network Traffic').should('exist').click() + + // validate netflow-traffic page shows values + cy.checkNetflowTraffic() +}); + +Cypress.Commands.add('checkNetflowTraffic', (loki = "Enabled") => { + // overview panels + cy.get('li.overviewTabButton').should('exist').click({ force: true }) + netflowPage.setAutoRefresh() + cy.wait(2000) + cy.checkPanel(overviewSelectors.defaultPanels) + + // table view + if (loki == "Disabled") { + // verify netflow traffic page is disabled + cy.get('li.tableTabButton > button').should('exist').should('have.class', 'pf-m-aria-disabled') + } + else { + cy.get('li.tableTabButton').should('exist').click() + cy.wait(1000) + cy.byTestID("table-composable", { timeout: 60000 }).should('exist') + } + + // topology view + cy.get('li.topologyTabButton').should('exist').click() + cy.wait(2000) + cy.get('#drawer', { timeout: 60000 }).should('not.be.empty') +}); diff --git a/web/cypress/views/netobserv.ts b/web/cypress/views/netobserv.ts new file mode 100644 index 000000000..2f0088660 --- /dev/null +++ b/web/cypress/views/netobserv.ts @@ -0,0 +1,245 @@ +import { catalogSources } from "../views/catalog-source" +import { operatorHubPage } from "../views/operator-hub-page" + +declare global { + namespace Cypress { + interface Chainable { + enableFLPMetrics(tag: string[]): Chainable + checkStorageClass(context: Mocha.Context): Chainable + deployFlowcollectorFromFixture(fixtureFile: string): Chainable + } + } +} + +// Types +type FlowCollectorParameter = + | 'PacketDrop' + | 'FlowRTT' + | 'DNSTracking' + | 'LokiDisabled' + | 'Conversations' + | 'ZonesAndMultiCluster' + | 'BytesMetrics' + | 'PacketsMetrics' + | 'SubnetLabels' + | 'NetworkAlertHealth' + +// Constants +export const project = "netobserv" + +// Environment variables +const catSrc = Cypress.env('NOO_CATALOG_SOURCE') +const catSrcImage: string = Cypress.env('NOO_CS_IMAGE') + +// Default catalog images +const DEFAULT_UPSTREAM_IMAGE = 'quay.io/netobserv/network-observability-operator-catalog:v0.0.0-sha-main' +const DEFAULT_DOWNSTREAM_IMAGE = "quay.io/redhat-user-workloads/ocp-network-observab-tenant/catalog-ystream:latest" + +// FlowCollector fixture paths +const FIXTURE_PATHS = { + default: 'cypress/fixtures/flowcollector/fc.yaml', + bytesMetrics: 'cypress/fixtures/flowcollector/fc_bytesMetrics.yaml', + packetsMetrics: 'cypress/fixtures/flowcollector/fc_packetsMetrics.yaml', + packetDrop: 'cypress/fixtures/flowcollector/fc_packetDrop.yaml', + dnsTracking: 'cypress/fixtures/flowcollector/fc_DNSTracking.yaml', + flowRTT: 'cypress/fixtures/flowcollector/fc_flowRTT.yaml', + lokiDisabled: 'cypress/fixtures/flowcollector/fc_lokiDisabled.yaml', + conversations: 'cypress/fixtures/flowcollector/fc_conversations.yaml', + subnetLabels: 'cypress/fixtures/flowcollector/fc_subnetLabel.yaml', + zonesMultiCluster: 'cypress/fixtures/flowcollector/fc_zoneMulticluster.yaml', + networkAlertHealth: 'cypress/fixtures/flowcollector/fc_networkalert.yaml' +} as const + +export const Operator = { + name: () => { + if (`${Cypress.env('NOO_CATALOG_SOURCE')}` == "upstream") { + return "NetObserv Operator" + } + else { + return "Network Observability" + } + }, + install_catalogsource: () => { + let catalogDisplayName = "Production Operators" + let catalogImg: string + let catalogSource: string + + if (catSrc == "upstream") { + catalogImg = catSrcImage ? catSrcImage : DEFAULT_UPSTREAM_IMAGE + catalogSource = "netobserv-test" + catalogDisplayName = "NetObserv QE" + catalogSources.createCustomCatalog(catalogImg, catalogSource, catalogDisplayName) + } + else { + catalogImg = catSrcImage ? catSrcImage : DEFAULT_DOWNSTREAM_IMAGE + catalogSource = "netobserv-konflux-fbc" + catalogDisplayName = "NetObserv Konflux" + catalogSources.createCustomCatalog(catalogImg, catalogSource, catalogDisplayName) + // deploy ImageDigetMirrorSet + cy.adminCLI('oc apply -f cypress/fixtures/image-digest-mirror-set.yaml') + } + return catalogSource + }, + install: () => { + if (`${Cypress.env('SKIP_NOO_INSTALL')}` == "true") { + return null + } + var catalogSource = Operator.install_catalogsource() + + cy.visit(`/k8s/ns/openshift-netobserv-operator/operators.coreos.com~v1alpha1~ClusterServiceVersion`); + cy.reload() + // if user still does not have admin access + // try few more times + cy.contains("openshift-netobserv-operator").should('be.visible') + + const waitForAccess = (retries = 15) => { + cy.get("div.loading-box").should('be.visible') + cy.document().then(doc => { + if (doc.querySelectorAll('.co-disabled').length > 0 && retries > 0) { + cy.log(`user does not have access, retries left: ${retries}`) + cy.wait(5000) + cy.reload(true) + waitForAccess(retries - 1) + } + }) + } + waitForAccess() + // don't install operator if its already installed + cy.get("div.loading-box").should('be.visible').then(loading => { + if (Cypress.$('td[role="gridcell"]').length == 0) { + if (catSrc == "upstream") { + // metrics checkbox is not available for upstream operators + operatorHubPage.install("netobserv-operator", catalogSource, false) + } else { + operatorHubPage.install("netobserv-operator", catalogSource, true) + } + } + }) + }, + visitFlowcollector: () => { + cy.visit('k8s/ns/openshift-netobserv-operator/operators.coreos.com~v1alpha1~ClusterServiceVersion') + const selector = '[data-test-operator-row="' + Operator.name() + '"]' + cy.get(selector).invoke('attr', 'href').then(href => { + cy.visit(href as string) + cy.reload() + }) + + cy.contains('Flow Collector').invoke('attr', 'href').then(href => { + cy.visit(href as string) + }) + }, + createFlowcollector: (parameters?: FlowCollectorParameter) => { + Operator.visitFlowcollector() + cy.get('div.loading-box__loaded:nth-child(2)').should('exist') + cy.wait(3000) + cy.get("#yaml-create").should('exist').then(() => { + if ((Cypress.$('td[role="gridcell"]').length > 0) && (parameters != null)) { + Operator.deleteFlowCollector() + // come back to flowcollector tab after deletion + Operator.visitFlowcollector() + } + }) + // don't create flowcollector if already exists + cy.get('div.loading-box:nth-child(1)').should('be.visible').then(() => { + if (Cypress.$('td[role="gridcell"]').length == 0) { + cy.log("Deploying flowcollector") + switch (parameters) { + case "PacketDrop": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.packetDrop) + break; + case "FlowRTT": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.flowRTT) + break; + case "DNSTracking": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.dnsTracking) + break; + case "LokiDisabled": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.lokiDisabled) + break; + case "Conversations": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.conversations) + break; + case "ZonesAndMultiCluster": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.zonesMultiCluster) + break; + case "BytesMetrics": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.bytesMetrics) + break; + case "PacketsMetrics": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.packetsMetrics) + break; + case "SubnetLabels": + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.subnetLabels) + break; + case "NetworkAlertHealth": + // Flowcollector deployed with DNSTracking enabled + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.networkAlertHealth) + break; + default: + cy.deployFlowcollectorFromFixture(FIXTURE_PATHS.default) + break; + } + cy.byTestID('refresh-web-console', { timeout: 80000 }).should('exist') + cy.reload(true) + if (parameters !== "LokiDisabled") { + cy.adminCLI(`oc wait --for=condition=Ready pod -l app=loki -n ${project} --timeout=180s`) + } + Operator.visitFlowcollector() + cy.byTestID('status-text', { timeout: 120000 }).should('exist').should('contain.text', 'Ready') + } + }) + }, + deleteFlowCollector: () => { + cy.adminCLI(`oc delete flowcollector cluster --ignore-not-found`) + }, + uninstall: () => { + cy.visit('k8s/all-namespaces/operators.coreos.com~v1alpha1~ClusterServiceVersion') + + cy.contains(Operator.name()).should('exist').invoke('attr', 'href').then(href => { + cy.visit(href) + }) + cy.get('.co-actions-menu > .pf-c-dropdown__toggle').should('exist').click() + cy.byTestActionID('Uninstall Operator').should('exist').click() + cy.byTestID('confirm-action').should('exist').click() + }, + deleteCatalogSource: (catalogSource: string) => { + cy.visit('k8s/cluster/config.openshift.io~v1~OperatorHub/cluster/sources') + cy.byTestID(catalogSource).should('exist').invoke('attr', 'href').then(href => { + cy.visit(href) + }) + cy.get('.co-actions-menu > .pf-c-dropdown__toggle').should('exist').click() + cy.byTestActionID('Delete CatalogSource').should('exist').click() + cy.byTestID('confirm-action').should('exist').click() + } +} + +Cypress.Commands.add('enableFLPMetrics', (tags: string[]) => { + for (let i = 0; i < tags.length; i++) { + const tag = tags[i]; + cy.get('#root_spec_processor_metrics_includeList_add-btn').should('exist').click() + cy.get(`#root_spec_processor_metrics_includeList_${i}`).should('exist').click().then(metrics => { + cy.get(`#${tag}-link`).should('exist').click() + }) + } +}); + +Cypress.Commands.add('checkStorageClass', (context: Mocha.Context) => { + let storageClassCheck = false + const kubeconfig = Cypress.env('KUBECONFIG_PATH'); + expect(kubeconfig, 'KUBECONFIG_PATH').to.be.a('string').and.not.be.empty + cy.exec(`oc get sc --kubeconfig ${kubeconfig}`).then(result => { + if (result.stderr.includes('No resources found')) { + cy.log('StorageClass not deployed, skipping') + storageClassCheck = true + } + cy.wrap(storageClassCheck).then(scCheck => { + if (scCheck) { + context.skip() + } + }) + }) +}); + +Cypress.Commands.add('deployFlowcollectorFromFixture', (fixtureFile: string) => { + cy.adminCLI(`oc apply -f ${fixtureFile}`) +}) diff --git a/web/cypress/views/operator-hub-page.ts b/web/cypress/views/operator-hub-page.ts new file mode 100644 index 000000000..650dc42e8 --- /dev/null +++ b/web/cypress/views/operator-hub-page.ts @@ -0,0 +1,24 @@ +export const operatorHubPage = { + // pass operator name that matches the Title on UI + install: (name: string, csName: string, metrics: boolean = false) => { + cy.visit(`/operatorhub/subscribe?pkg=${name}&catalog=${csName}&catalogNamespace=openshift-marketplace&targetNamespace=undefined`); + // ignore warning pop up for community operators + cy.get('body').then(body => { + if (body.find('.modal-content').length) { + cy.byTestID('confirm-action').click() + } + }) + if (metrics) { + cy.get('#enable-monitoring-checkbox').should('exist').check() + } + cy.byTestID('Enable-radio-input').click() + cy.byTestID('install-operator').trigger('click') + cy.get('#operator-install-page').should('exist') + + cy.visit('k8s/all-namespaces/operators.coreos.com~v1alpha1~ClusterServiceVersion') + + cy.contains(name).parents('tr').within(() => { + cy.byTestID("status-text", { timeout: 180000 }).should('have.text', "Succeeded") + }) + } +}; diff --git a/web/cypress/views/tour.ts b/web/cypress/views/tour.ts new file mode 100644 index 000000000..cec29ad53 --- /dev/null +++ b/web/cypress/views/tour.ts @@ -0,0 +1,9 @@ +export const guidedTour = { + close: () => { + cy.get('body').then(() => { + if (Cypress.$("#guided-tour-modal").length > 0) { + cy.byTestID('tour-step-footer-secondary').contains('Skip tour').click(); + } + }); + } +}; diff --git a/web/package-lock.json b/web/package-lock.json index 2e041de95..2d74935c1 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -34,6 +34,7 @@ "@babel/preset-env": "^7.17.12", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", + "@cypress/grep": "^4.1.1", "@openshift-console/dynamic-plugin-sdk": "0.0.19", "@openshift-console/dynamic-plugin-sdk-webpack": "0.0.10", "@testing-library/react": "^12.1.2", @@ -58,7 +59,8 @@ "babel-preset-react": "^6.24.1", "copy-webpack-plugin": "13.0.1", "css-loader": "^6.5.1", - "cypress": "13.6.5", + "cypress": "^13.6.5", + "cypress-multi-reporters": "^2.0.5", "enzyme": "3.11.0", "eslint": "8.3.0", "eslint-plugin-react": "7.27.1", @@ -72,6 +74,7 @@ "jsdom-global": "3.0.2", "mini-css-extract-plugin": "^2.6.0", "mobx": "^5.15.7", + "mocha-junit-reporter": "^2.2.1", "parse-duration": "^1.1.0", "prettier": "^2.5.1", "prettier-plugin-organize-imports": "^3.2.4", @@ -412,10 +415,11 @@ } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.17.12", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz", - "integrity": "sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -487,19 +491,21 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -557,10 +563,14 @@ } }, "node_modules/@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -948,12 +958,13 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.17.12", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz", - "integrity": "sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.17.12" + "@babel/helper-plugin-utils": "^7.28.6" }, "engines": { "node": ">=6.9.0" @@ -1883,14 +1894,14 @@ } }, "node_modules/@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" }, "engines": { "node": ">=6.9.0" @@ -1934,6 +1945,21 @@ "@jridgewell/sourcemap-codec": "^1.4.10" } }, + "node_modules/@cypress/grep": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@cypress/grep/-/grep-4.1.1.tgz", + "integrity": "sha512-KDM5kOJIQwdn7BGrmejCT34XCMLt8Bahd8h6RlRTYahs2gdc1wHq6XnrqlasF72GzHw0yAzCaH042hRkqu1gFw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "find-test-names": "^1.28.18", + "globby": "^11.0.4" + }, + "peerDependencies": { + "cypress": ">=10" + } + }, "node_modules/@cypress/request": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", @@ -2069,6 +2095,116 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -3179,6 +3315,18 @@ } } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "peer": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@remix-run/router": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.7.0.tgz", @@ -5781,6 +5929,14 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, + "node_modules/browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true, + "license": "ISC", + "peer": true + }, "node_modules/browserslist": { "version": "4.21.10", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", @@ -6032,6 +6188,16 @@ "node": ">=10" } }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, "node_modules/check-more-types": { "version": "2.24.0", "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", @@ -6643,10 +6809,11 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -6656,6 +6823,16 @@ "node": ">= 8" } }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, "node_modules/css-loader": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz", @@ -6757,6 +6934,7 @@ "integrity": "sha512-2NxSDcO2zHw5kTcosc6dzv2zppEqiXrFFhZw5cx/EWrSNZABTzpr/EyvYzGgrWm46o5173JUfuJfDQcaiZZPVQ==", "dev": true, "hasInstallScript": true, + "license": "MIT", "dependencies": { "@cypress/request": "^3.0.0", "@cypress/xvfb": "^1.2.4", @@ -6808,6 +6986,24 @@ "node": "^16.0.0 || ^18.0.0 || >=20.0.0" } }, + "node_modules/cypress-multi-reporters": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cypress-multi-reporters/-/cypress-multi-reporters-2.0.5.tgz", + "integrity": "sha512-5ReXlNE7C/9/rpDI3z0tAJbPXsTHK7P3ogvUtBntQlmctRQ+sSMts7dIQY5MTb0XfBSge3CuwvNvaoqtw90KSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "lodash": "^4.17.21", + "semver": "^7.6.3" + }, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "mocha": ">=3.1.2" + } + }, "node_modules/cypress/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -7490,12 +7686,13 @@ "dev": true }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, + "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -7908,6 +8105,14 @@ "stream-shift": "^1.0.0" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT", + "peer": true + }, "node_modules/ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -9204,6 +9409,39 @@ "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, + "node_modules/find-test-names": { + "version": "1.29.19", + "resolved": "https://registry.npmjs.org/find-test-names/-/find-test-names-1.29.19.tgz", + "integrity": "sha512-fSO2GXgOU6dH+FdffmRXYN/kLdnd8zkBGIZrKsmAdfLSFUUDLpDFF7+F/h+wjmjDWQmMgD8hPfJZR+igiEUQHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.2", + "@babel/plugin-syntax-jsx": "^7.27.1", + "acorn-walk": "^8.2.0", + "debug": "^4.3.3", + "simple-bin-help": "^1.8.0", + "tinyglobby": "^0.2.13" + }, + "bin": { + "find-test-names": "bin/find-test-names.js", + "print-tests": "bin/print-tests.js", + "update-test-count": "bin/update-test-count.js" + } + }, + "node_modules/find-test-names/node_modules/acorn-walk": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", @@ -9217,6 +9455,17 @@ "node": ">=8" } }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true, + "bin": { + "flat": "cli.js" + } + }, "node_modules/flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", @@ -9289,6 +9538,38 @@ } } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "peer": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -11171,6 +11452,23 @@ "node": ">=8" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "peer": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/jest": { "version": "27.4.4", "resolved": "https://registry.npmjs.org/jest/-/jest-27.4.4.tgz", @@ -13577,16 +13875,12 @@ } }, "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } + "license": "ISC", + "peer": true }, "node_modules/lunr": { "version": "2.3.9", @@ -13676,6 +13970,18 @@ "node": ">= 0.4" } }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -13918,6 +14224,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "dev": true, + "license": "BlueOak-1.0.0", + "peer": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mkdirp": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", @@ -13948,6 +14265,329 @@ "url": "https://opencollective.com/mobx" } }, + "node_modules/mocha": { + "version": "11.7.5", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.5.tgz", + "integrity": "sha512-mTT6RgopEYABzXWFx+GcJ+ZQ32kp4fMf0xvpZIIfSq9Z8lC/++MtcCnQ9t5FP2veYEP95FIYSvW+U9fV4xrlig==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "browser-stdout": "^1.3.1", + "chokidar": "^4.0.1", + "debug": "^4.3.5", + "diff": "^7.0.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^10.4.5", + "he": "^1.2.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^9.0.5", + "ms": "^2.1.3", + "picocolors": "^1.1.1", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^9.2.0", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1", + "yargs-unparser": "^2.0.0" + }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/mocha-junit-reporter": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-2.2.1.tgz", + "integrity": "sha512-iDn2tlKHn8Vh8o4nCzcUVW4q7iXp7cC4EB78N0cDHIobLymyHNwe0XG8HEHHjc3hJlXm0Vy6zcrxaIhnI2fWmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "md5": "^2.3.0", + "mkdirp": "^3.0.0", + "strip-ansi": "^6.0.1", + "xml": "^1.0.1" + }, + "peerDependencies": { + "mocha": ">=2.2.5" + } + }, + "node_modules/mocha-junit-reporter/node_modules/mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true, + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/mocha/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/mocha/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/mocha/node_modules/diff": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz", + "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==", + "dev": true, + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/mocha/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/mocha/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/minimatch": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", + "dev": true, + "license": "ISC", + "peer": true, + "dependencies": { + "brace-expansion": "^2.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/mocha/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/mocha/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/mocha/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "peer": true, + "engines": { + "node": ">=12" + } + }, "node_modules/moo": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz", @@ -13964,10 +14604,11 @@ } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" }, "node_modules/multicast-dns": { "version": "6.2.3", @@ -14683,6 +15324,14 @@ "node": ">=6" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0", + "peer": true + }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -14802,6 +15451,24 @@ "integrity": "sha1-BrJhE/Vr6rBCVFojv6iAA8ysJg8=", "dev": true }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "peer": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/path-to-regexp": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", @@ -14838,10 +15505,11 @@ "dev": true }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -16419,13 +17087,11 @@ } }, "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -16490,12 +17156,6 @@ "node": ">= 0.8" } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, "node_modules/send/node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -16988,6 +17648,16 @@ "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", "dev": true }, + "node_modules/simple-bin-help": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/simple-bin-help/-/simple-bin-help-1.8.0.tgz", + "integrity": "sha512-0LxHn+P1lF5r2WwVB/za3hLRIsYoLaNq1CXqjbrs3ZvLuvlWnRKrUjEWzV7umZL7hpQ7xULiQMV+0iXdRa5iFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, "node_modules/sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -17268,6 +17938,23 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/string.prototype.matchall": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", @@ -17342,6 +18029,21 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -17747,15 +18449,6 @@ "node": ">=0.10.0" } }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -19538,6 +20231,14 @@ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true }, + "node_modules/workerpool": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-9.3.4.tgz", + "integrity": "sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==", + "dev": true, + "license": "Apache-2.0", + "peer": true + }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -19555,6 +20256,65 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT", + "peer": true + }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -19627,6 +20387,13 @@ } } }, + "node_modules/xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "dev": true, + "license": "MIT" + }, "node_modules/xml-name-validator": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", @@ -19660,12 +20427,6 @@ "node": ">=10" } }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", @@ -19693,6 +20454,62 @@ "node": ">=10" } }, + "node_modules/yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs-unparser/node_modules/decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yargs-unparser/node_modules/is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" + } + }, "node_modules/yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", @@ -19711,6 +20528,20 @@ "engines": { "node": ">=6" } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } } }, "dependencies": { @@ -19961,9 +20792,9 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.17.12", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz", - "integrity": "sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", "dev": true }, "@babel/helper-remap-async-to-generator": { @@ -20018,15 +20849,15 @@ } }, "@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true }, "@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true }, "@babel/helper-validator-option": { @@ -20070,10 +20901,13 @@ } }, "@babel/parser": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", - "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==", - "dev": true + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dev": true, + "requires": { + "@babel/types": "^7.29.0" + } }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.17.12", @@ -20326,12 +21160,12 @@ } }, "@babel/plugin-syntax-jsx": { - "version": "7.17.12", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.17.12.tgz", - "integrity": "sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==", + "version": "7.28.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.17.12" + "@babel/helper-plugin-utils": "^7.28.6" } }, "@babel/plugin-syntax-logical-assignment-operators": { @@ -20964,14 +21798,13 @@ } }, "@babel/types": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", - "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "version": "7.29.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" } }, "@bcoe/v8-coverage": { @@ -21008,6 +21841,17 @@ } } }, + "@cypress/grep": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@cypress/grep/-/grep-4.1.1.tgz", + "integrity": "sha512-KDM5kOJIQwdn7BGrmejCT34XCMLt8Bahd8h6RlRTYahs2gdc1wHq6XnrqlasF72GzHw0yAzCaH042hRkqu1gFw==", + "dev": true, + "requires": { + "debug": "^4.3.4", + "find-test-names": "^1.28.18", + "globby": "^11.0.4" + } + }, "@cypress/request": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cypress/request/-/request-3.0.1.tgz", @@ -21125,6 +21969,78 @@ "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", "dev": true }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "peer": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "peer": true + }, + "ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "peer": true + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "peer": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "peer": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^6.2.2" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "peer": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -21996,6 +22912,14 @@ } } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "peer": true + }, "@remix-run/router": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.7.0.tgz", @@ -24194,6 +25118,13 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true, + "peer": true + }, "browserslist": { "version": "4.21.10", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", @@ -24353,6 +25284,12 @@ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "dev": true + }, "check-more-types": { "version": "2.24.0", "resolved": "https://registry.npmjs.org/check-more-types/-/check-more-types-2.24.0.tgz", @@ -24822,9 +25759,9 @@ } }, "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -24832,6 +25769,12 @@ "which": "^2.0.1" } }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "dev": true + }, "css-loader": { "version": "6.5.1", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.5.1.tgz", @@ -25061,6 +26004,17 @@ } } }, + "cypress-multi-reporters": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cypress-multi-reporters/-/cypress-multi-reporters-2.0.5.tgz", + "integrity": "sha512-5ReXlNE7C/9/rpDI3z0tAJbPXsTHK7P3ogvUtBntQlmctRQ+sSMts7dIQY5MTb0XfBSge3CuwvNvaoqtw90KSQ==", + "dev": true, + "requires": { + "debug": "^4.4.0", + "lodash": "^4.17.21", + "semver": "^7.6.3" + } + }, "d3": { "version": "5.16.0", "resolved": "https://registry.npmjs.org/d3/-/d3-5.16.0.tgz", @@ -25559,12 +26513,12 @@ "dev": true }, "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "requires": { - "ms": "2.1.2" + "ms": "^2.1.3" } }, "decamelize": { @@ -25885,6 +26839,13 @@ "stream-shift": "^1.0.0" } }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "peer": true + }, "ecc-jsbn": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", @@ -26865,6 +27826,31 @@ "pkg-dir": "^4.1.0" } }, + "find-test-names": { + "version": "1.29.19", + "resolved": "https://registry.npmjs.org/find-test-names/-/find-test-names-1.29.19.tgz", + "integrity": "sha512-fSO2GXgOU6dH+FdffmRXYN/kLdnd8zkBGIZrKsmAdfLSFUUDLpDFF7+F/h+wjmjDWQmMgD8hPfJZR+igiEUQHQ==", + "dev": true, + "requires": { + "@babel/parser": "^7.27.2", + "@babel/plugin-syntax-jsx": "^7.27.1", + "acorn-walk": "^8.2.0", + "debug": "^4.3.3", + "simple-bin-help": "^1.8.0", + "tinyglobby": "^0.2.13" + }, + "dependencies": { + "acorn-walk": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", + "dev": true, + "requires": { + "acorn": "^8.11.0" + } + } + } + }, "find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", @@ -26875,6 +27861,13 @@ "path-exists": "^4.0.0" } }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "peer": true + }, "flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", @@ -26925,6 +27918,26 @@ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz", "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "peer": true, + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "peer": true + } + } + }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -28306,6 +29319,17 @@ "istanbul-lib-report": "^3.0.0" } }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "peer": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "jest": { "version": "27.4.4", "resolved": "https://registry.npmjs.org/jest/-/jest-27.4.4.tgz", @@ -30122,13 +31146,11 @@ } }, "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "requires": { - "yallist": "^4.0.0" - } + "peer": true }, "lunr": { "version": "2.3.9", @@ -30195,6 +31217,17 @@ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" }, + "md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "dev": true, + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", @@ -30367,6 +31400,13 @@ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true }, + "minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "dev": true, + "peer": true + }, "mkdirp": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", @@ -30387,6 +31427,218 @@ "resolved": "https://registry.npmjs.org/mobx/-/mobx-5.15.7.tgz", "integrity": "sha512-wyM3FghTkhmC+hQjyPGGFdpehrcX1KOXsDuERhfK2YbJemkUhEB+6wzEN639T21onxlfYBmriA1PFnvxTUhcKw==" }, + "mocha": { + "version": "11.7.5", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.7.5.tgz", + "integrity": "sha512-mTT6RgopEYABzXWFx+GcJ+ZQ32kp4fMf0xvpZIIfSq9Z8lC/++MtcCnQ9t5FP2veYEP95FIYSvW+U9fV4xrlig==", + "dev": true, + "peer": true, + "requires": { + "browser-stdout": "^1.3.1", + "chokidar": "^4.0.1", + "debug": "^4.3.5", + "diff": "^7.0.0", + "escape-string-regexp": "^4.0.0", + "find-up": "^5.0.0", + "glob": "^10.4.5", + "he": "^1.2.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "log-symbols": "^4.1.0", + "minimatch": "^9.0.5", + "ms": "^2.1.3", + "picocolors": "^1.1.1", + "serialize-javascript": "^6.0.2", + "strip-json-comments": "^3.1.1", + "supports-color": "^8.1.1", + "workerpool": "^9.2.0", + "yargs": "^17.7.2", + "yargs-parser": "^21.1.1", + "yargs-unparser": "^2.0.0" + }, + "dependencies": { + "brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", + "dev": true, + "peer": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "peer": true, + "requires": { + "readdirp": "^4.0.1" + } + }, + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "peer": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "diff": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-7.0.0.tgz", + "integrity": "sha512-PJWHUb1RFevKCwaFA9RlG5tCd+FO5iRh9A8HEtkmBH2Li03iJriB6m6JIN4rGz3K3JLawI7/veA1xzRKP6ISBw==", + "dev": true, + "peer": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "peer": true + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "peer": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "dev": true, + "peer": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "peer": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "peer": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "minimatch": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", + "dev": true, + "peer": true, + "requires": { + "brace-expansion": "^2.0.2" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "peer": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "peer": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "peer": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "peer": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "peer": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + } + }, + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "peer": true + } + } + }, + "mocha-junit-reporter": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-2.2.1.tgz", + "integrity": "sha512-iDn2tlKHn8Vh8o4nCzcUVW4q7iXp7cC4EB78N0cDHIobLymyHNwe0XG8HEHHjc3hJlXm0Vy6zcrxaIhnI2fWmw==", + "dev": true, + "requires": { + "debug": "^4.3.4", + "md5": "^2.3.0", + "mkdirp": "^3.0.0", + "strip-ansi": "^6.0.1", + "xml": "^1.0.1" + }, + "dependencies": { + "mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "dev": true + } + } + }, "moo": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz", @@ -30400,9 +31652,9 @@ "dev": true }, "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true }, "multicast-dns": { @@ -30939,6 +32191,13 @@ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "peer": true + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -31037,6 +32296,17 @@ "integrity": "sha1-BrJhE/Vr6rBCVFojv6iAA8ysJg8=", "dev": true }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "peer": true, + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + } + }, "path-to-regexp": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", @@ -31070,9 +32340,9 @@ "dev": true }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "picomatch": { @@ -32251,13 +33521,10 @@ } }, "semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "dev": true }, "send": { "version": "0.19.0", @@ -32309,12 +33576,6 @@ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, "statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", @@ -32712,6 +33973,12 @@ "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==", "dev": true }, + "simple-bin-help": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/simple-bin-help/-/simple-bin-help-1.8.0.tgz", + "integrity": "sha512-0LxHn+P1lF5r2WwVB/za3hLRIsYoLaNq1CXqjbrs3ZvLuvlWnRKrUjEWzV7umZL7hpQ7xULiQMV+0iXdRa5iFg==", + "dev": true + }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -32948,6 +34215,18 @@ "strip-ansi": "^6.0.1" } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "peer": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, "string.prototype.matchall": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", @@ -33004,6 +34283,16 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "peer": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -33301,12 +34590,6 @@ "is-negated-glob": "^1.0.0" } }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", - "dev": true - }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -34654,6 +35937,13 @@ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true }, + "workerpool": { + "version": "9.3.4", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-9.3.4.tgz", + "integrity": "sha512-TmPRQYYSAnnDiEB0P/Ytip7bFGvqnSU6I2BcuSw7Hx+JSg/DsUi5ebYfc8GYaSdpuvOcEs6dXxPurOYpe9QFwg==", + "dev": true, + "peer": true + }, "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", @@ -34691,6 +35981,47 @@ } } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "peer": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "peer": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "peer": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "peer": true + } + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -34716,6 +36047,12 @@ "dev": true, "requires": {} }, + "xml": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", + "integrity": "sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==", + "dev": true + }, "xml-name-validator": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", @@ -34740,12 +36077,6 @@ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", @@ -34767,6 +36098,42 @@ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true }, + "yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "peer": true, + "requires": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "peer": true + }, + "decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true, + "peer": true + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true, + "peer": true + } + } + }, "yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", @@ -34782,6 +36149,13 @@ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "peer": true } } } diff --git a/web/package.json b/web/package.json index bcc831867..90aa5083f 100644 --- a/web/package.json +++ b/web/package.json @@ -32,6 +32,7 @@ "@babel/preset-env": "^7.17.12", "@babel/preset-react": "^7.17.12", "@babel/preset-typescript": "^7.17.12", + "@cypress/grep": "^4.1.1", "@openshift-console/dynamic-plugin-sdk": "0.0.19", "@openshift-console/dynamic-plugin-sdk-webpack": "0.0.10", "@testing-library/react": "^12.1.2", @@ -56,7 +57,8 @@ "babel-preset-react": "^6.24.1", "copy-webpack-plugin": "13.0.1", "css-loader": "^6.5.1", - "cypress": "13.6.5", + "cypress": "^13.6.5", + "cypress-multi-reporters": "^2.0.5", "enzyme": "3.11.0", "eslint": "8.3.0", "eslint-plugin-react": "7.27.1", @@ -70,6 +72,7 @@ "jsdom-global": "3.0.2", "mini-css-extract-plugin": "^2.6.0", "mobx": "^5.15.7", + "mocha-junit-reporter": "^2.2.1", "parse-duration": "^1.1.0", "prettier": "^2.5.1", "prettier-plugin-organize-imports": "^3.2.4", diff --git a/web/reporter-config.json b/web/reporter-config.json new file mode 100644 index 000000000..75c6ad46a --- /dev/null +++ b/web/reporter-config.json @@ -0,0 +1,7 @@ +{ + "reporterEnabled": "spec, mocha-junit-reporter", + "mochaJunitReporterReporterOptions": { + "mochaFile": "cypress/results/junit/test-results-[hash].xml", + "toConsole": false + } +} diff --git a/web/src/components/metrics/histogram.tsx b/web/src/components/metrics/histogram.tsx index 44d687931..f29ca88e3 100644 --- a/web/src/components/metrics/histogram.tsx +++ b/web/src/components/metrics/histogram.tsx @@ -264,6 +264,7 @@ export const Histogram: React.FC = ({ isVisible={tooltipsTrigger === 'manual' ? false : undefined} >