Optional: Filter fields

By default, the OMEGAMON Data Connect component of ODP forwards all data that it receives.

Optionally, you can specify a filter in the OMEGAMON Data Connect configuration file to forward only specific fields.

Filters are useful for reducing data volume if you have limited storage capacity.

However, filters restrict the fields that are available for analysis.

If you decide that you want to limit the forwarded data to just the fields used by the starter dashboards, add the following filter to the OMEGAMON Data Connect configuration file:

WARNING

This filter corresponds to the current starter dashboards. You might want to create dashboards that use other fields, or extend the samples with other fields. Future samples might require fields that this filter excludes. It is your decision whether to introduce a filter, and how to manage it.

iconnect:
  filter:
    enabled: true
    products:
      kn3:
        enabled: true
        tables:
          kn3gic:
            enabled: true
            fields:
              - system_id
              - tcpip_stc_name
              - collection_time
              - total_header_error_count
              - total_no_route_err_count
              - total_invalid_addr_error
              - total_unknown_protocol
              - total_trunc_error_count
              - total_reassembly_required
              - total_reassembly_count
              - total_reassembly_failure
              - input_datagrams_discarded
              - output_datagrams_discarded
              - receive_datagram_rate
              - transmit_datagram_rate
              - input_discard_percentage
              - output_discard_percentage
              - total_reassembly_percentage
              - interval_seconds
          kn3gtc:
            enabled: true
            fields:
              - system_id
              - tcpip_stc_name
              - collection_time
              - connections_established
              - total_active_socket_opens
              - total_passive_socket_opens
              - total_connections_closed
              - total_established_resets
              - total_attempt_failures
              - total_passive_drops
              - total_timewait_reused
              - total_acknowledge_predict
              - total_input_segments_recvd
              - total_output_segments_sent
              - total_accepted_connections
              - total_segments_discarded
              - total_flow_controls
              - total_duplicate_ack
              - total_bad_checksum
              - total_bad_length
              - total_length_too_short
              - total_old_timestamp
              - total_all_before_window
              - total_all_after_window
              - total_out_of_order_segment
              - total_input_after_closed
              - total_input_window_probes
              - total_input_window_updates
              - total_output_window_update
              - total_output_delayed_acks
              - total_output_rsts
              - total_retransmits
              - total_retransmit_drops
              - total_pmtu_retransmits
              - total_pmtu_errors
              - total_output_window_probes
              - total_window_probe_drops
              - total_keepalive_probes
              - total_keepalive_drops
              - total_finwait2_drops
              - receive_segment_rate
              - transmit_segment_rate
              - segment_retransmit_rate
              - oorder_seg_last_sample_pct
              - ephem_ports_configured
              - ephem_ports_inuse
              - ephem_ports_hwm
              - ephem_ports_exhausted
              - sysplex_name
              - interval_seconds
          kn3tap:
            enabled: true
            fields:
              - system_id
              - tcp_host_name
              - tcpip_stc_name
              - collection_time
              - application_name
              - connection_count
              - total_bytes_in
              - total_bytes_out
              - total_bytes
              - bytes_in_last_sample
              - bytes_out_last_sample
              - total_bytes_last_sample
              - idle_time
              - byte_rate
              - retransmits_last_sample
              - total_retransmits
              - retransmits_percentage
              - datagrams_in_last_sample
              - datagrams_out_last_sample
              - total_datagrams_last_sample
              - total_datagrams_in
              - total_datagrams_out
              - total_datagrams
              - datagram_rate
              - total_bytes_g
              - active_connections
              - accepted_connections
              - connection_rate
              - active_connection_hwm
              - active_connection_hwm_timestamp
              - idle_time_since_last_accept
              - server_up_time
              - connections_in_backlog
              - backlog_connections_rejected
              - backlog_connection_rejected_tm
              - transmit_byte_rate
              - receive_byte_rate
              - transmit_datagram_rate
              - receive_datagram_rate
              - transmit_segment_rate
              - receive_segment_rate
              - segment_rate
              - total_segments_sent
              - total_segments_received
              - total_segments
              - segments_sent
              - segments_received
              - segments_sent_or_received
              - out_of_order_segments
              - total_out_of_order_segments
              - pct_out_of_order_segments
              - retransmission_rate
              - datagrams_queued
              - datagrams_discarded
              - pct_datagrams_discarded
              - queued_datagram_bytes
              - sysplex_name
              - tot_backlog_conn_rejected
              - application_type
              - smcr_current_conn
              - smcr_total_conn
              - smcd_current_conn
              - smcd_total_conn
              - total_accepted_conn
              - smcr_conn
              - smcd_conn
              - secure_conn_percent
              - non_secure_conn_percent
              - interval_seconds
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154

After editing the configuration file, restart OMEGAMON Data Connect.

Last Updated:
Contributors: David Dai