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 Apache Kafka, 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

In Self Managed and Data Plane deployments, Audit Server is enabled by default.

In Self Managed deployment, Audit Server is deployed by default and is configured to send logs to Apache Solr. There is no additional configuration required however you can configure it to send logs to other destinations. The Advanced Configuration page provides more details on how to configure Audit Server to send logs to other destinations.

Comments