Skip to main content

Coralogix Audit

Overview

Users with audit permissions can utilize Coralogix audit logs to monitor organizational activity within Coralogix, including all user actions and API operations. This tool empowers you to track actions, ensure compliance, and maintain transparency across your team or organization.

Use Coralogix Audit to:

  • Review infrastructure-related user activities like payment or resource configuration changes.
  • Track before-and-after states of any system changes.
  • Monitor API operations during specific timeframes — from the API call, to the resulting action, and its outcome.
  • Create analytics to evaluate activity across your account by product.

How it works

Audit events from your teams (the source teams) are routed to a single designated destination team — the audit team — where they're centralized for querying and analysis. With Audit v2, events are logged and delivered to the audit team in real time as they occur (e.g., when a query is executed or an API operation takes place). These events follow a standardized structure, ensuring efficient querying and compliance-focused analysis.

This page describes Audit v2, the current audit log structure. The earlier structure is covered in Deprecation of Audit v1 schema.

Permissions

To view or manage audit team settings, users must have the required permissions:

ResourceActionDescription
team-auditingReadConfigView team audit settings
team-auditingUpdateConfigManage team audit settings

Membership in the audit team allows you to view audit events.

Setup

Access audit settings

In the main menu, select Settings, then Audit. The page opens with the title Team audit log.

Audit log destination card

The Audit log destination card shows where audit logs from the current team are sent. A badge on the card indicates the current state:

BadgeMeaning
ActiveAudit logs from this team are sent to the destination shown on the card.
InactiveA destination is set, but audit logs from this team aren't being sent to it.
Not configuredNo destination has been set yet.
Note

The audit log destination only controls where audit logs are routed — not whether audit data is collected. Audit data collection and datasets are configured in Dataspace Management.

To configure a destination:

  1. Select Configure audit destination (first-time setup) or Change destination (to swap an existing destination).
  2. In the Change audit log destination drawer, search for the team you want to use as the destination and select Set as destination.
  3. In the confirmation dialog, select Change destination.

Use the toggle on the card to activate or deactivate sending audit logs without changing the destination.

Select View audit history on the card to open the destination team filtered to events from the current team. You are redirected to Explore.

Team members card

The Team members card lists members of the current team — the source team whose actions are being audited — not members of the destination audit team.

For each member you can:

  • Filter by role or search by name and email.
  • Select View user audit logs to open the destination team filtered to that user's events.

If no destination is configured, View user audit logs is unavailable.

Billing & usage

The audit team has a daily quota of up to 25 MB and a retention period of 7 days.

This quota should generally be sufficient for audit purposes. However, using the quota management CLI, you can increase it or reallocate it between teams if needed.

Configure your S3 archive to retain audit logs for longer periods. You can query these logs in Explore or use Background Queries for long-running queries.

Audit events structure

Events follow a unified structure, comprising an audit envelope and an audit payload. Payloads are standardized per event type (e.g., after for create, before/after for update, etc.).

Audit envelope

The envelope structure consists of the following fields:

FieldDescription
auditVersionAudit log structure version (e.g., v2, v3, etc.).
eventNameThe name of the event reflects its related features and functionality.
cxFeatureThe specific Coralogix feature the event data is related to.
cxFeatureGroupStable Coralogix feature groups, used as the subsystem name of each audit event.
eventKindThe type of the event (Action/Update/Delete/Create/Get/List). eventData payload structure is determined by this key.
endpointInfoProvides connection information, like the protocol used to connect to the system, the IP address that sent the request, and the request protocol.
authDetailsAuthentication details that depend on the type of authentication (API key, user login, or internal context).
actorDetailsDetails about the actor responsible for the action (organization, user, or team).
eventDataThe event payload, which contains details about the resources affected by the event and/or the resources themselves.
outcomeThe logical outcome of the actions. Contains the outcome status and failure type if relevant.

Example

{
"endpointInfo":{
"clientInfo":{
"ipAddress": <ip_address>,
"userAgent": <user_agent>
},
"protocol": "HTTP",
"httpDetails": {
"statusCode": 200
}
},
"cxFeatureGroup": "metrics",
"actorDetails": {
"actorType": "User",
"username": <username>,
"teamId": <team_id>,
"teamName": <team_name>,
"orgName": <org_name>
},
"auditVersion": "v2",
"eventData": {
...
},
"eventKind": "Action",
"eventName": "logs-data-api.ReadData",
"authDetails": {
"authType": <auth_type>,
"apiKeyId": <api_key_id>,
"apiKeyName": <api_key_name>,
"apiKeyOwnerType": <api_key_owner_type>
},
"outcome": {
"status": "Success",
"statusMessage": "200 OK"
},
"cxFeature": "metrics.data-api"
}

Audit payload

Event type

Each event type has a common payload structure, which is contained in the eventData field and is determined by the event type (eventKind field).

Note

