Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NETOBSERV-1432 Missing drops information in table view #440

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions config/sample-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -393,13 +393,17 @@ frontend:
- id: Bytes
name: Bytes
tooltip: The total aggregated number of bytes.
field: Bytes
fields:
- Bytes
- PktDropBytes
default: true
width: 5
- id: Packets
name: Packets
tooltip: The total aggregated number of packets.
field: Packets
fields:
- Packets
- PktDropPackets
filter: pkt_drop_cause
default: true
width: 5
Expand Down
17 changes: 9 additions & 8 deletions pkg/handler/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@ type Column struct {
ID string `yaml:"id" json:"id"`
Name string `yaml:"name" json:"name"`

Group string `yaml:"group,omitempty" json:"group,omitempty"`
Field string `yaml:"field,omitempty" json:"field,omitempty"`
Calculated string `yaml:"calculated,omitempty" json:"calculated,omitempty"`
Tooltip string `yaml:"tooltip,omitempty" json:"tooltip,omitempty"`
DocURL string `yaml:"docURL,omitempty" json:"docURL,omitempty"`
Filter string `yaml:"filter,omitempty" json:"filter,omitempty"`
Default bool `yaml:"default,omitempty" json:"default,omitempty"`
Width int `yaml:"width,omitempty" json:"width,omitempty"`
Group string `yaml:"group,omitempty" json:"group,omitempty"`
Field string `yaml:"field,omitempty" json:"field,omitempty"`
Fields []string `yaml:"fields,omitempty" json:"fields,omitempty"`
Calculated string `yaml:"calculated,omitempty" json:"calculated,omitempty"`
Tooltip string `yaml:"tooltip,omitempty" json:"tooltip,omitempty"`
DocURL string `yaml:"docURL,omitempty" json:"docURL,omitempty"`
Filter string `yaml:"filter,omitempty" json:"filter,omitempty"`
Default bool `yaml:"default,omitempty" json:"default,omitempty"`
Width int `yaml:"width,omitempty" json:"width,omitempty"`
}

