catocli 3.0.24__py3-none-any.whl → 3.0.25__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

@@ -48,15 +48,15 @@ from ..parsers.query_enterpriseDirectory import query_enterpriseDirectory_parse
48
48
  from ..parsers.query_devices import query_devices_parse
49
49
  from ..parsers.query_accountSnapshot import query_accountSnapshot_parse
50
50
  from ..parsers.query_catalogs import query_catalogs_parse
51
- from ..parsers.query_site import query_site_parse
52
51
  from ..parsers.query_xdr import query_xdr_parse
53
- from ..parsers.query_groups import query_groups_parse
52
+ from ..parsers.query_site import query_site_parse
54
53
  from ..parsers.query_policy import query_policy_parse
54
+ from ..parsers.query_groups import query_groups_parse
55
55
  from ..parsers.mutation_xdr import mutation_xdr_parse
56
- from ..parsers.mutation_policy import mutation_policy_parse
57
56
  from ..parsers.mutation_site import mutation_site_parse
58
- from ..parsers.mutation_container import mutation_container_parse
57
+ from ..parsers.mutation_policy import mutation_policy_parse
59
58
  from ..parsers.mutation_sites import mutation_sites_parse
59
+ from ..parsers.mutation_container import mutation_container_parse
60
60
  from ..parsers.mutation_admin import mutation_admin_parse
61
61
  from ..parsers.mutation_accountManagement import mutation_accountManagement_parse
62
62
  from ..parsers.mutation_sandbox import mutation_sandbox_parse