Large payloads are converted to strings and contained in the stringifiedEventData field for increased indexing efficiency.

  • Action

    Contains complex event data with varying structure.

  • List

    Contains a filter field with the resource request.

    "eventData": {
    "filter": <query>
    }
  • Get

    Contains an identifier of the received resource.

    "eventData":{
    "identifier": <resource_id>
    }
  • Delete

    Contains the deleted resource.

    "eventData": {
    "data": {
    "displayName": <display_name>,
    "description": <description>,
    "filters": [
    ...
    ],
    "id": <resource_id>
    }
    }
  • Create

    Contains the created resource.

    "eventData": {
    "data": {
    "data": { ... },
    "name": <created_resource_name>,
    "id": <resource_id>
    }
    }
  • Update

    Contains the original and new versions of a resource.

    "eventData": {
    "before": { ... },
    "after": { ... }
    }

Event type per feature

The following tables list the audit events emitted by each Coralogix feature. For every feature, they show the eventName, its corresponding eventType, and the field type (eventKind) that determines the payload structure. Expand a feature to see the events it produces.

Event NameEvent TypeField Type
actions.orderACTION_EVENT_TYPE_ACTION_ORDERAction
actions.listLIST_EVENT_TYPE_ACTION_LISTList
actions.getGET_EVENT_TYPE_ACTION_GETGet
actions.deleteDELETE_EVENT_TYPE_ACTION_DELETEDelete
actions.createCREATE_EVENT_TYPE_ACTION_CREATECreate
actions.updateUPDATE_EVENT_TYPE_ACTION_REPLACEUpdate

Access Policies

Event NameEvent TypeField Type
access-policy.createCREATE_EVENT_TYPE_ACCESS_POLICYCreate
access-policy.deleteDELETE_EVENT_TYPE_ACCESS_POLICYDelete
access-policy.updateUPDATE_EVENT_TYPE_ACCESS_POLICYUpdate
Event NameEvent TypeField Type
alert.snoozeACTION_EVENT_TYPE_ALERT_SNOOZEAction
alerts.listLIST_EVENT_TYPE_ALERTList
alerts.getGET_EVENT_TYPE_ALERTGet
alerts.deleteDELETE_EVENT_TYPE_ALERTDelete
alerts.createCREATE_EVENT_TYPE_ALERTCreate
alerts.updateUPDATE_EVENT_TYPE_ALERTUpdate
Event NameEvent TypeField Type
alert_scheduler.listLIST_EVENT_TYPE_ALERT_SCHEDULERList
alert_scheduler.getGET_EVENT_TYPE_ALERT_SCHEDULERGet
alert_scheduler.deleteDELETE_EVENT_TYPE_ALERT_SCHEDULERDelete
alert_scheduler.createCREATE_EVENT_TYPE_ALERT_SCHEDULERCreate
alert_scheduler.updateUPDATE_EVENT_TYPE_ALERT_SCHEDULERUpdate
Event NameEvent TypeField Type
api-key.getGET_EVENT_TYPE_API_KEYGet
api-key.deleteDELETE_EVENT_TYPE_API_KEYDelete
api-key.createCREATE_EVENT_TYPE_API_KEYCreate
api-key.updateUPDATE_EVENT_TYPE_API_KEYUpdate
api-keys.listLIST_EVENT_TYPE_API_KEYList
team-api-keys-security-settings.updateUPDATE_EVENT_TYPE_API_KEY_SECURITY_SETTINGUpdate
Event NameEvent TypeField Type
apm.entity.actionACTION_EVENT_TYPE_APM_ENTITYAction
apm.entity.listLIST_EVENT_TYPE_APM_ENTITYList
apm.entity.getGET_EVENT_TYPE_APM_ENTITYGet
apm.entity.deleteDELETE_EVENT_TYPE_APM_ENTITYDelete
apm.entity.createCREATE_EVENT_TYPE_APM_ENTITYCreate
apm.settings.updateUPDATE_EVENT_TYPE_APM_SETTINGSUpdate
apm.entity.updateUPDATE_EVENT_TYPE_APM_ENTITYUpdate

Archive Setup

Event NameEvent TypeField Type
archive-setup.getGET_EVENT_TYPE_ARCHIVE_SETUPGet
archive-setup.updateUPDATE_EVENT_TYPE_ARCHIVE_SETUPUpdate

Audit Teams

