Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updaing audit log definitions #6415

Merged
merged 7 commits into from
Nov 7, 2024
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 57 additions & 4 deletions website/docs/docs/cloud/manage-access/audit-log.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
| Auth Provider Changed | auth_provider.Changed | Authentication provider settings changed |
| Credential Login Succeeded | auth.CredentialsLoginSucceeded | User successfully logged in with username and password |
| SSO Login Failed | auth.SsoLoginFailed | User login via SSO failed |
| SSO Login Succeeded | auth.SsoLoginSucceeded | User successfully logged in via SSO
| SSO Login Succeeded | auth.SsoLoginSucceeded | User successfully logged in via SSO |

### Environment

Expand Down Expand Up @@ -93,7 +93,7 @@
| ------------- | ----------------------------- | ------------------------------ |
| Group Added | user_group.Added | New Group successfully created |
| Group Changed | user_group.Changed | Group settings changed |
| Group Removed | user_group.Changed | Group successfully removed |
| Group Removed | user_group.Removed | Group successfully removed |

### User

Expand Down Expand Up @@ -149,12 +149,65 @@

### Credentials

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -------------------------------- |
| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| Credentials Added to Project | credentials.Added | Project credentials added |
| Credentials Changed in Project | credentials.Changed | Credentials changed in project |
| Credentials Removed from Project | credentials.Removed | Credentials removed from project |


### Git integration

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| GitLab Application Changed | gitlab_application.changed | GitLab configuration in dbt Cloud changed |

### Webhooks

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| Webhook Subscriptions Added | webhook_subscription.added | New webhook configured in settings |
| Webhook Subscriptions Changed | webhook_subscription.changed | Existing webhook configuration altered |
| Webhook Subscriptions Removed | webhook_subscription.removed | Existing webhook deleted |


### Semantic Layer

Check warning on line 174 in website/docs/docs/cloud/manage-access/audit-log.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/docs/cloud/manage-access/audit-log.md#L174

[custom.SentenceCaseHeaders] 'Semantic Layer' should use sentence-style capitalization. Try '' instead.
Raw output
{"message": "[custom.SentenceCaseHeaders] 'Semantic Layer' should use sentence-style capitalization. Try '' instead.", "location": {"path": "website/docs/docs/cloud/manage-access/audit-log.md", "range": {"start": {"line": 174, "column": 5}}}, "severity": "WARNING"}

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| Semantic Layer Config Added | semantic_layer_config.added | A Semantic Layer config was added |
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved
| Semantic Layer Config Changed | semantic_layer_config.changed | A Semantic Layer config (not related to credentials) was changed |
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved
| Semantic Layer Config Removed | semantic_layer_config.removed | A Semantic Layer config was removed |
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved
| Semantic Layer Credentials Added | semantic_layer_credentials.added | Semantic Layer credentials added |
| Semantic Layer Credentials Changed| semantic_layer_credentials.changed | Semantic Layer credentials changed. Does not trigger semantic_layer_config.changed|
| Semantic Layer Credentials Removed| semantic_layer_credentials.removed | Semantic Layer credentials were removed |
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved

### Extended attributes

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| Extended Attribute Added | extended_attributes.added | Extended attribute added to a project |
| Extended Attribute Changed | extended_attributes.changed | Extended attribute changed or removed |


### Account-scoped personal access token

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| Account Scoped Personal Access Token Created | account_scoped_pat.created | An account-scoped PAT was created |
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved
| Account Scoped Personal Access Token Deleted | account_scoped_pat.deleted | An account-scoped PAT was deleted |
matthewshaver marked this conversation as resolved.
Show resolved Hide resolved

### IP restrictions

| Event Name | Event Type | Description |
| -------------------------------- | ----------------------------- | -----------------------|
| IP Restrictions Toggled | ip_restrictions.toggled | IP restrictions feature enabled or disabled |
| IP Restrictions Rule Added | ip_restrictions.rule.added | IP restriction rule created |
| IP Restrictions Rule Changed | ip_restrictions.rule.changed | IP restriction rule edited |
| IP Restrictions Rule Removed | ip_restrictions.rule.removed | IP restriction rule deleted |



## Searching the audit log

You can search the audit log to find a specific event or actor, which is limited to the ones listed in [Events in audit log](#events-in-audit-log). The audit log successfully lists historical events spanning the last 90 days. You can search for an actor or event using the search bar, and then narrow your results using the time window.
Expand Down
Loading