type Filter struct {
Expand Down
2 changes: 1 addition & 1 deletion web/src/api/ipfix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface Record {
fields: Fields;
}

export const getRecordValue = (record: Record, fieldOrLabel: string, defaultValue: string | number) => {
export const getRecordValue = (record: Record, fieldOrLabel: string, defaultValue?: string | number) => {
// check if label exists
if (record.labels[fieldOrLabel as keyof Labels] !== undefined) {
return record.labels[fieldOrLabel as keyof Labels];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ describe('<RecordField />', () => {
isDelete: false
};
const mocks = {
allowPktDrops: true,
size: 'm' as Size,
useLinks: true
};
Expand Down
24 changes: 16 additions & 8 deletions web/src/components/netflow-record/record-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@ export type RecordFieldFilter = {
};

export const RecordField: React.FC<{
allowPktDrops: boolean;
flow: Record;
column: Column;
size?: Size;
useLinks: boolean;
filter?: RecordFieldFilter;
detailed?: boolean;
isDark?: boolean;
}> = ({ flow, column, size, filter, useLinks, detailed, isDark }) => {
}> = ({ allowPktDrops, flow, column, size, filter, useLinks, detailed, isDark }) => {
const { t } = useTranslation('plugin__netobserv-plugin');

const onMouseOver = (event: React.MouseEvent<HTMLDivElement, MouseEvent>, className: string) => {
Expand Down Expand Up @@ -483,7 +484,7 @@ export const RecordField: React.FC<{
case ColumnsId.packets:
case ColumnsId.bytes:
//show both sent / dropped counts
if (Array.isArray(value) && value.length) {
if (Array.isArray(value)) {
let droppedText = t('dropped');
let child: JSX.Element | undefined = undefined;
if (detailed && c.id === ColumnsId.packets && flow.fields.PktDropLatestDropCause) {
Expand All @@ -494,15 +495,22 @@ export const RecordField: React.FC<{
getDropCauseDocUrl(flow.fields.PktDropLatestDropCause as DROP_CAUSES_NAMES)
);
}

const sentCount = value.length >= 1 && value[0] ? String(value[0]) : String(0);
const droppedCount = allowPktDrops && value.length >= 2 && value[1] ? String(value[1]) : undefined;
return doubleContainer(
simpleTextWithTooltip(
detailed ? `${String(value[0])} ${c.name.toLowerCase()} ${t('sent')}` : String(value[0]),
isDark ? '#3E8635' : '#1E4F18'
detailed ? `${sentCount} ${c.name.toLowerCase()} ${t('sent')}` : sentCount,
allowPktDrops ? (isDark ? '#3E8635' : '#1E4F18') : undefined
),
simpleTextWithTooltip(
detailed ? `${String(value[1])} ${c.name.toLowerCase()} ${droppedText}` : String(value[1]),
isDark ? '#C9190B' : '#A30000',
child
droppedCount ? (
simpleTextWithTooltip(
detailed ? `${droppedCount} ${c.name.toLowerCase()} ${droppedText}` : droppedCount,
isDark ? '#C9190B' : '#A30000',
child
)
) : (
<></>
),
true,
false
Expand Down
1 change: 1 addition & 0 deletions web/src/components/netflow-record/record-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ export const RecordPanel: React.FC<RecordDrawerProps> = ({
</Text>
)}
<RecordField
allowPktDrops={allowPktDrops}
flow={record}
column={c}
filter={getFilter(c)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { Size } from '../../dropdowns/table-display-dropdown';
describe('<NetflowTableRow />', () => {
let flows: Record[] = [];
const mocks = {
allowPktDrops: true,
size: 'm' as Size,
onSelect: jest.fn(),
tableWidth: 100,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const noResultsFoundQuery = `Bullseye[data-test="no-results-found"]`;

describe('<NetflowTable />', () => {
const mocks = {
allowPktDrops: true,
size: 'm' as Size,
onSelect: jest.fn(),
filterActionLinks: <></>,
Expand Down
13 changes: 12 additions & 1 deletion web/src/components/netflow-table/netflow-table-row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import './netflow-table-row.css';
import CSSTransition from 'react-transition-group/CSSTransition';

const NetflowTableRow: React.FC<{
allowPktDrops: boolean;
lastRender?: string;
flow: Record;
selectedRecord?: Record;
Expand All @@ -20,6 +21,7 @@ const NetflowTableRow: React.FC<{
tableWidth: number;
isDark?: boolean;
}> = ({
allowPktDrops,
lastRender,
flow,
selectedRecord,
Expand Down Expand Up @@ -55,7 +57,16 @@ const NetflowTableRow: React.FC<{
key={c.id}
style={{ height: '100%', width: `${Math.floor((100 * c.width) / tableWidth)}%` }}
>
{<RecordField flow={flow} column={c} size={size} useLinks={false} isDark={isDark} />}
{
<RecordField
allowPktDrops={allowPktDrops}
flow={flow}
column={c}
size={size}
useLinks={false}
isDark={isDark}
/>
}
</Td>
))}
</Tr>
Expand Down
4 changes: 4 additions & 0 deletions web/src/components/netflow-table/netflow-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import { LokiError } from '../messages/loki-error';
import { convertRemToPixels } from '../../utils/panel';

const NetflowTable: React.FC<{
allowPktDrops: boolean;
flows: Record[];
selectedRecord?: Record;
columns: Column[];
Expand All @@ -42,6 +43,7 @@ const NetflowTable: React.FC<{
filterActionLinks: JSX.Element;
isDark?: boolean;
}> = ({
allowPktDrops,
flows,
selectedRecord,
columns,
Expand Down Expand Up @@ -186,6 +188,7 @@ const NetflowTable: React.FC<{
return getSortedFlows().map((f, i) => (
<NetflowTableRow
key={f.key}
allowPktDrops={allowPktDrops}
flow={f}
lastRender={lastRender}
columns={columns}
Expand All @@ -206,6 +209,7 @@ const NetflowTable: React.FC<{
/>
));
}, [
allowPktDrops,
lastRender,
activeSortDirection,
activeSortId,
Expand Down
1 change: 1 addition & 0 deletions web/src/components/netflow-traffic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1390,6 +1390,7 @@ export const NetflowTraffic: React.FC<{
<NetflowTable
loading={loading}
error={error}
allowPktDrops={isPktDrop()}
flows={flows}
selectedRecord={selectedRecord}
size={size}
Expand Down
7 changes: 7 additions & 0 deletions web/src/utils/columns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export interface ColumnConfigDef {
group?: string;
name: string;
field?: string;
fields?: string[];
calculated?: string;
tooltip?: string;
docURL?: string;
Expand Down Expand Up @@ -301,6 +302,12 @@ export const getDefaultColumns = (columnDefs: ColumnConfigDef[]): Column[] => {
} else {
return calculatedValue(r, d.calculated!);
}
} else if (d.fields) {
const arr: (string | number | undefined)[] = [];
d.fields.forEach(f => {
arr.push(getRecordValue(r, f, undefined) as number);
});
return arr;
} else {
return getRecordValue(r, d.field!, '');
}
Expand Down
Loading