Skip to content

Commit ce3aec1

Browse files
committed
adding support for telemetry sharing
1 parent f04d1f7 commit ce3aec1

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

pandevice/device.py

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ class SystemSettings(VersionedPanObject):
262262
CHILDTYPES = (
263263
"device.NTPServerPrimary",
264264
"device.NTPServerSecondary",
265+
"device.Telemetry",
265266
)
266267

267268
def _setup(self):
@@ -452,3 +453,54 @@ def change_password(self, new_password):
452453
dev = self.nearest_pandevice()
453454
self.password_hash = dev.request_password_hash(new_password)
454455
self.update('password_hash')
456+
457+
458+
class Telemetry(VersionedPanObject):
459+
"""Share telemetry data with Palo Alto Networks.
460+
461+
Join other Palo Alto Networks customers in a global sharing community,
462+
helping to raise the bar against the latest attack techniques. Your
463+
participation allows us to deliver new threat prevention controls across
464+
the attack lifecycle. Choose the type of data you share across
465+
applications, threat intelligence, and device health information to improve
466+
the fidelity of the protections we deliver. This is an opt-in feature
467+
controlled with granular policy, and we encourage you to join the
468+
community.
469+
470+
Add only one of these to a firewall.
471+
472+
Args:
473+
app_reports (bool): Application reports
474+
threat_reports (bool): Threat preventioin reports
475+
url_reports (bool): URL reports
476+
file_type_reports (bool): File type identification reports
477+
threat_data (bool): Threat prevention data
478+
threat_pcaps (bool): Enable sending packet captures with threat
479+
prevention information. This requires that "threat_data" also be
480+
enabled.
481+
product_usage_stats (bool): Health and performance reports
482+
passive_dns_monitoring (bool): Passive DNS monitoring
483+
484+
"""
485+
NAME = None
486+
ROOT = Root.DEVICE
487+
488+
def _setup(self):
489+
# xpaths
490+
self._xpaths.add_profile(value='/update-schedule/statistics-service')
491+
492+
bool_params = (
493+
('app_reports', 'application-reports'),
494+
('threat_reports', 'threat-prevention-reports'),
495+
('url_reports', 'url-reports'),
496+
('file_type_reports', 'file-identification-reports'),
497+
('threat_data', 'threat-prevention-information'),
498+
('threat_pcaps', 'threat-prevention-pcap'),
499+
('product_usage_stats', 'health-performance-reports'),
500+
('passive_dns_monitoring', 'passive-dns-monitoring'),
501+
)
502+
503+
self._params = tuple(
504+
VersionedParamPath(param, vartype='yesno', path=path)
505+
for param, path in bool_params
506+
)

0 commit comments

Comments
 (0)