Skip to main content

Get Logging Settings

GET 

/api/v32.04/settings/logging

x-prisma-cloud-target-env: {"permission":"manageAlerts","saas":true,"self-hosted":true}
x-public: true

Returns the logging settings.

cURL Request

Refer to the following example cURL request that uses basic auth to retrieve your logging details.

$ curl -k \
-u <USER> \
-H 'Content-Type: application/json' \
-X GET \
"https://<CONSOLE>/api/v<VERSION>/settings/logging"

Responses

LoggingSettings are the logging settings

Schema
    consoleAddress string

    ConsoleAddress is the console address used by the admin to access the console, used for creating links for runtime events.

    enableMetricsCollection boolean

    EnableMetricsCollection indicates whether metric collections feature is enabled.

    includeRuntimeLink boolean

    IncludeRuntimeLink indicates whether link to forensic event should be included in the output.

    stdout object

    LoggerSetting are a specific logger settings

    allProcEvents boolean

    AllProcEvents indicates whether any new spawned container process should generate an event source entry.

    enabled boolean

    Enabled indicates whether log feature is enabled.

    verboseScan boolean

    VerboseScan indicates whether detailed scan (Compliance/Vulnerability) result should be written to event logger.

    syslog object

    SyslogSettings are the syslog settings

    addr string

    Addr is the remote address for sending events.

    allProcEvents boolean

    AllProcEvents indicates whether any new spawned container process should generate an event source entry.

    cert string

    Cert is the server cert for dialing TLS syslogger.

    enabled boolean

    Enabled indicates whether log feature is enabled.

    id string

    ID represents the user's custom identifier string.

    verboseScan boolean

    VerboseScan indicates whether detailed scan (Compliance/Vulnerability) result should be written to event logger.

Loading...