Anonymous View
Skip to content

ContentAnalysisTelemetry

Enable and configure logging of Data Loss Prevention (DLP) events.

When a DLP rule is triggered, Firefox records the event and submits it in the enterprise telemetry ping, which is kept separate from general Firefox telemetry. Events are logged with full URLs by default, so this policy is normally used to turn logging off or to reduce what it records.

Values set by this policy are locked, so users cannot change them.

FirefoxFirefox ESRFirefox Enterprise
Not supportedNot supportedAvailable since 155

CCK2 Equivalent: N/A
Preferences Affected: browser.contentanalysis.enterprise.telemetry.enabled, browser.contentanalysis.enterprise.telemetry.urlLogging

policies.json
{
"policies": {
"ContentAnalysisTelemetry": {
"Enabled": true,
"UrlLogging": "domain"
}
}
}
JSON schema
ContentAnalysisTelemetry JSON schema
{
"type": "object",
"properties": {
"Enabled": {
"type": "boolean"
},
"UrlLogging": {
"type": "string",
"enum": [
"full",
"domain",
"none"
]
}
}
}
  • Enabled: A Boolean. If false, DLP events are not recorded. The default is true.
  • UrlLogging: Controls how much URL information each event records. The default is full.
    • full: Log complete URLs, including paths and parameters.
    • domain: Log only URL hostnames.
    • none: Do not log URL information.