Event NameEvent TypeField Type
auditing.attach-teamACTION_EVENT_TYPE_AUDITING_ATTACH_TEAMAction
auditing.audit-team.createCREATE_EVENT_TYPE_AUDITING_AUDIT_TEAMCreate
auditing.audit-team.deactivateACTION_EVENT_TYPE_AUDITING_DEACTIVATE_AUDIT_TEAMAction
auditing.audit-team.is-configuredACTION_EVENT_TYPE_AUDITING_IS_TEAM_CONFIGURESAction
auditing.audit-teams.listLIST_EVENT_TYPE_AUDITING_AUDIT_TEAMSList
auditing.detach-teamACTION_EVENT_TYPE_AUDITING_DETACH_TEAMAction
Event NameEvent TypeField Type
case.acknowledgeACTION_EVENT_TYPE_CASE_ACKNOWLEDGEAction
case.ai-summary.generateACTION_EVENT_TYPE_CASE_AI_SUMMARY_GENERATEAction
case.alert-events.get-casesACTION_EVENT_TYPE_CASE_ALERT_EVENTS_GET_CASESAction
case.alert-events.get-idsACTION_EVENT_TYPE_CASE_ALERT_EVENTS_GET_IDSAction
case.analytics.get-available-filtersACTION_EVENT_TYPE_CASE_ANALYTICS_GET_AVAILABLE_FILTERSAction
case.analytics.get-metricsACTION_EVENT_TYPE_CASE_ANALYTICS_GET_METRICSAction
case.analytics.get-overviewACTION_EVENT_TYPE_CASE_ANALYTICS_GET_OVERVIEWAction
case.assignACTION_EVENT_TYPE_CASE_ASSIGNAction
case.bulk-acknowledgeACTION_EVENT_TYPE_CASE_BULK_ACKNOWLEDGEAction
case.bulk-assignACTION_EVENT_TYPE_CASE_BULK_ASSIGNAction
case.bulk-closeACTION_EVENT_TYPE_CASE_BULK_CLOSEAction
case.bulk-priority-override.clearACTION_EVENT_TYPE_CASE_BULK_CLEAR_PRIORITY_OVERRIDEAction
case.bulk-priority-override.setACTION_EVENT_TYPE_CASE_BULK_SET_PRIORITY_OVERRIDEAction
case.bulk-resolveACTION_EVENT_TYPE_CASE_BULK_RESOLVEAction
case.bulk-unassignACTION_EVENT_TYPE_CASE_BULK_UNASSIGNAction
case.closeACTION_EVENT_TYPE_CASE_CLOSEAction
case.comments.createACTION_EVENT_TYPE_CASE_COMMENTS_CREATEAction
case.comments.deleteACTION_EVENT_TYPE_CASE_COMMENTS_DELETEAction
case.comments.updateACTION_EVENT_TYPE_CASE_COMMENTS_UPDATEAction
case.deep-links.getACTION_EVENT_TYPE_CASE_GET_DEEP_LINKSAction
case.events.getACTION_EVENT_TYPE_CASE_EVENTS_GETAction
case.events.listACTION_EVENT_TYPE_CASE_EVENTS_LISTAction
case.events.sync-externalACTION_EVENT_TYPE_CASE_SYNC_EXTERNAL_EVENTSAction
case.external-references.getACTION_EVENT_TYPE_CASE_GET_EXTERNAL_REFERENCESAction
case.filter-values.getACTION_EVENT_TYPE_CASE_GET_FILTER_VALUESAction
case.getGET_EVENT_TYPE_CASEGet
case.grouping-keys.getACTION_EVENT_TYPE_CASE_GET_GROUPING_KEYSAction
case.listLIST_EVENT_TYPE_CASEList
case.notification-delivery.listLIST_EVENT_TYPE_CASE_NOTIFICATION_DELIVERYList
case.priority-override.clearACTION_EVENT_TYPE_CASE_CLEAR_PRIORITY_OVERRIDEAction
case.priority-override.setACTION_EVENT_TYPE_CASE_SET_PRIORITY_OVERRIDEAction
case.resolveACTION_EVENT_TYPE_CASE_RESOLVEAction
case.system-defaults.getACTION_EVENT_TYPE_CASE_GET_SYSTEM_DEFAULTSAction
case.unacknowledgeACTION_EVENT_TYPE_CASE_UNACKNOWLEDGEAction
case.unassignACTION_EVENT_TYPE_CASE_UNASSIGNAction
case.updateUPDATE_EVENT_TYPE_CASEUpdate

Case team configuration

