Privado
  • Privado
  • Getting Started With Privado
    • Quick Start
    • Running a Scan
    • Understanding Results
    • Command Reference
    • Understanding privado.json
      • Sources
      • Processing
      • Data Flow
      • Collections
      • Violations
  • Understanding Rules
    • What are Rules?
    • Sources
    • Sinks
      • Understanding Sinks
      • Storages
      • Third Parties
      • Leakages
      • Internal APIs
    • Collections
    • Policies
  • Tutorials
    • How to scan a repository using Privado
  • Customizing Privado
    • Add a new Source
    • Add a new Leakage Sink
    • Add a new Storage Sink
    • Add a new Third Party Sink
    • Add a new Policy
  • ROPA Report
    • Generating ROPA Report
  • Play Store Data Safety Report
    • Generate Play Store Data Safety Report
    • Uploading results to Play Store
  • Extra
    • Configurations
    • Contributing through GitHub
  • About Privado
    • LICENSING
    • Privacy Policy
    • Security
Powered by GitBook
On this page
  • Configurations
  • Metrics Collection
  • Privado Cloud Sync
Edit on GitHub
  1. Extra

Configurations

Configurations

Privado’s execution can be configured in multiple ways. All configurations are located under the config folder.

Metrics Collection

Privado collects performance metrics about its own execution. These metrics do not identify you and are completely anonymous. If you still have concerns, you can turn this off by opening the file $HOME/.privado.config.json and setting the following values:

{
    "metrics": false,
    "syncToPrivadoCloud": true
}      

Privado Cloud Sync

By default, Privado results are synced to the Privado Cloud so that users can use the Privado Dashboard for reviewing results, observing data flows and analyzing privacy issues. No code is sent to the cloud. Only the results summary is sent for visualization. If you do not wish to use Privado cloud, you can turn this off by opening the file $HOME/.privado.config.json and setting the following values:

{
    "metrics": true,
    "syncToPrivadoCloud": false
}    
PreviousUploading results to Play StoreNextContributing through GitHub

Last updated 2 years ago