Skip to content

Audit Server

Audit Server is a service in Self Managed deployment of Privacera that collects audit logs from various services and distributes them to the configured destinations. By default it sends the logs to Apache Solr and it can be configured to send logs to other destinations like Azure ADLS, Amazon S3, etc.

flowchart LR
    subgraph Left["Source"]
        RP[Apache Ranger Plugins]
        PC[Privacera Connectors]
        PDS[Privacera DataServer]
    end

    AS[Audit Server]

    subgraph Right["Destination"]
        ASolr[Apache Solr]
        AWS[AWS S3]
        Azure[Azure ADLS]
        GCP[GCP GCS]
    end

    RP --> AS
    PC --> AS
    PDS --> AS
    AS --> ASolr
    AS --> AWS
    AS --> Azure
    AS --> GCP

Comments