Event NameEvent TypeField Type
case-team-config.createCREATE_EVENT_TYPE_CASE_TEAM_CONFIGCreate
case-team-config.deleteDELETE_EVENT_TYPE_CASE_TEAM_CONFIGDelete
case-team-config.getGET_EVENT_TYPE_CASE_TEAM_CONFIGGet
case-team-config.get-activeACTION_EVENT_TYPE_CASE_TEAM_CONFIG_GET_ACTIVEAction
case-team-config.updateUPDATE_EVENT_TYPE_CASE_TEAM_CONFIGUpdate
Event NameEvent TypeField Type
cloud-metadata-enrichment.deleteDELETE_EVENT_TYPE_CLOUD_METADATA_ENRICHMENTDelete
cloud-metadata-enrichment.createCREATE_EVENT_TYPE_CLOUD_METADATA_ENRICHMENTCreate
cloud-metadata-enrichment.updateUPDATE_EVENT_TYPE_CLOUD_METADATA_ENRICHMENTUpdate
Event NameEvent TypeField Type
profiles.symbols.uploadACTION_EVENT_TYPE_PROFILES_SYMBOLS_UPLOADAction
profiles.queryACTION_EVENT_TYPE_PROFILES_QUERYAction
profiles.query.graphACTION_EVENT_TYPE_PROFILES_QUERY_GRAPHAction
Event NameEvent TypeField Type
custom-enrichment.overwriteACTION_EVENT_TYPE_OVERWRITE_CUSTOM_ENRICHMENTSAction
custom-enrichment.deleteDELETE_EVENT_TYPE_CUSTOM_ENRICHMENTDelete
custom-enrichment.createCREATE_EVENT_TYPE_CUSTOM_ENRICHMENTCreate
custom-enrichment.updateUPDATE_EVENT_TYPE_CUSTOM_ENRICHMENTUpdate
custom-enrichment-data.listLIST_EVENT_TYPE_CUSTOM_ENRICHMENT_DATAList
custom-enrichment-data.getGET_EVENT_TYPE_CUSTOM_ENRICHMENT_DATAGet
custom-enrichment-data.deleteDELETE_EVENT_TYPE_CUSTOM_ENRICHMENT_DATADelete
custom-enrichment-data.createCREATE_EVENT_TYPE_CUSTOM_ENRICHMENT_DATACreate
custom-enrichment-data.updateUPDATE_EVENT_TYPE_CUSTOM_ENRICHMENT_DATAUpdate
Event NameEvent TypeField Type
dashboard-report.getGET_EVENT_TYPE_DASHBOARD_REPORTGet
dashboard-report-schedule.listLIST_EVENT_TYPE_DASHBOARD_REPORT_SCHEDULEList
dashboard-report-schedule.getGET_EVENT_TYPE_DASHBOARD_REPORT_SCHEDULEGet
dashboard-report-schedule.deleteDELETE_EVENT_TYPE_DASHBOARD_REPORT_SCHEDULEDelete
dashboard-report-schedule.createCREATE_EVENT_TYPE_DASHBOARD_REPORT_SCHEDULECreate
dashboard-report-schedule.updateUPDATE_EVENT_TYPE_DASHBOARD_REPORT_SCHEDULEUpdate
Event NameEvent TypeField Type
dashboards.listLIST_EVENT_TYPE_DASHBOARDList
dashboards.getGET_EVENT_TYPE_DASHBOARDGet
dashboards.deleteDELETE_EVENT_TYPE_DASHBOARDDelete
dashboards.createCREATE_EVENT_TYPE_DASHBOARDCreate
dashboards.updateUPDATE_EVENT_TYPE_DASHBOARDUpdate
Event NameEvent TypeField Type
datausage.get-dailyACTION_EVENT_TYPE_GET_DAILY_DATA_USAGEAction
datausage.exportACTION_EVENT_TYPE_EXPORT_DETAILED_DATA_USAGEAction
datausage.data-usage-to-metrics-enableACTION_EVENT_TYPE_DATA_USAGE_TO_METRICS_ENABLEAction
Event NameEvent TypeField Type
enrichment.listLIST_EVENT_TYPE_ENRICHMENTList
enrichment.getGET_EVENT_TYPE_ENRICHMENTGet
events-2-metrics.listLIST_EVENT_TYPE_EVENTS_2_METRICSList
events-2-metrics.getGET_EVENT_TYPE_EVENTS_2_METRICSGet
events-2-metrics.deleteDELETE_EVENT_TYPE_EVENTS_2_METRICSDelete
events-2-metrics.createCREATE_EVENT_TYPE_EVENTS_2_METRICSCreate
events-2-metrics.updateUPDATE_EVENT_TYPE_EVENTS_2_METRICSUpdate
Event NameEvent TypeField Type
extensions.undeployACTION_EVENT_TYPE_EXTENSION_UNDEPLOYAction
extensions.updateACTION_EVENT_TYPE_EXTENSION_UPDATEAction
extensions.deployACTION_EVENT_TYPE_EXTENSION_DEPLOYAction
extensions.listLIST_EVENT_TYPE_EXTENSIONList
extensions.getGET_EVENT_TYPE_EXTENSIONGet
Event NameEvent TypeField Type
forwarders.testACTION_EVENT_TYPE_FORWARDERS_TESTAction
forwarders.listLIST_EVENT_TYPE_FORWARDERSList
forwarders.getGET_EVENT_TYPE_FORWARDERSGet
forwarders.deleteDELETE_EVENT_TYPE_FORWARDERSDelete
forwarders.createCREATE_EVENT_TYPE_FORWARDERSCreate
forwarders.updateUPDATE_EVENT_TYPE_FORWARDERSUpdate
Event NameEvent TypeField Type
geo-enrichment.deleteDELETE_EVENT_TYPE_GEO_ENRICHMENTDelete
geo-enrichment.createCREATE_EVENT_TYPE_GEO_ENRICHMENTCreate
geo-enrichment.updateUPDATE_EVENT_TYPE_GEO_ENRICHMENTUpdate

Group

Event NameEvent TypeField Type
group.deleteDELETE_EVENT_TYPE_GROUPDelete
group.createCREATE_EVENT_TYPE_GROUPCreate
group.updateUPDATE_EVENT_TYPE_GROUPUpdate
Event NameEvent TypeField Type
incidents.closeACTION_EVENT_TYPE_INCIDENTS_CLOSEAction
incidents.assignACTION_EVENT_TYPE_INCIDENTS_ASSIGNAction
incidents.unassignACTION_EVENT_TYPE_INCIDENTS_UNASSIGNAction
incidents.acknowledgeACTION_EVENT_TYPE_INCIDENTS_ACKNOWLEDGEAction
incidents.listLIST_EVENT_TYPE_INCIDENTSList
incidents.getGET_EVENT_TYPE_INCIDENTSGet

Integrations