@@ -183,15 +183,15 @@ query_enterpriseDirectory_parser = query_enterpriseDirectory_parse(query_subpars
183
183
  query_devices_parser = query_devices_parse(query_subparsers)
184
184
  query_accountSnapshot_parser = query_accountSnapshot_parse(query_subparsers)
185
185
  query_catalogs_parser = query_catalogs_parse(query_subparsers)
186
- query_site_parser = query_site_parse(query_subparsers)
187
186
  query_xdr_parser = query_xdr_parse(query_subparsers)
188
- query_groups_parser = query_groups_parse(query_subparsers)
187
+ query_site_parser = query_site_parse(query_subparsers)
189
188
  query_policy_parser = query_policy_parse(query_subparsers)
189
+ query_groups_parser = query_groups_parse(query_subparsers)
190
190
  mutation_xdr_parser = mutation_xdr_parse(mutation_subparsers)
191
- mutation_policy_parser = mutation_policy_parse(mutation_subparsers)
192
191
  mutation_site_parser = mutation_site_parse(mutation_subparsers)
193
- mutation_container_parser = mutation_container_parse(mutation_subparsers)
192
+ mutation_policy_parser = mutation_policy_parse(mutation_subparsers)
194
193
  mutation_sites_parser = mutation_sites_parse(mutation_subparsers)
194
+ mutation_container_parser = mutation_container_parse(mutation_subparsers)
195
195
  mutation_admin_parser = mutation_admin_parse(mutation_subparsers)
196
196
  mutation_accountManagement_parser = mutation_accountManagement_parse(mutation_subparsers)
197
197
  mutation_sandbox_parser = mutation_sandbox_parse(mutation_subparsers)
@@ -14,12 +14,12 @@ from typing import Dict, List, Any
14
14
 
15
15
  # Import shared utility functions
16
16
  try:
17
- from .formatter_utils import convert_bytes_to_mb
17
+ from .formatter_utils import convert_bytes_to_mb, is_bytes_measure
18
18
  except ImportError:
19
19
  try:
20
- from catocli.Utils.formatter_utils import convert_bytes_to_mb
20
+ from catocli.Utils.formatter_utils import convert_bytes_to_mb, is_bytes_measure
21
21
  except ImportError:
22
- from formatter_utils import convert_bytes_to_mb
22
+ from formatter_utils import convert_bytes_to_mb, is_bytes_measure
23
23
 
24
24
 
25
25
  def format_app_stats(response_data: Dict[str, Any], output_format: str = 'json') -> str:
@@ -89,24 +89,27 @@ def _format_app_stats_to_json(response_data: Dict[str, Any]) -> str:
89
89
  record_data = {}
90
90
 
91
91
  for i, (field, value) in enumerate(fields_map.items()):
92
- # Add unit type information for bytes fields
93
- if (i < len(record_unit_types) and record_unit_types[i] == 'bytes'):
94
- formatted_mb = convert_bytes_to_mb(value)
95
- if formatted_mb and formatted_mb != str(value):
92
+ # Check if this is a bytes field using both unit type and field name
93
+ unit_type = record_unit_types[i] if i < len(record_unit_types) else "unknown"
94
+ is_bytes_field = (unit_type == 'bytes') or is_bytes_measure(field, unit_type)
95
+
96
+ if is_bytes_field:
97
+ try:
98
+ formatted_mb = convert_bytes_to_mb(value)
96
99
  record_data[field] = {
97
100
  "value": value,
98
101
  "formatted_mb": formatted_mb,
99
102
  "unit_type": "bytes"
100
103
  }
101
- else:
104
+ except (ValueError, ZeroDivisionError):
102
105
  record_data[field] = {
103
106
  "value": value,
104
- "unit_type": "bytes"
107
+ "unit_type": "bytes_err"
105
108
  }
106
109
  else:
107
110
  record_data[field] = {
108
111
  "value": value,
109
- "unit_type": record_unit_types[i] if i < len(record_unit_types) else "unknown"
112
+ "unit_type": unit_type
110
113
  }
111
114
 
112
115
  organized_data["appStats"]["records"].append(record_data)
@@ -155,7 +158,10 @@ def _format_app_stats_to_csv(response_data: Dict[str, Any]) -> str:
155
158
  # Create headers with _mb suffix for bytes fields
156
159
  headers = []
157
160
  for i, field_name in enumerate(field_names):
158
- if i < len(field_unit_types) and field_unit_types[i] == 'bytes':
161
+ unit_type = field_unit_types[i] if i < len(field_unit_types) else "unknown"
162
+ is_bytes_field = (unit_type == 'bytes') or is_bytes_measure(field_name, unit_type)
163
+
164
+ if is_bytes_field:
159
165
  headers.append(f'{field_name}_mb')
160
166
  else:
161
167
  headers.append(field_name)
@@ -172,12 +178,19 @@ def _format_app_stats_to_csv(response_data: Dict[str, Any]) -> str:
172
178
  for i, field in enumerate(field_names):
173
179
  value = fields_map.get(field, '')
174
180
 
175
- # Convert bytes to MB if the field type is bytes
176
- if (i < len(record_unit_types) and record_unit_types[i] == 'bytes'):
177
- formatted_value = convert_bytes_to_mb(value)
178
- row.append(formatted_value if formatted_value else value)
181
+ # Check if this is a bytes field using both unit type and field name
182
+ unit_type = record_unit_types[i] if i < len(record_unit_types) else "unknown"
183
+ is_bytes_field = (unit_type == 'bytes') or is_bytes_measure(field, unit_type)
184
+
185
+ # Convert bytes to MB if the field is a bytes field
186
+ if is_bytes_field:
187
+ try:
188
+ formatted_value = convert_bytes_to_mb(value) if value != '' else ''
189
+ row.append(formatted_value)
190
+ except (ValueError, ZeroDivisionError):
191
+ row.append(str(value) if value != '' else '')
179
192
  else:
180
- row.append(value)
193
+ row.append(str(value) if value != '' else '')
181
194
 
182
195
  writer.writerow(row)
183
196
 
@@ -16,12 +16,12 @@ from typing import Dict, List, Any, Tuple
16
16
 
17
17
  # Import shared utility functions
18
18
  try:
19
- from .formatter_utils import format_timestamp, parse_label_for_dimensions_and_measure
19
+ from .formatter_utils import format_timestamp, parse_label_for_dimensions_and_measure, is_bytes_measure, convert_bytes_to_mb
20
20
  except ImportError:
21
21
  try:
22
- from catocli.Utils.formatter_utils import format_timestamp, parse_label_for_dimensions_and_measure
22
+ from catocli.Utils.formatter_utils import format_timestamp, parse_label_for_dimensions_and_measure, is_bytes_measure, convert_bytes_to_mb
23
23
  except ImportError:
24
- from formatter_utils import format_timestamp, parse_label_for_dimensions_and_measure
24
+ from formatter_utils import format_timestamp, parse_label_for_dimensions_and_measure, is_bytes_measure, convert_bytes_to_mb
25
25
 
26
26
 
27
27
  def format_app_stats_timeseries(response_data: Dict[str, Any], output_format: str = 'json') -> str:
@@ -170,20 +170,18 @@ def _format_app_stats_timeseries_to_json(response_data: Dict[str, Any]) -> str:
170
170
  for timestamp, value in measure_data['data'].items():
171
171
  timestamp_str = format_timestamp(timestamp)
172
172
 
173
- if measure in ['downstream', 'upstream', 'traffic'] and value:
173
+ if is_bytes_measure(measure):
174
174
  try:
175
- mb_value = value
176
- # mb_value = float(value) / 1048576
177
- formatted_value = f"{mb_value:.3f}".rstrip('0').rstrip('.')
175
+ converted_value = convert_bytes_to_mb(value)
178
176
  formatted_data[timestamp_str] = {
179
177
  'value': value,
180
- 'formatted_mb': formatted_value,
181
- 'unit_type': 'mb'
178
+ 'formatted_mb': converted_value,
179
+ 'unit_type': 'bytes'
182
180
  }
183
181
  except (ValueError, ZeroDivisionError):
184
182
  formatted_data[timestamp_str] = {
185
183
  'value': value,
186
- 'unit_type': 'mb'
184
+ 'unit_type': 'bytes_err'
187
185
  }
188
186
  else:
189
187
  formatted_data[timestamp_str] = {
@@ -322,20 +320,14 @@ def _format_app_stats_timeseries_to_csv(response_data: Dict[str, Any]) -> str:
322
320
  value = data.get(timestamp, '')
323
321
 
324
322
  # Convert bytes measures to MB and add appropriate suffix
325
- if measure in ['downstream', 'upstream', 'traffic']:
326
- if value:
327
- try:
328
- # Current bug in appStatsTimeSeries returning mb indicating unit as bytes
329
- # mb_value = float(value) / 1048576
330
- mb_value = value
331
- formatted_value = f"{mb_value:.3f}".rstrip('0').rstrip('.')
332
- row_data[f'{measure}_mb'] = formatted_value
333
- except (ValueError, ZeroDivisionError):
334
- row_data[f'{measure}_mb'] = value
335
- else:
336
- row_data[f'{measure}_mb'] = value
323
+ if is_bytes_measure(measure):
324
+ try:
325
+ converted_value = convert_bytes_to_mb(value) if value != '' else ''
326
+ row_data[f'{measure}_mb'] = converted_value
327
+ except (ValueError, ZeroDivisionError):
328
+ row_data[f'{measure}_mb'] = str(value) if value != '' else ''
337
329
  else:
338
- row_data[measure] = value
330
+ row_data[measure] = str(value) if value != '' else ''
339
331
 
340
332
  rows.append(row_data)
341
333
 
@@ -118,6 +118,7 @@ def is_bytes_measure(measure: str, units: str = "") -> bool:
118
118
  """
119
119
  bytes_measures = {
120
120
  'downstream', 'upstream', 'traffic', 'bytes', 'bytesDownstream',
121
+ 'bytes_upstream', 'bytes_downstream', 'bytes_total',
121
122
  'bytesUpstream', 'bytesTotal', 'throughput_downstream', 'throughput_upstream'
122
123
  }
123
124
 
catocli/__init__.py CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = "3.0.24"
1
+ __version__ = "3.0.25"
2
2
  __cato_host__ = "https://api.catonetworks.com/api/v1/graphql2"
@@ -58,6 +58,7 @@ catocli query appStatsTimeSeries '{
58
58
  "fieldName": "application_name"
59
59
  }
60
60
  ],
61
+ "perSecond": false,
61
62
  "measure": [
62
63
  {
63
64
  "aggType": "sum",
@@ -99,6 +100,7 @@ catocli query appStatsTimeSeries '{
99
100
  "fieldName": "user_name"
100
101
  }
101
102
  ],
103
+ "perSecond": false,
102
104
  "measure": [
103
105
  {
104
106
  "aggType": "sum",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: catocli
3
- Version: 3.0.24
3
+ Version: 3.0.25
4
4
  Summary: Cato Networks cli wrapper for the GraphQL API.
5
5
  Home-page: https://github.com/Cato-Networks/cato-cli
6
6
  Author: Cato Networks
@@ -102,7 +102,7 @@ For detailed information about profile management, see [PROFILES.md](PROFILES.md
102
102
  |-----------|-------------|--------|
103
103
  | [Account Metrics](./catocli_user_guide/account-metrics.md) | Network performance metrics by site, user, or interface | 📊 |
104
104
  | [Application Statistics](./catocli_user_guide/app-stats.md) | User activity and application usage analysis | 📱 |
105
- | [Application Time Series](./catocli_user_guide/app-stats-timeseries.md) | Traffic analysis over time with hourly/daily breakdowns | 📈 |
105
+ | [Application Statistics Time Series](./catocli_user_guide/app-stats-timeseries.md) | Traffic analysis over time with hourly/daily breakdowns | 📈 |
106
106
  | [Events Time Series](./catocli_user_guide/events-timeseries.md) | Security events, connectivity, and threat analysis | 🔒 |
107
107
  | [Socket Port Metrics](./catocli_user_guide/socket-port-metrics.md) | Socket interface performance and traffic analysis | 🔌 |
108
108
  | [Socket Port Time Series](./catocli_user_guide/socket-port-timeseries.md) | Socket performance metrics over time | ⏱️ |
@@ -179,6 +179,3 @@ This CLI is a Python 3 application and has been tested with Python 3.6 -> 3.8
179
179
 
180
180
  ## Installing the correct version for environment:
181
181
  https://www.python.org/downloads/
182
-
183
-
184
-
@@ -1,15 +1,15 @@
1
- catocli/__init__.py,sha256=bzKzrYDxIrGm384xc0GGCydJc12e4mEE-vcmaHTTh5U,85
1
+ catocli/__init__.py,sha256=0wvFYvTePpirKBGnOgqD-5fHFA6qPdygt0w4XlSJqj4,85
2
2
  catocli/__main__.py,sha256=6Z0ns_k_kUcz1Qtrn1u7UyUnqB-3e85jM_nppOwFsv4,217
3
3
  catocli/clisettings.json,sha256=qlLUDYEpKMvCHAy4eDX2MxE6lQuVCxQbKhIS6S7kGK4,2035
4
- catocli/Utils/clidriver.py,sha256=WPcH2Aek2k5WfjT5PVLM8vKs2k3Tp5SMPsrvoXnA9dE,16750
4
+ catocli/Utils/clidriver.py,sha256=uMav9yFdP0-6T2Q1Ef2RymGGz6lKUTsiLFDkf6IpJVs,16750
5
5
  catocli/Utils/cliutils.py,sha256=TTrAGlJjy9P07rLPGev9Qjx4w0g0KnWYBYcfNY1VIa8,6875
6
6
  catocli/Utils/formatter_account_metrics.py,sha256=1SL-lx-6JzWBzuF5Fk8cFtMbKAF3eSEzcag1j3vKy_Q,24775
7
- catocli/Utils/formatter_app_stats.py,sha256=BO33Gfomoko4em6L5rRowce-RnLqhV_xBrAecfFIWZs,5786
8
- catocli/Utils/formatter_app_stats_timeseries.py,sha256=o0NFiDRcRHuH2oracCSfHRVZe16uG7ok8nGqfAPl9pI,14192
7
+ catocli/Utils/formatter_app_stats.py,sha256=iM3JkVvHywaCPErdtVpOSiTuwQab1EUhY6D3QG610tc,6487
8
+ catocli/Utils/formatter_app_stats_timeseries.py,sha256=EwnqmGGWsASL-Am0FKn7k_WmH5BRcMb8GkNx2cRdwlA,13866
9
9
  catocli/Utils/formatter_events_timeseries.py,sha256=JcBN1YgU9GIsx1YM0-_Mn8ZZ15WohvBMSLyDoN4ibg8,17426
10
10
  catocli/Utils/formatter_socket_port_metrics.py,sha256=iWVeP6lCqoOUC3jsZHbCNvXm76YIi8uL5ETiNnfEvZE,6460
11
11
  catocli/Utils/formatter_socket_port_metrics_timeseries.py,sha256=l1FIk-0gsiMEv37N6bvAj7cH39bM_OZxUaqMnVoZm_Y,12502
12
- catocli/Utils/formatter_utils.py,sha256=Bdm29NQsYWh38o9rgbS6XUtRrQfGZMHAakDpd5UBIds,9140
12
+ catocli/Utils/formatter_utils.py,sha256=jqH9YUUyf58PeRuSIPpo0MYH0OfOWu0oNKRUHFv28LU,9201
13
13
  catocli/Utils/graphql_utils.py,sha256=yUSJ1gE2_LRYTHq46w6vOa84IuU6BXlBMr1gQB2RcGE,63469
14
14
  catocli/Utils/help_formatter.py,sha256=fmUCLS04rB2lO-1YY1VHYjehCfwpjGS0deFCY_3wg_U,31901
15
15
  catocli/Utils/profile_manager.py,sha256=a-cIhlhOiFbAEuX5Im0JraalWufkcAZS1NQQ0T4ck8I,7763
@@ -322,7 +322,7 @@ catocli/parsers/query_admins/README.md,sha256=7ZTADV5G5DnNK4MVaa-rTpZSjneThhDdUk
322
322
  catocli/parsers/query_admins/__init__.py,sha256=TsbqtBJvH12JdDxSkB6ZsgcfXIFGorKxtR02evuEmgY,1811
323
323
  catocli/parsers/query_appStats/README.md,sha256=W6mJjMFLvxKDvVEB4BP0iu_bPYENGUXfZVDSQIxb07Q,3993
324
324
  catocli/parsers/query_appStats/__init__.py,sha256=dKtWxgVgmr0YsjmjTdjES2_qqAU8A7b3riFFfZ9r1no,2455
325
- catocli/parsers/query_appStatsTimeSeries/README.md,sha256=SXIqMG79a1E4xXHNJDHgG7UZM-3fR6AXst8IUvauHBo,4725
325
+ catocli/parsers/query_appStatsTimeSeries/README.md,sha256=bCvB_rwGM6ZJEW5RAfAA6Hd8BQJXKy_R_VzjYCOJPy8,4773
326
326
  catocli/parsers/query_appStatsTimeSeries/__init__.py,sha256=d7s17-s8GkL0aKBvXMwf4pkwiS8nmRIqxWgV3swnAqc,2665
327
327
  catocli/parsers/query_auditFeed/README.md,sha256=1l1s0Ehj5In5arf4lpVeVWJxFaxCkBwDaMIGSS2eVGM,2114
328
328
  catocli/parsers/query_auditFeed/__init__.py,sha256=Q0FulK3O5l-aaG5WDuCotecSsyTwBtl89d2U7j80vX0,1859
@@ -414,7 +414,7 @@ catocli/templates/scim_users.csv,sha256=Fb_C9W2cXf1swnKSNXanWabny87TKcbwxpor5ze3
414
414
  catocli/templates/scim_users.json,sha256=VRBc2rDRMiIcA6navhnqdnuvLmouKd9ZE7ZrzGb7kfI,582
415
415
  catocli/templates/socket_sites.csv,sha256=S5qY7whbydinMwomoAlDghoiFO_xqUKRwNG1xvzl8BI,1212
416
416
  catocli/templates/socket_sites.json,sha256=X3NShci5-q3TpVSsaj62u4jFCvQAhxQ7knC-Lui_gOg,19535
417
- catocli-3.0.24.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
417
+ catocli-3.0.25.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
418
418
  graphql_client/__init__.py,sha256=2nxD4YsWoOnALXi5cXbmtIN_i0NL_eyDTQRTxs52mkI,315
419
419
  graphql_client/api_client.py,sha256=2Rc1Zo1xH9Jnk1AO68kLSofTShkZwSVF-WkVtczfIc4,5786
420
420
  graphql_client/api_client_types.py,sha256=y1oy1qsg8TM_FPxb8m53ED7tBU29WDhtQqzgg247_kI,11754
@@ -667,8 +667,8 @@ models/query.accountRoles.json,sha256=7Ucs3F0h3KkpMx7ZLzz4UtnnhJbaWy1vCyqk-kJvtF
667
667
  models/query.accountSnapshot.json,sha256=Yx0X3P5qvpSjLA6DJGpHWptdcQodm4lwLtwNlkJn7jU,673930
668
668
  models/query.admin.json,sha256=Gqds3S1SlFFS6ePQFTzola0OxnCSBAeyJoXQAVCB_fs,71998
669
669
  models/query.admins.json,sha256=26zrPK-tTRrjtYVx9nqshFNDmTJjQpa3DAw6WBKzD4g,136275
670
- models/query.appStats.json,sha256=5TrbyfOspb8fZx9pBGxmUQ6KxXwGXt0twtyW2tSyRaI,284487
671
- models/query.appStatsTimeSeries.json,sha256=GsI-DnEHRrZLtWnseISFH-wLHR4-GwIT7OVShXnh46U,194005
670
+ models/query.appStats.json,sha256=JzeyfOEJB3FZxPHNTm8STSSnc-wJN4Qd3tC71cM6vkg,300921
671
+ models/query.appStatsTimeSeries.json,sha256=XVvNaz1MkCPquXDktNGdCRK4ym5FC7dPI1W2PI4fBEk,204577
672
672
  models/query.auditFeed.json,sha256=DuV5aHE2faXKiKKNLGVWH633Ay6BFCTR2n-dExjScVY,211741
673
673
  models/query.catalogs.json,sha256=4mnNe33CMY4ITRNNfDTF3RH9Pq3hm3E4N5cG3xZKXg4,788553
674
674
  models/query.container.json,sha256=rdhueKT9DUPKW86-r696BJuExigCLpoT4LTAB1mxpts,278138
@@ -758,8 +758,8 @@ vendor/urllib3/util/timeout.py,sha256=4eT1FVeZZU7h7mYD1Jq2OXNe4fxekdNvhoWUkZusRp
758
758
  vendor/urllib3/util/url.py,sha256=wHORhp80RAXyTlAIkTqLFzSrkU7J34ZDxX-tN65MBZk,15213
759
759
  vendor/urllib3/util/util.py,sha256=j3lbZK1jPyiwD34T8IgJzdWEZVT-4E-0vYIJi9UjeNA,1146
760
760
  vendor/urllib3/util/wait.py,sha256=_ph8IrUR3sqPqi0OopQgJUlH4wzkGeM5CiyA7XGGtmI,4423
761
- catocli-3.0.24.dist-info/METADATA,sha256=ACqF6TZJXjcc14M1PhnjDUEVOVZwqeYgbFVGOQZdTrc,6410
762
- catocli-3.0.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
763
- catocli-3.0.24.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
764
- catocli-3.0.24.dist-info/top_level.txt,sha256=cRT_qNMM5G7w-dpT1BnJB9eikqydO0jafLlS4OD-7MI,44
765
- catocli-3.0.24.dist-info/RECORD,,
761
+ catocli-3.0.25.dist-info/METADATA,sha256=9SlvGbJ9NJu67onGxpheZ2m3bgSBMrOy8aFx7HrTNAE,6418
762
+ catocli-3.0.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
763
+ catocli-3.0.25.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
764
+ catocli-3.0.25.dist-info/top_level.txt,sha256=cRT_qNMM5G7w-dpT1BnJB9eikqydO0jafLlS4OD-7MI,44
765
+ catocli-3.0.25.dist-info/RECORD,,
@@ -203,6 +203,12 @@
203
203
  "isDeprecated": false,
204
204
  "name": "is_sanctioned_app"
205
205
  },
206
+ {
207
+ "deprecationReason": null,
208
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
209
+ "isDeprecated": false,
210
+ "name": "ISP_name"
211
+ },
206
212
  {
207
213
  "deprecationReason": null,
208
214
  "description": "new cloud application identifier",
@@ -245,6 +251,18 @@
245
251
  "isDeprecated": false,
246
252
  "name": "socket_interface"
247
253
  },
254
+ {
255
+ "deprecationReason": null,
256
+ "description": "Country in which the source host is located (detected via public IP address)",
257
+ "isDeprecated": false,
258
+ "name": "src_country"
259
+ },
260
+ {
261
+ "deprecationReason": null,
262
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
263
+ "isDeprecated": false,
264
+ "name": "src_country_code"
265
+ },
248
266
  {
249
267
  "deprecationReason": null,
250
268
  "description": "IP for source host or Cato Client",
@@ -257,6 +275,12 @@
257
275
  "isDeprecated": false,
258
276
  "name": "src_is_site_or_vpn"
259
277
  },
278
+ {
279
+ "deprecationReason": null,
280
+ "description": "IP address provided by ISP to site or Client",
281
+ "isDeprecated": false,
282
+ "name": "src_isp_ip"
283
+ },
260
284
  {
261
285
  "deprecationReason": null,
262
286
  "description": "Site country code alpha2",
@@ -553,6 +577,12 @@
553
577
  "isDeprecated": false,
554
578
  "name": "is_sanctioned_app"
555
579
  },
580
+ {
581
+ "deprecationReason": null,
582
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
583
+ "isDeprecated": false,
584
+ "name": "ISP_name"
585
+ },
556
586
  {
557
587
  "deprecationReason": null,
558
588
  "description": "new cloud application identifier",
@@ -595,6 +625,18 @@
595
625
  "isDeprecated": false,
596
626
  "name": "socket_interface"
597
627
  },
628
+ {
629
+ "deprecationReason": null,
630
+ "description": "Country in which the source host is located (detected via public IP address)",
631
+ "isDeprecated": false,
632
+ "name": "src_country"
633
+ },
634
+ {
635
+ "deprecationReason": null,
636
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
637
+ "isDeprecated": false,
638
+ "name": "src_country_code"
639
+ },
598
640
  {
599
641
  "deprecationReason": null,
600
642
  "description": "IP for source host or Cato Client",
@@ -607,6 +649,12 @@
607
649
  "isDeprecated": false,
608
650
  "name": "src_is_site_or_vpn"
609
651
  },
652
+ {
653
+ "deprecationReason": null,
654
+ "description": "IP address provided by ISP to site or Client",
655
+ "isDeprecated": false,
656
+ "name": "src_isp_ip"
657
+ },
610
658
  {
611
659
  "deprecationReason": null,
612
660
  "description": "Site country code alpha2",
@@ -1119,6 +1167,12 @@
1119
1167
  "isDeprecated": false,
1120
1168
  "name": "is_sanctioned_app"
1121
1169
  },
1170
+ {
1171
+ "deprecationReason": null,
1172
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
1173
+ "isDeprecated": false,
1174
+ "name": "ISP_name"
1175
+ },
1122
1176
  {
1123
1177
  "deprecationReason": null,
1124
1178
  "description": "new cloud application identifier",
@@ -1161,6 +1215,18 @@
1161
1215
  "isDeprecated": false,
1162
1216
  "name": "socket_interface"
1163
1217
  },
1218
+ {
1219
+ "deprecationReason": null,
1220
+ "description": "Country in which the source host is located (detected via public IP address)",
1221
+ "isDeprecated": false,
1222
+ "name": "src_country"
1223
+ },
1224
+ {
1225
+ "deprecationReason": null,
1226
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
1227
+ "isDeprecated": false,
1228
+ "name": "src_country_code"
1229
+ },
1164
1230
  {
1165
1231
  "deprecationReason": null,
1166
1232
  "description": "IP for source host or Cato Client",
@@ -1173,6 +1239,12 @@
1173
1239
  "isDeprecated": false,
1174
1240
  "name": "src_is_site_or_vpn"
1175
1241
  },
1242
+ {
1243
+ "deprecationReason": null,
1244
+ "description": "IP address provided by ISP to site or Client",
1245
+ "isDeprecated": false,
1246
+ "name": "src_isp_ip"
1247
+ },
1176
1248
  {
1177
1249
  "deprecationReason": null,
1178
1250
  "description": "Site country code alpha2",
@@ -1487,6 +1559,12 @@
1487
1559
  "isDeprecated": false,
1488
1560
  "name": "is_sanctioned_app"
1489
1561
  },
1562
+ {
1563
+ "deprecationReason": null,
1564
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
1565
+ "isDeprecated": false,
1566
+ "name": "ISP_name"
1567
+ },
1490
1568
  {
1491
1569
  "deprecationReason": null,
1492
1570
  "description": "new cloud application identifier",
@@ -1529,6 +1607,18 @@
1529
1607
  "isDeprecated": false,
1530
1608
  "name": "socket_interface"
1531
1609
  },
1610
+ {
1611
+ "deprecationReason": null,
1612
+ "description": "Country in which the source host is located (detected via public IP address)",
1613
+ "isDeprecated": false,
1614
+ "name": "src_country"
1615
+ },
1616
+ {
1617
+ "deprecationReason": null,
1618
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
1619
+ "isDeprecated": false,
1620
+ "name": "src_country_code"
1621
+ },
1532
1622
  {
1533
1623
  "deprecationReason": null,
1534
1624
  "description": "IP for source host or Cato Client",
@@ -1541,6 +1631,12 @@
1541
1631
  "isDeprecated": false,
1542
1632
  "name": "src_is_site_or_vpn"
1543
1633
  },
1634
+ {
1635
+ "deprecationReason": null,
1636
+ "description": "IP address provided by ISP to site or Client",
1637
+ "isDeprecated": false,
1638
+ "name": "src_isp_ip"
1639
+ },
1544
1640
  {
1545
1641
  "deprecationReason": null,
1546
1642
  "description": "Site country code alpha2",
@@ -1926,6 +2022,12 @@
1926
2022
  "isDeprecated": false,
1927
2023
  "name": "is_sanctioned_app"
1928
2024
  },
2025
+ {
2026
+ "deprecationReason": null,
2027
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
2028
+ "isDeprecated": false,
2029
+ "name": "ISP_name"
2030
+ },
1929
2031
  {
1930
2032
  "deprecationReason": null,
1931
2033
  "description": "new cloud application identifier",
@@ -1968,6 +2070,18 @@
1968
2070
  "isDeprecated": false,
1969
2071
  "name": "socket_interface"
1970
2072
  },
2073
+ {
2074
+ "deprecationReason": null,
2075
+ "description": "Country in which the source host is located (detected via public IP address)",
2076
+ "isDeprecated": false,
2077
+ "name": "src_country"
2078
+ },
2079
+ {
2080
+ "deprecationReason": null,
2081
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
2082
+ "isDeprecated": false,
2083
+ "name": "src_country_code"
2084
+ },
1971
2085
  {
1972
2086
  "deprecationReason": null,
1973
2087
  "description": "IP for source host or Cato Client",
@@ -1980,6 +2094,12 @@
1980
2094
  "isDeprecated": false,
1981
2095
  "name": "src_is_site_or_vpn"
1982
2096
  },
2097
+ {
2098
+ "deprecationReason": null,
2099
+ "description": "IP address provided by ISP to site or Client",
2100
+ "isDeprecated": false,
2101
+ "name": "src_isp_ip"
2102
+ },
1983
2103
  {
1984
2104
  "deprecationReason": null,
1985
2105
  "description": "Site country code alpha2",
@@ -2401,6 +2521,12 @@
2401
2521
  "isDeprecated": false,
2402
2522
  "name": "is_sanctioned_app"
2403
2523
  },
2524
+ {
2525
+ "deprecationReason": null,
2526
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
2527
+ "isDeprecated": false,
2528
+ "name": "ISP_name"
2529
+ },
2404
2530
  {
2405
2531
  "deprecationReason": null,
2406
2532
  "description": "new cloud application identifier",
@@ -2443,6 +2569,18 @@
2443
2569
  "isDeprecated": false,
2444
2570
  "name": "socket_interface"
2445
2571
  },
2572
+ {
2573
+ "deprecationReason": null,
2574
+ "description": "Country in which the source host is located (detected via public IP address)",
2575
+ "isDeprecated": false,
2576
+ "name": "src_country"
2577
+ },
2578
+ {
2579
+ "deprecationReason": null,
2580
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
2581
+ "isDeprecated": false,
2582
+ "name": "src_country_code"
2583
+ },
2446
2584
  {
2447
2585
  "deprecationReason": null,
2448
2586
  "description": "IP for source host or Cato Client",
@@ -2455,6 +2593,12 @@
2455
2593
  "isDeprecated": false,
2456
2594
  "name": "src_is_site_or_vpn"
2457
2595
  },
2596
+ {
2597
+ "deprecationReason": null,
2598
+ "description": "IP address provided by ISP to site or Client",
2599
+ "isDeprecated": false,
2600
+ "name": "src_isp_ip"
2601
+ },
2458
2602
  {
2459
2603
  "deprecationReason": null,
2460
2604
  "description": "Site country code alpha2",
@@ -2795,6 +2939,12 @@
2795
2939
  "isDeprecated": false,
2796
2940
  "name": "is_sanctioned_app"
2797
2941
  },
2942
+ {
2943
+ "deprecationReason": null,
2944
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
2945
+ "isDeprecated": false,
2946
+ "name": "ISP_name"
2947
+ },
2798
2948
  {
2799
2949
  "deprecationReason": null,
2800
2950
  "description": "new cloud application identifier",
@@ -2837,6 +2987,18 @@
2837
2987
  "isDeprecated": false,
2838
2988
  "name": "socket_interface"
2839
2989
  },
2990
+ {
2991
+ "deprecationReason": null,
2992
+ "description": "Country in which the source host is located (detected via public IP address)",
2993
+ "isDeprecated": false,
2994
+ "name": "src_country"
2995
+ },
2996
+ {
2997
+ "deprecationReason": null,
2998
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
2999
+ "isDeprecated": false,
3000
+ "name": "src_country_code"
3001
+ },
2840
3002
  {
2841
3003
  "deprecationReason": null,
2842
3004
  "description": "IP for source host or Cato Client",
@@ -2849,6 +3011,12 @@
2849
3011
  "isDeprecated": false,
2850
3012
  "name": "src_is_site_or_vpn"
2851
3013
  },
3014
+ {
3015
+ "deprecationReason": null,
3016
+ "description": "IP address provided by ISP to site or Client",
3017
+ "isDeprecated": false,
3018
+ "name": "src_isp_ip"
3019
+ },
2852
3020
  {
2853
3021
  "deprecationReason": null,
2854
3022
  "description": "Site country code alpha2",
@@ -3272,6 +3440,12 @@
3272
3440
  "isDeprecated": false,
3273
3441
  "name": "is_sanctioned_app"
3274
3442
  },
3443
+ {
3444
+ "deprecationReason": null,
3445
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
3446
+ "isDeprecated": false,
3447
+ "name": "ISP_name"
3448
+ },
3275
3449
  {
3276
3450
  "deprecationReason": null,
3277
3451
  "description": "new cloud application identifier",
@@ -3314,6 +3488,18 @@
3314
3488
  "isDeprecated": false,
3315
3489
  "name": "socket_interface"
3316
3490
  },
3491
+ {
3492
+ "deprecationReason": null,
3493
+ "description": "Country in which the source host is located (detected via public IP address)",
3494
+ "isDeprecated": false,
3495
+ "name": "src_country"
3496
+ },
3497
+ {
3498
+ "deprecationReason": null,
3499
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
3500
+ "isDeprecated": false,
3501
+ "name": "src_country_code"
3502
+ },
3317
3503
  {
3318
3504
  "deprecationReason": null,
3319
3505
  "description": "IP for source host or Cato Client",
@@ -3326,6 +3512,12 @@
3326
3512
  "isDeprecated": false,
3327
3513
  "name": "src_is_site_or_vpn"
3328
3514
  },
3515
+ {
3516
+ "deprecationReason": null,
3517
+ "description": "IP address provided by ISP to site or Client",
3518
+ "isDeprecated": false,
3519
+ "name": "src_isp_ip"
3520
+ },
3329
3521
  {
3330
3522
  "deprecationReason": null,
3331
3523
  "description": "Site country code alpha2",
@@ -3762,6 +3954,12 @@
3762
3954
  "isDeprecated": false,
3763
3955
  "name": "is_sanctioned_app"
3764
3956
  },
3957
+ {
3958
+ "deprecationReason": null,
3959
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
3960
+ "isDeprecated": false,
3961
+ "name": "ISP_name"
3962
+ },
3765
3963
  {
3766
3964
  "deprecationReason": null,
3767
3965
  "description": "new cloud application identifier",
@@ -3804,6 +4002,18 @@
3804
4002
  "isDeprecated": false,
3805
4003
  "name": "socket_interface"
3806
4004
  },
4005
+ {
4006
+ "deprecationReason": null,
4007
+ "description": "Country in which the source host is located (detected via public IP address)",
4008
+ "isDeprecated": false,
4009
+ "name": "src_country"
4010
+ },
4011
+ {
4012
+ "deprecationReason": null,
4013
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
4014
+ "isDeprecated": false,
4015
+ "name": "src_country_code"
4016
+ },
3807
4017
  {
3808
4018
  "deprecationReason": null,
3809
4019
  "description": "IP for source host or Cato Client",
@@ -3816,6 +4026,12 @@
3816
4026
  "isDeprecated": false,
3817
4027
  "name": "src_is_site_or_vpn"
3818
4028
  },
4029
+ {
4030
+ "deprecationReason": null,
4031
+ "description": "IP address provided by ISP to site or Client",
4032
+ "isDeprecated": false,
4033
+ "name": "src_isp_ip"
4034
+ },
3819
4035
  {
3820
4036
  "deprecationReason": null,
3821
4037
  "description": "Site country code alpha2",
@@ -203,6 +203,12 @@
203
203
  "isDeprecated": false,
204
204
  "name": "is_sanctioned_app"
205
205
  },
206
+ {
207
+ "deprecationReason": null,
208
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
209
+ "isDeprecated": false,
210
+ "name": "ISP_name"
211
+ },
206
212
  {
207
213
  "deprecationReason": null,
208
214
  "description": "new cloud application identifier",
@@ -245,6 +251,18 @@
245
251
  "isDeprecated": false,
246
252
  "name": "socket_interface"
247
253
  },
254
+ {
255
+ "deprecationReason": null,
256
+ "description": "Country in which the source host is located (detected via public IP address)",
257
+ "isDeprecated": false,
258
+ "name": "src_country"
259
+ },
260
+ {
261
+ "deprecationReason": null,
262
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
263
+ "isDeprecated": false,
264
+ "name": "src_country_code"
265
+ },
248
266
  {
249
267
  "deprecationReason": null,
250
268
  "description": "IP for source host or Cato Client",
@@ -257,6 +275,12 @@
257
275
  "isDeprecated": false,
258
276
  "name": "src_is_site_or_vpn"
259
277
  },
278
+ {
279
+ "deprecationReason": null,
280
+ "description": "IP address provided by ISP to site or Client",
281
+ "isDeprecated": false,
282
+ "name": "src_isp_ip"
283
+ },
260
284
  {
261
285
  "deprecationReason": null,
262
286
  "description": "Site country code alpha2",
@@ -553,6 +577,12 @@
553
577
  "isDeprecated": false,
554
578
  "name": "is_sanctioned_app"
555
579
  },
580
+ {
581
+ "deprecationReason": null,
582
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
583
+ "isDeprecated": false,
584
+ "name": "ISP_name"
585
+ },
556
586
  {
557
587
  "deprecationReason": null,
558
588
  "description": "new cloud application identifier",
@@ -595,6 +625,18 @@
595
625
  "isDeprecated": false,
596
626
  "name": "socket_interface"
597
627
  },
628
+ {
629
+ "deprecationReason": null,
630
+ "description": "Country in which the source host is located (detected via public IP address)",
631
+ "isDeprecated": false,
632
+ "name": "src_country"
633
+ },
634
+ {
635
+ "deprecationReason": null,
636
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
637
+ "isDeprecated": false,
638
+ "name": "src_country_code"
639
+ },
598
640
  {
599
641
  "deprecationReason": null,
600
642
  "description": "IP for source host or Cato Client",
@@ -607,6 +649,12 @@
607
649
  "isDeprecated": false,
608
650
  "name": "src_is_site_or_vpn"
609
651
  },
652
+ {
653
+ "deprecationReason": null,
654
+ "description": "IP address provided by ISP to site or Client",
655
+ "isDeprecated": false,
656
+ "name": "src_isp_ip"
657
+ },
610
658
  {
611
659
  "deprecationReason": null,
612
660
  "description": "Site country code alpha2",
@@ -1119,6 +1167,12 @@
1119
1167
  "isDeprecated": false,
1120
1168
  "name": "is_sanctioned_app"
1121
1169
  },
1170
+ {
1171
+ "deprecationReason": null,
1172
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
1173
+ "isDeprecated": false,
1174
+ "name": "ISP_name"
1175
+ },
1122
1176
  {
1123
1177
  "deprecationReason": null,
1124
1178
  "description": "new cloud application identifier",
@@ -1161,6 +1215,18 @@
1161
1215
  "isDeprecated": false,
1162
1216
  "name": "socket_interface"
1163
1217
  },
1218
+ {
1219
+ "deprecationReason": null,
1220
+ "description": "Country in which the source host is located (detected via public IP address)",
1221
+ "isDeprecated": false,
1222
+ "name": "src_country"
1223
+ },
1224
+ {
1225
+ "deprecationReason": null,
1226
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
1227
+ "isDeprecated": false,
1228
+ "name": "src_country_code"
1229
+ },
1164
1230
  {
1165
1231
  "deprecationReason": null,
1166
1232
  "description": "IP for source host or Cato Client",
@@ -1173,6 +1239,12 @@
1173
1239
  "isDeprecated": false,
1174
1240
  "name": "src_is_site_or_vpn"
1175
1241
  },
1242
+ {
1243
+ "deprecationReason": null,
1244
+ "description": "IP address provided by ISP to site or Client",
1245
+ "isDeprecated": false,
1246
+ "name": "src_isp_ip"
1247
+ },
1176
1248
  {
1177
1249
  "deprecationReason": null,
1178
1250
  "description": "Site country code alpha2",
@@ -1532,6 +1604,12 @@
1532
1604
  "isDeprecated": false,
1533
1605
  "name": "is_sanctioned_app"
1534
1606
  },
1607
+ {
1608
+ "deprecationReason": null,
1609
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
1610
+ "isDeprecated": false,
1611
+ "name": "ISP_name"
1612
+ },
1535
1613
  {
1536
1614
  "deprecationReason": null,
1537
1615
  "description": "new cloud application identifier",
@@ -1574,6 +1652,18 @@
1574
1652
  "isDeprecated": false,
1575
1653
  "name": "socket_interface"
1576
1654
  },
1655
+ {
1656
+ "deprecationReason": null,
1657
+ "description": "Country in which the source host is located (detected via public IP address)",
1658
+ "isDeprecated": false,
1659
+ "name": "src_country"
1660
+ },
1661
+ {
1662
+ "deprecationReason": null,
1663
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
1664
+ "isDeprecated": false,
1665
+ "name": "src_country_code"
1666
+ },
1577
1667
  {
1578
1668
  "deprecationReason": null,
1579
1669
  "description": "IP for source host or Cato Client",
@@ -1586,6 +1676,12 @@
1586
1676
  "isDeprecated": false,
1587
1677
  "name": "src_is_site_or_vpn"
1588
1678
  },
1679
+ {
1680
+ "deprecationReason": null,
1681
+ "description": "IP address provided by ISP to site or Client",
1682
+ "isDeprecated": false,
1683
+ "name": "src_isp_ip"
1684
+ },
1589
1685
  {
1590
1686
  "deprecationReason": null,
1591
1687
  "description": "Site country code alpha2",
@@ -2026,6 +2122,12 @@
2026
2122
  "isDeprecated": false,
2027
2123
  "name": "is_sanctioned_app"
2028
2124
  },
2125
+ {
2126
+ "deprecationReason": null,
2127
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
2128
+ "isDeprecated": false,
2129
+ "name": "ISP_name"
2130
+ },
2029
2131
  {
2030
2132
  "deprecationReason": null,
2031
2133
  "description": "new cloud application identifier",
@@ -2068,6 +2170,18 @@
2068
2170
  "isDeprecated": false,
2069
2171
  "name": "socket_interface"
2070
2172
  },
2173
+ {
2174
+ "deprecationReason": null,
2175
+ "description": "Country in which the source host is located (detected via public IP address)",
2176
+ "isDeprecated": false,
2177
+ "name": "src_country"
2178
+ },
2179
+ {
2180
+ "deprecationReason": null,
2181
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
2182
+ "isDeprecated": false,
2183
+ "name": "src_country_code"
2184
+ },
2071
2185
  {
2072
2186
  "deprecationReason": null,
2073
2187
  "description": "IP for source host or Cato Client",
@@ -2080,6 +2194,12 @@
2080
2194
  "isDeprecated": false,
2081
2195
  "name": "src_is_site_or_vpn"
2082
2196
  },
2197
+ {
2198
+ "deprecationReason": null,
2199
+ "description": "IP address provided by ISP to site or Client",
2200
+ "isDeprecated": false,
2201
+ "name": "src_isp_ip"
2202
+ },
2083
2203
  {
2084
2204
  "deprecationReason": null,
2085
2205
  "description": "Site country code alpha2",
@@ -2467,6 +2587,12 @@
2467
2587
  "isDeprecated": false,
2468
2588
  "name": "is_sanctioned_app"
2469
2589
  },
2590
+ {
2591
+ "deprecationReason": null,
2592
+ "description": "The ISP related to this event (when the IP address isn't provided by the ISP, then the event message is IP Addresses are assigned statically)",
2593
+ "isDeprecated": false,
2594
+ "name": "ISP_name"
2595
+ },
2470
2596
  {
2471
2597
  "deprecationReason": null,
2472
2598
  "description": "new cloud application identifier",
@@ -2509,6 +2635,18 @@
2509
2635
  "isDeprecated": false,
2510
2636
  "name": "socket_interface"
2511
2637
  },
2638
+ {
2639
+ "deprecationReason": null,
2640
+ "description": "Country in which the source host is located (detected via public IP address)",
2641
+ "isDeprecated": false,
2642
+ "name": "src_country"
2643
+ },
2644
+ {
2645
+ "deprecationReason": null,
2646
+ "description": "Country Code of country in which the source host is located (detected via public IP address)",
2647
+ "isDeprecated": false,
2648
+ "name": "src_country_code"
2649
+ },
2512
2650
  {
2513
2651
  "deprecationReason": null,
2514
2652
  "description": "IP for source host or Cato Client",
@@ -2521,6 +2659,12 @@
2521
2659
  "isDeprecated": false,
2522
2660
  "name": "src_is_site_or_vpn"
2523
2661
  },
2662
+ {
2663
+ "deprecationReason": null,
2664
+ "description": "IP address provided by ISP to site or Client",
2665
+ "isDeprecated": false,
2666
+ "name": "src_isp_ip"
2667
+ },
2524
2668
  {
2525
2669
  "deprecationReason": null,
2526
2670
  "description": "Site country code alpha2",