Event NameEvent TypeField Type
integration.check-api-key-permissionACTION_EVENT_TYPE_CHECK_API_KEY_PERMISSIONAction
integration.createCREATE_EVENT_TYPE_INTEGRATIONCreate
integration.definition.getGET_EVENT_TYPE_INTEGRATION_DEFINITIONGet
integration.deleteDELETE_EVENT_TYPE_INTEGRATIONDelete
integration.details.getGET_EVENT_TYPE_INTEGRATION_DETAILSGet
integration.generate-tokenACTION_EVENT_TYPE_INTEGRATION_GENERATE_TOKENAction
integration.getGET_EVENT_TYPE_INTEGRATIONGet
integration.listLIST_EVENT_TYPE_INTEGRATIONList
integration.quotas.getGET_EVENT_TYPE_INTEGRATION_QUOTASGet
integration.rotate-tokenACTION_EVENT_TYPE_INTEGRATION_ROTATE_TOKENAction
integration.rum-app-version.getGET_EVENT_TYPE_RUM_APPLICATION_VERSION_DATAGet
integration.sync-rum-dataACTION_EVENT_TYPE_INTEGRATION_SYNC_RUM_DATAAction
integration.template.getGET_EVENT_TYPE_INTEGRATION_TEMPLATEGet
integration.testACTION_EVENT_TYPE_INTEGRATION_TESTAction
integration.updateUPDATE_EVENT_TYPE_INTEGRATIONUpdate

Contextual Data Integrations

Event NameEvent TypeField Type
contextual-data-integration.createCREATE_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATIONCreate
contextual-data-integration.definition.getGET_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATION_DEFINITIONGet
contextual-data-integration.deleteDELETE_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATIONDelete
contextual-data-integration.details.getGET_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATION_DETAILSGet
contextual-data-integration.listLIST_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATIONList
contextual-data-integration.testACTION_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATION_TESTAction
contextual-data-integration.updateUPDATE_EVENT_TYPE_CONTEXTUAL_DATA_INTEGRATIONUpdate
Event NameEvent TypeField Type
livetail.subscribeACTION_EVENT_TYPE_LIVETAIL_SUBSCRIBEAction
Event NameEvent TypeField Type
logs.tco.testACTION_EVENT_TYPE_LOGS_TCO_TESTAction
logs.tco.orderACTION_EVENT_TYPE_LOGS_TCO_ORDERAction
logs.tco.listLIST_EVENT_TYPE_LOGS_TCOList
logs.tco.getGET_EVENT_TYPE_LOGS_TCOGet
logs.tco.deleteDELETE_EVENT_TYPE_LOGS_TCODelete
logs.tco.createCREATE_EVENT_TYPE_LOGS_TCOCreate
logs.tco.updateUPDATE_EVENT_TYPE_LOGS_TCOUpdate
Event NameEvent TypeField Type
logs.parsing-rules.orderACTION_EVENT_TYPE_LOGS_RULES_GROPS_ORDERAction
logs.parsing-rules.listLIST_EVENT_TYPE_LOGS_RULES_GROUPList
logs.parsing-rules.getGET_EVENT_TYPE_LOGS_RULES_GROUPGet
logs.parsing-rules.deleteDELETE_EVENT_TYPE_LOGS_RULES_GROUPDelete
logs.parsing-rules.createCREATE_EVENT_TYPE_LOGS_RULES_GROUPCreate
logs.parsing-rules.updateUPDATE_EVENT_TYPE_LOGS_RULES_GROUPUpdate

Logs Data API

Event NameEvent TypeField Type
logs-data-api.ReadDataACTION_EVENT_TYPE_DATA_API_READ_DATAAction
Event NameEvent TypeField Type
metrics.data-api.readACTION_EVENT_TYPE_METRICS_READ_DATAAction
Event NameEvent TypeField Type
notification-center-preset.set-as-defaultACTION_EVENT_TYPE_NOTIFICATION_CENTER_PRESET_SET_AS_DEFAULTAction
notification-center-preset.deleteDELETE_EVENT_TYPE_NOTIFICATION_CENTER_PRESETDelete
notification-center-preset.createCREATE_EVENT_TYPE_NOTIFICATION_CENTER_PRESETCreate
notification-center-preset.updateUPDATE_EVENT_TYPE_NOTIFICATION_CENTER_PRESETUpdate
notification-center-preset.getGET_EVENT_TYPE_NOTIFICATION_CENTER_PRESETGet
notification-center-preset.listLIST_EVENT_TYPE_NOTIFICATION_CENTER_PRESETList
Event NameEvent TypeField Type
notification-center-connector.createCREATE_EVENT_TYPE_NOTIFICATION_CENTER_CONNECTORCreate
notification-center-connector.deleteDELETE_EVENT_TYPE_NOTIFICATION_CENTER_CONNECTORDelete
notification-center-connector.getGET_EVENT_TYPE_NOTIFICATION_CENTER_CONNECTORGet
notification-center-connector.listLIST_EVENT_TYPE_NOTIFICATION_CENTER_CONNECTORList
notification-center-connector.updateUPDATE_EVENT_TYPE_NOTIFICATION_CENTER_CONNECTORUpdate
Event NameEvent TypeField Type
notification-center-global-router.createCREATE_EVENT_TYPE_NOTIFICATION_CENTER_GLOBAL_ROUTERCreate
notification-center-global-router.deleteDELETE_EVENT_TYPE_NOTIFICATION_CENTER_GLOBAL_ROUTERDelete
notification-center-global-router.getGET_EVENT_TYPE_NOTIFICATION_CENTER_GLOBAL_ROUTERGet
notification-center-global-router.listLIST_EVENT_TYPE_NOTIFICATION_CENTER_GLOBAL_ROUTERList
notification-center-global-router.updateUPDATE_EVENT_TYPE_NOTIFICATION_CENTER_GLOBAL_ROUTERUpdate
Event NameEvent TypeField Type
organization.add-domainACTION_EVENT_TYPE_ADD_DOMAINAction
organization.move-quotaACTION_EVENT_TYPE_MOVE_QUOTAAction
organization.settings.getGET_EVENT_TYPE_ORGANIZATION_SETTINGSGet
organization.settings.updateUPDATE_EVENT_TYPE_ORGANIZATION_SETTINGSUpdate
organization.updateUPDATE_EVENT_TYPE_ORGANIZATIONUpdate
Event NameEvent TypeField Type
outbound-webhook-types.listLIST_EVENT_TYPE_OUTBOUND_WEBHOOK_TYPESList
outbound-webhooks.testACTION_EVENT_TYPE_OUTBOUND_WEBHOOK_TESTAction
outbound-webhooks.listLIST_EVENT_TYPE_OUTBOUND_WEBHOOKList
outbound-webhooks.getGET_EVENT_TYPE_OUTBOUND_WEBHOOKGet
outbound-webhooks.deleteDELETE_EVENT_TYPE_OUTBOUND_WEBHOOKDelete
outbound-webhooks.createCREATE_EVENT_TYPE_OUTBOUND_WEBHOOKCreate
outbound-webhooks.updateUPDATE_EVENT_TYPE_OUTBOUND_WEBHOOKUpdate
Event NameEvent TypeField Type
recording-rule.deleteDELETE_EVENT_TYPE_RECORDING_RULEDelete
recording-rule.createCREATE_EVENT_TYPE_RECORDING_RULECreate
recording-rule.updateUPDATE_EVENT_TYPE_RECORDING_RULEUpdate
recording-rule-group.deleteDELETE_EVENT_TYPE_RECORDING_RULE_GROUPDelete
recording-rule-group.createCREATE_EVENT_TYPE_RECORDING_RULE_GROUPCreate
recording-rule-group.updateUPDATE_EVENT_TYPE_RECORDING_RULE_GROUPUpdate
recording-rule-group-set.deleteDELETE_EVENT_TYPE_RECORDING_RULE_GROUP_SETDelete
recording-rule-group-set.createCREATE_EVENT_TYPE_RECORDING_RULE_GROUP_SETCreate
recording-rule-group-set.updateUPDATE_EVENT_TYPE_RECORDING_RULE_GROUP_SETUpdate
Event NameEvent TypeField Type
role.listLIST_EVENT_TYPE_ROLEList
role.getGET_EVENT_TYPE_ROLEGet
role.deleteDELETE_EVENT_TYPE_ROLEDelete
role.createCREATE_EVENT_TYPE_ROLECreate
role.updateUPDATE_EVENT_TYPE_ROLEUpdate

RUM settings

Event NameEvent TypeField Type
rum-settings.getGET_EVENT_TYPE_RUM_SETTINGSGet
rum-settings.updateUPDATE_EVENT_TYPE_RUM_SETTINGSUpdate

SDK versions

Event NameEvent TypeField Type
sdk-version.getGET_EVENT_TYPE_SDK_VERSIONGet

Session Recording

Event NameEvent TypeField Type
session-recording.getGET_EVENT_TYPE_SESSION_RECORDINGGet

Source Map

Event NameEvent TypeField Type
source-map.getGET_EVENT_TYPE_SOURCE_MAPGet

Hide Errors

Event NameEvent TypeField Type
hide-errors.listLIST_EVENT_TYPE_HIDE_ERRORSList
hide-errors.getGET_EVENT_TYPE_HIDE_ERRORSGet
hide-errors.deleteDELETE_EVENT_TYPE_HIDE_ERRORSDelete
hide-errors.createCREATE_EVENT_TYPE_HIDE_ERRORSCreate
hide-errors.updateUPDATE_EVENT_TYPE_HIDE_ERRORSUpdate

Saved Filters

Event NameEvent TypeField Type
saved-filter.listLIST_EVENT_TYPE_SAVED_FILTERList
saved-filter.getGET_EVENT_TYPE_SAVED_FILTERGet
saved-filter.deleteDELETE_EVENT_TYPE_SAVED_FILTERDelete
saved-filter.createCREATE_EVENT_TYPE_SAVED_FILTERCreate
saved-filter.updateUPDATE_EVENT_TYPE_SAVED_FILTERUpdate
Event NameEvent TypeField Type
saml.user.email-verification-requiredACTION_EVENT_TYPE_SAML_EMAIL_VERIFICATION_REQUIREDAction
saml.user.reactivatedACTION_EVENT_TYPE_SAML_USER_REACTIVATEDAction
saml.user.sso-verification-requiredACTION_EVENT_TYPE_SAML_SSO_VERIFICATION_REQUIREDAction
Event NameEvent TypeField Type
scim.user.deleteACTION_EVENT_TYPE_SCIM_DELETE_USERAction
scim.group.replaceACTION_EVENT_TYPE_SCIM_REPLACE_GROUPAction
scim.user.createACTION_EVENT_TYPE_SCIM_CREATE_USERAction
scim.user.replaceACTION_EVENT_TYPE_SCIM_REPLACE_USERAction
scim.user.updateACTION_EVENT_TYPE_SCIM_UPDATE_USERAction
scim.group.deleteACTION_EVENT_TYPE_SCIM_DELETE_GROUPAction
scim.group.updateACTION_EVENT_TYPE_SCIM_UPDATE_GROUPAction
scim.group.createACTION_EVENT_TYPE_SCIM_CREATE_GROUPAction
scim.user.listLIST_EVENT_SCIM_USERList
scim.group.listLIST_EVENT_SCIM_GROUPList
scim.schema.listLIST_EVENT_SCIM_SCHEMAList
scim.schema.getGET_EVENT_SCIM_SCHEMAGet
scim.user.getGET_EVENT_SCIM_USERGet
scim.group.getGET_EVENT_SCIM_GROUPGet
Event NameEvent TypeField Type
scopes.listLIST_EVENT_TYPE_SCOPE_LISTList
scopes.getGET_EVENT_TYPE_SCOPE_GETGet
scopes.deleteDELETE_EVENT_TYPE_SCOPE_DELETEDelete
scopes.createCREATE_EVENT_TYPE_SCOPE_CREATECreate
scopes.updateUPDATE_EVENT_TYPE_SCOPE_UPDATEUpdate
Event NameEvent TypeField Type
security-enrichment.deleteDELETE_EVENT_TYPE_SECURITY_ENRICHMENTDelete
security-enrichment.createCREATE_EVENT_TYPE_SECURITY_ENRICHMENTCreate
security-enrichment.updateUPDATE_EVENT_TYPE_SECURITY_ENRICHMENTUpdate
Event NameEvent TypeField Type
service-map.getACTION_EVENT_TYPE_SERVICE_MAP_GETAction
spans.count.getACTION_EVENT_TYPE_SPANS_COUNTAction
spans.filters.getACTION_EVENT_TYPE_SPANS_FILTERSAction
spans.graphs.getACTION_EVENT_TYPE_SPANS_GRAPHSAction
spans.lists.highlightsACTION_EVENT_TYPE_HIGHLIGHTS_LIST_SPANS_HIGHLIGHTSAction
spans.searchACTION_EVENT_TYPE_SPANS_SEARCHAction
traces.count.getACTION_EVENT_TYPE_TRACES_COUNT_GETAction
traces.getACTION_EVENT_TYPE_TRACES_GET_TRACEAction
traces.latency-percentile.getACTION_EVENT_TYPE_TRACES_LATENCY_PERCENTILE_GETAction
traces.searchACTION_EVENT_TYPE_TRACES_SEARCHAction
Event NameEvent TypeField Type
spans.tco.orderACTION_EVENT_TYPE_SPANS_TCO_ORDERAction
spans.tco.listLIST_EVENT_TYPE_SPANS_TCOList
spans.tco.getGET_EVENT_TYPE_SPANS_TCOGet
spans.tco.deleteDELETE_EVENT_TYPE_SPANS_TCODelete
spans.tco.createCREATE_EVENT_TYPE_SPANS_TCOCreate
spans.tco.updateUPDATE_EVENT_TYPE_SPANS_TCOUpdate
Event NameEvent TypeField Type
sso.set-idp-parametersACTION_EVENT_TYPE_SSO_SET_IDP_PARAMETERSAction
sso.set-activeACTION_EVENT_TYPE_SSO_SET_ACTIVEAction
sso.configuration.getGET_EVENT_SSO_CONFIGURATIONGet
sso.sp-parameters.getGET_EVENT_SSO_SP_PARAMETERSGet
sso.config.updateUPDATE_EVENT_TYPE_SAML_CONFIGUpdate
sso.metadata.updateUPDATE_EVENT_TYPE_SAML_METADATAUpdate
Event NameEvent TypeField Type
team-ip-access.listLIST_EVENT_TYPE_IP_FILTERList
team-ip-access.deleteDELETE_EVENT_TYPE_IP_FILTERDelete
team-ip-access.createCREATE_EVENT_TYPE_IP_FILTERCreate
team-ip-access.updateUPDATE_EVENT_TYPE_IP_FILTERUpdate

Team Management

Event NameEvent TypeField Type
team-landing-page.updateUPDATE_EVENT_TYPE_TEAM_LANDING_PAGEUpdate
team-member.removeACTION_EVENT_TYPE_TEAM_MEMBER_REMOVEAction
team-member.unlockACTION_EVENT_TYPE_TEAM_MEMBER_UNLOCKAction
team-member.addACTION_EVENT_TYPE_TEAM_MEMBER_ADDAction
team-member.inviteACTION_EVENT_TYPE_TEAM_MEMBER_INVITEAction
team-member.listLIST_EVENT_TEAM_MEMBERList
team-sessions.session-timeout.updateUPDATE_EVENT_TYPE_TEAM_SESSIONS_SESSION_TIMEOUTUpdate
team-sessions.force-logout.updateUPDATE_EVENT_TYPE_TEAM_SESSIONS_FORCE_LOGOUTUpdate
team-url.updateUPDATE_EVENT_TYPE_TEAM_URLUpdate
team-member.createCREATE_EVENT_TYPE_TEAM_MEMBER_CREATECreate

team-member.add is deprecated; use team-member.create instead.

Templates

Event NameEvent TypeField Type
templates.list.readACTION_EVENT_TYPE_TEMPLATES_READ_DATAAction
templates.count.readACTION_EVENT_TYPE_TEMPLATES_COUNT_READ_DATAAction
templates-dates.getGET_EVENT_TYPE_TEMPLATES_DATESGet

User Account

Event NameEvent TypeField Type
user-account.loginACTION_EVENT_TYPE_USER_ACCOUNT_LOGINAction
user-account.mfa-complete-enrolmentACTION_EVENT_TYPE_USER_ACCOUNT_MFA_COMPLETE_ENROLMENTAction
user-account.mfa-regenerate-backup-codesACTION_EVENT_TYPE_USER_ACCOUNT_MFA_REGENERATE_BACKUP_CODESAction
user-account.mfa-start-enrolmentACTION_EVENT_TYPE_USER_ACCOUNT_MFA_START_ENROLMENTAction
user-account.mfa-unenrollACTION_EVENT_TYPE_USER_ACCOUNT_MFA_UNENROLLAction
user-account.mfa-verification.lockACTION_EVENT_TYPE_USER_ACCOUNT_MFA_VERIFICATION_LOCKAction
user-account.mfa-verification.verifyACTION_EVENT_TYPE_USER_ACCOUNT_MFA_VERIFICATION_VERIFYAction
user-account.password-changeACTION_EVENT_TYPE_USER_ACCOUNT_PASSWORD_CHANGEAction

User Management

Event NameEvent TypeField Type
user-landing-page.updateUPDATE_EVENT_TYPE_USER_LANDING_PAGEUpdate
user-settings.getGET_EVENT_TYPE_USER_SETTINGGet
user-settings.updateUPDATE_EVENT_TYPE_USER_SETTINGUpdate
users-login-methods.updateUPDATE_EVENT_TYPE_USERS_LOGIN_METHODSUpdate
Event NameEvent TypeField Type
version-benchmarks.listLIST_EVENT_TYPE_VERSION_BENCHMARKSList
version-benchmarks.getGET_EVENT_TYPE_VERSION_BENCHMARKSGet
version-benchmarks.deleteDELETE_EVENT_TYPE_VERSION_BENCHMARKSDelete
version-benchmarks.createCREATE_EVENT_TYPE_VERSION_BENCHMARKSCreate
version-benchmarks.updateUPDATE_EVENT_TYPE_VERSION_BENCHMARKSUpdate
Event NameEvent TypeField Type
view.listLIST_EVENT_TYPE_VIEWList
view.getGET_EVENT_TYPE_VIEWGet
view.deleteDELETE_EVENT_TYPE_VIEWDelete
view.createCREATE_EVENT_TYPE_VIEWCreate
view.updateUPDATE_EVENT_TYPE_VIEWUpdate

View Folder

Event NameEvent TypeField Type
view-folder.listLIST_EVENT_TYPE_VIEW_FOLDERList
view-folder.getGET_EVENT_TYPE_VIEW_FOLDERGet
view-folder.deleteDELETE_EVENT_TYPE_VIEW_FOLDERDelete
view-folder.createCREATE_EVENT_TYPE_VIEW_FOLDERCreate
view-folder.updateUPDATE_EVENT_TYPE_VIEW_FOLDERUpdate

Monitoring audit events

To monitor your audit events, take the following steps:

  1. Sign in to the team designated as your audit team.
  2. View audit events in Explore or Visual Explorer, or create visualizations in Custom Dashboards.

Monitor & query audit events in Explore

Your audit events will appear in the Logs screen in Explore. For any log, click on the left-hand ellipsis and select Show graph for key from the dropdown menu.

auditv2_explore.png

This graph shows the breakdown of actions taken on the organization, team, and user levels for actorType.

Let’s say an admin is interested in querying users with the most actions taken, grouped by user name and team name. The DataPrime query will look as follows:

source logs | filter actorDetails.username != null | filter actorDetails.teamName != null | groupby actorDetails.username as username, actorDetails.teamName as team_name agg count() as count

Create analytics in Custom Dashboards

Create a visual in Custom Dashboards to view audit event analytics.

auditv2_analytics1.png

In this example, the user has created a pie chart to understand the breakdown of events per Coralogix environment. Here you can see the user query failure errors per Coralogix event.

auditv2_analytics2.png

Last updated on