Collect Oracle NetSuite - NetSuite Applications Suite logs
This document explains how to ingest Oracle NetSuite - NetSuite Applications Suite logs to Google Security Operations using Google Cloud Storage V2.
Oracle NetSuite is a cloud-based enterprise resource planning (ERP) platform that provides comprehensive business management capabilities including financial management, customer relationship management (CRM), e-commerce, and inventory management. NetSuite generates extensive audit logs including user login trails, system notes tracking record changes, and API access logs that can be retrieved via the SuiteQL REST API for security monitoring and compliance purposes.
Before you begin
Ensure that you have the following prerequisites:
- A Google SecOps instance
- A GCP project with Cloud Storage, Cloud Run, Pub/Sub, and Cloud Scheduler APIs enabled
- Permissions to create and manage GCS buckets
- Permissions to manage IAM policies on GCS buckets
- Permissions to create Cloud Run services, Pub/Sub topics, and Cloud Scheduler jobs
- A NetSuite account with Administrator access
- NetSuite REST Web Services enabled
- Permissions to create integration records and access tokens in NetSuite
Configure NetSuite API access
To enable log collection via the SuiteQL REST API, you must enable REST Web Services, create an integration record, and generate Token-Based Authentication (TBA) credentials in NetSuite.
Enable required NetSuite features
- Sign in to your NetSuite account as an Administrator.
- Go to Setup > Company > Enable Features.
- Click the SuiteCloudtab.
- In the SuiteScriptsection, check the following boxes:
- Client SuiteScript
- Server SuiteScript
- In the SuiteTalk (Web Services)section, check the following box:
- REST Web Services
- In the Manage Authenticationsection, check the Token-Based Authenticationbox.
- Click I Agreeon the SuiteCloud Terms of Service page.
- Click Save.
Create an integration record
- In NetSuite, go to Setup > Integration > Manage Integrations > New.
- In the Namefield, enter
Google SecOps Integration. - In the Descriptionfield, enter
Integration for Google Security Operations log collection. - In the Statefield, leave the default Enabledoption selected.
- Click the Authenticationtab.
- In the Token-based Authenticationsection, check the Token-based Authenticationbox.
- Leave the TBA: Authorization Flowbox unchecked.
- Check the TBA: ISSUETOKEN ENDPOINTbox.
- Click Save.
-
On the confirmation page, copy and save the Consumer Key/Client IDand Consumer Secret/Client Secret.
Create a custom role for API access
- Go to Setup > Users/Roles > Manage Roles > New.
- In the Namefield, enter
Google SecOps API Role. - In the IDfield, enter
google_secops_api_role. - Click the Permissionssubtab.
- Click the Setupsubtab.
- Add the following permissions with Fullaccess level:
- Log in using Access Tokens
- User Access Tokens
- REST Web Services
- Click the Reportssubtab.
- Add the following permissions with Viewaccess level:
- SuiteAnalytics Workbook
- Click the Listssubtab.
- Add the following permissions with Viewaccess level:
- Login Audit Trail
- Click Save.
Assign the role to a user
- Go to Lists > Employees > Employees.
- Select the user account that will be used for the integration (or create a new dedicated integration user).
- Click Edit.
- Click the Accesstab.
- In the Rolessection, click Add.
- Select Google SecOps API Rolefrom the dropdown list.
- Click Save.
Create an access token
- Sign in to NetSuite as the user assigned the Google SecOps API Role.
- Go to Setup > Users/Roles > Access Tokens > New.
- On the Access Tokenpage:
- In the Application Namedropdown list, select Google SecOps Integration.
- In the Userdropdown list, select the user account assigned the Google SecOps API Role.
- In the Roledropdown list, select Google SecOps API Role.
- The Token Namefield is automatically populated. You can modify it if preferred.
- Click Save.
-
On the confirmation page, copy and save the Token IDand Token Secret.
Find your NetSuite Account ID
- In NetSuite, go to Setup > Company > Company Information.
- Locate the Account IDfield (displayed below the Time Zonesetting).
- Copy and save your Account ID (for example,
1234567or1234567_SB1for sandbox accounts).
Verify permissions
To verify the account has the required permissions:
- Sign in to NetSuite with the user assigned the Google SecOps API Role.
- Go to Setup > Users/Roles > View Login Audit Trail.
- If you can see the Login Audit Trail page, the account has the required permissions.
- If you cannot see this option, contact your NetSuite administrator to grant the Login Audit Trailpermission under the Listssubtab.
Test API access
-
Test your credentials before proceeding with the integration:
# Replace with your actual values ACCOUNT_ID = "your-account-id" # Replace underscores with hyphens in the account ID for the URL # For example: 1234567_SB1 becomes 1234567-sb1 URL_ACCOUNT_ID = $( echo " $ACCOUNT_ID " | tr '_' '-' | tr '[:upper:]' '[:lower:]' ) CONSUMER_KEY = "your-consumer-key" CONSUMER_SECRET = "your-consumer-secret" TOKEN_ID = "your-token-id" TOKEN_SECRET = "your-token-secret" # Test SuiteQL API access using OAuth 1.0 TBA # Note: This example requires the oauth1 CLI tool or Postman. # Use the following endpoint and headers to verify connectivity: # POST https://${URL_ACCOUNT_ID}.suitetalk.api.netsuite.com/services/rest/query/v1/suiteql?limit=5 # Headers: # Authorization: OAuth (with consumer key, token, HMAC-SHA256 signature) # Content-Type: application/json # Prefer: transient # Body: {"q": "SELECT id, date, status, user, emailaddress FROM LoginAudit ORDER BY date DESC"}
A successful response returns a JSON object containing LoginAudit records.
Create Google Cloud Storage bucket
- Go to the Google Cloud Console .
- Select your project or create a new one.
- In the navigation menu, go to Cloud Storage > Buckets.
- Click Create bucket.
-
Provide the following configuration details:
Setting Value Name your bucket Enter a globally unique name (for example, netsuite-audit-logs)Location type Choose based on your needs (Region, Dual-region, Multi-region) Location Select the location (for example, us-central1)Storage class Standard (recommended for frequently accessed logs) Access control Uniform (recommended) Protection tools Optional: Enable object versioning or retention policy -
Click Create.
Create service account for Cloud Run function
The Cloud Run function needs a service account with permissions to write to GCS bucket and be invoked by Pub/Sub.
Create service account
- In the GCP Console, go to IAM & Admin > Service Accounts.
- Click Create Service Account.
- Provide the following configuration details:
- Service account name: Enter
netsuite-audit-collector-sa - Service account description: Enter
Service account for Cloud Run function to collect NetSuite audit logs
- Service account name: Enter
- Click Create and Continue.
- In the Grant this service account access to projectsection, add the following roles:
- Click Select a role.
- Search for and select Storage Object Admin.
- Click + Add another role.
- Search for and select Cloud Run Invoker.
- Click + Add another role.
- Search for and select Cloud Functions Invoker.
- Click Continue.
- Click Done.
These roles are required for:
- Storage Object Admin: Write logs to GCS bucket and manage state files
- Cloud Run Invoker: Allow Pub/Sub to invoke the function
- Cloud Functions Invoker: Allow function invocation
Grant IAM permissions on GCS bucket
- Go to Cloud Storage > Buckets.
- Click on your bucket name (
netsuite-audit-logs). - Go to the Permissionstab.
- Click Grant access.
- Provide the following configuration details:
- Add principals: Enter the service account email (
netsuite-audit-collector-sa@PROJECT_ID.iam.gserviceaccount.com) - Assign roles: Select Storage Object Admin
- Add principals: Enter the service account email (
- Click Save.
Create Pub/Sub topic
- In the GCP Console, go to Pub/Sub > Topics.
- Click Create topic.
- Provide the following configuration details:
- Topic ID: Enter
netsuite-audit-trigger - Leave other settings as default
- Topic ID: Enter
- Click Create.
Create Cloud Run function to collect logs
The Cloud Run function will be triggered by Pub/Sub messages from Cloud Scheduler to fetch logs from the NetSuite SuiteQL REST API and write them to GCS.
- In the GCP Console, go to Cloud Run.
- Click Create service.
- Select Function(use an inline editor to create a function).
-
In the Configuresection, provide the following configuration details:
Setting Value Service name netsuite-audit-collectorRegion Select region matching your GCS bucket (for example, us-central1)Runtime Select Python 3.12or later -
In the Trigger (optional)section:
- Click + Add trigger.
- Select Cloud Pub/Sub.
- In Select a Cloud Pub/Sub topic, choose
netsuite-audit-trigger. - Click Save.
-
In the Authenticationsection:
- Select Require authentication.
- Check Identity and Access Management (IAM).
-
Scroll down and expand Containers, Networking, Security.
-
Go to the Securitytab:
- Service account: Select
netsuite-audit-collector-sa
- Service account: Select
-
Go to the Containerstab:
- Click Variables & Secrets.
- Click + Add variablefor each environment variable:
Variable Name Example Value Description GCS_BUCKETnetsuite-audit-logsGCS bucket name GCS_PREFIXnetsuite-auditPrefix for log files STATE_KEYnetsuite-audit/state.jsonState file path NS_ACCOUNT_ID1234567NetSuite Account ID NS_CONSUMER_KEYyour-consumer-keyConsumer Key from integration record NS_CONSUMER_SECRETyour-consumer-secretConsumer Secret from integration record NS_TOKEN_IDyour-token-idToken ID from access token NS_TOKEN_SECRETyour-token-secretToken Secret from access token MAX_RECORDS10000Max records per run PAGE_SIZE1000Records per SuiteQL page LOOKBACK_HOURS24Initial lookback period -
In the Variables & Secretssection, scroll down to Requests:
- Request timeout: Enter
600seconds (10 minutes)
- Request timeout: Enter
-
Go to the Settingstab:
- In the Resourcessection:
- Memory: Select 512 MiBor higher
- CPU: Select 1
- In the Resourcessection:
-
In the Revision scalingsection:
- Minimum number of instances: Enter
0 - Maximum number of instances: Enter
100
- Minimum number of instances: Enter
-
Click Create.
-
Wait for the service to be created (1-2 minutes).
-
After the service is created, the inline code editorwill open automatically.
Add function code
- Enter mainin the Entry pointfield.
-
In the inline code editor, create two files:
- main.py:
import functions_framework from google.cloud import storage import json import os import urllib3 import hashlib import hmac import base64 import time import secrets import urllib.parse from datetime import datetime , timezone , timedelta # Initialize HTTP client with timeouts http = urllib3 . PoolManager ( timeout = urllib3 . Timeout ( connect = 10.0 , read = 60.0 ), retries = False , ) # Initialize Storage client storage_client = storage . Client () # Environment variables GCS_BUCKET = os . environ . get ( 'GCS_BUCKET' ) GCS_PREFIX = os . environ . get ( 'GCS_PREFIX' , 'netsuite-audit' ) STATE_KEY = os . environ . get ( 'STATE_KEY' , 'netsuite-audit/state.json' ) NS_ACCOUNT_ID = os . environ . get ( 'NS_ACCOUNT_ID' ) NS_CONSUMER_KEY = os . environ . get ( 'NS_CONSUMER_KEY' ) NS_CONSUMER_SECRET = os . environ . get ( 'NS_CONSUMER_SECRET' ) NS_TOKEN_ID = os . environ . get ( 'NS_TOKEN_ID' ) NS_TOKEN_SECRET = os . environ . get ( 'NS_TOKEN_SECRET' ) MAX_RECORDS = int ( os . environ . get ( 'MAX_RECORDS' , '10000' )) PAGE_SIZE = int ( os . environ . get ( 'PAGE_SIZE' , '1000' )) LOOKBACK_HOURS = int ( os . environ . get ( 'LOOKBACK_HOURS' , '24' )) def get_netsuite_base_url ( account_id ): """Build the NetSuite REST API base URL from the account ID.""" url_account = account_id . replace ( '_' , '-' ) . lower () return f "https:// { url_account } .suitetalk.api.netsuite.com" def generate_oauth_header ( method , url , account_id , consumer_key , consumer_secret , token_id , token_secret ): """Generate OAuth 1.0 Authorization header using HMAC-SHA256.""" timestamp = str ( int ( time . time ())) nonce = secrets . token_hex ( 16 ) # Parse URL to separate base URL and query parameters parsed = urllib . parse . urlparse ( url ) base_url = f " { parsed . scheme } :// { parsed . netloc }{ parsed . path } " query_params = urllib . parse . parse_qs ( parsed . query , keep_blank_values = True ) # Build parameter string (OAuth params + query params) params = { 'oauth_consumer_key' : consumer_key , 'oauth_token' : token_id , 'oauth_nonce' : nonce , 'oauth_timestamp' : timestamp , 'oauth_signature_method' : 'HMAC-SHA256' , 'oauth_version' : '1.0' , } for key , values in query_params . items (): params [ key ] = values [ 0 ] # Sort parameters and create parameter string sorted_params = sorted ( params . items ()) param_string = '&' . join ( f " { urllib . parse . quote ( k , safe = '' ) } = { urllib . parse . quote ( v , safe = '' ) } " for k , v in sorted_params ) # Create signature base string signature_base = ( f " { method . upper () } & " f " { urllib . parse . quote ( base_url , safe = '' ) } & " f " { urllib . parse . quote ( param_string , safe = '' ) } " ) # Create signing key signing_key = ( f " { urllib . parse . quote ( consumer_secret , safe = '' ) } & " f " { urllib . parse . quote ( token_secret , safe = '' ) } " ) # Generate HMAC-SHA256 signature signature = base64 . b64encode ( hmac . new ( signing_key . encode ( 'utf-8' ), signature_base . encode ( 'utf-8' ), hashlib . sha256 ) . digest () ) . decode ( 'utf-8' ) # Build realm from account ID realm = account_id . replace ( '-' , '_' ) . upper () # Build Authorization header auth_header = ( f 'OAuth realm=" { realm } ",' f 'oauth_consumer_key=" { consumer_key } ",' f 'oauth_token=" { token_id } ",' f 'oauth_nonce=" { nonce } ",' f 'oauth_timestamp=" { timestamp } ",' f 'oauth_signature_method="HMAC-SHA256",' f 'oauth_version="1.0",' f 'oauth_signature=" { urllib . parse . quote ( signature , safe = "" ) } "' ) return auth_header @functions_framework . cloud_event def main ( cloud_event ): """ Cloud Run function triggered by Pub/Sub to fetch NetSuite LoginAudit logs via SuiteQL and write to GCS. """ if not all ([ GCS_BUCKET , NS_ACCOUNT_ID , NS_CONSUMER_KEY , NS_CONSUMER_SECRET , NS_TOKEN_ID , NS_TOKEN_SECRET ]): print ( 'Error: Missing required environment variables' ) return try : bucket = storage_client . bucket ( GCS_BUCKET ) state = load_state ( bucket ) now = datetime . now ( timezone . utc ) if isinstance ( state , dict ) and state . get ( 'last_event_time' ): try : last_val = state [ 'last_event_time' ] if last_val . endswith ( 'Z' ): last_val = last_val [: - 1 ] + '+00:00' last_time = datetime . fromisoformat ( last_val ) last_time = last_time - timedelta ( minutes = 2 ) except Exception as e : print ( f "Warning: Could not parse last_event_time: { e } " ) last_time = now - timedelta ( hours = LOOKBACK_HOURS ) else : last_time = now - timedelta ( hours = LOOKBACK_HOURS ) print ( f "Fetching logs from { last_time . isoformat () } to { now . isoformat () } " ) records , newest_time = fetch_login_audit ( last_time , now ) if not records : print ( "No new log records found." ) save_state ( bucket , now . isoformat ()) return timestamp = now . strftime ( '%Y%m %d _%H%M%S' ) object_key = f " { GCS_PREFIX } /netsuite_audit_ { timestamp } .ndjson" blob = bucket . blob ( object_key ) ndjson = ' \n ' . join ( [ json . dumps ( r , ensure_ascii = False , default = str ) for r in records ] ) + ' \n ' blob . upload_from_string ( ndjson , content_type = 'application/x-ndjson' ) print ( f "Wrote { len ( records ) } records to gs:// { GCS_BUCKET } / { object_key } " ) if newest_time : save_state ( bucket , newest_time ) else : save_state ( bucket , now . isoformat ()) print ( f "Successfully processed { len ( records ) } records" ) except Exception as e : print ( f 'Error processing logs: { str ( e ) } ' ) raise def fetch_login_audit ( start_time , end_time ): """ Fetch LoginAudit records from NetSuite SuiteQL API with pagination. Returns: Tuple of (records list, newest_event_time ISO string) """ base_url = get_netsuite_base_url ( NS_ACCOUNT_ID ) suiteql_endpoint = f " { base_url } /services/rest/query/v1/suiteql" start_str = start_time . strftime ( '%Y-%m- %d %H:%M:%S' ) end_str = end_time . strftime ( '%Y-%m- %d %H:%M:%S' ) query = ( "SELECT id, date, status, user, role, emailaddress, " "ipaddress, useragent, detail, requesturi, " "oauthaccesstokenname, oauthappname " "FROM LoginAudit " f "WHERE date BETWEEN TO_DATE(' { start_str } ', 'YYYY-MM-DD HH24:MI:SS') " f "AND TO_DATE(' { end_str } ', 'YYYY-MM-DD HH24:MI:SS') " "ORDER BY date ASC" ) records = [] newest_time = None offset = 0 backoff = 1.0 while True : if len ( records ) > = MAX_RECORDS : print ( f "Reached max_records limit ( { MAX_RECORDS } )" ) break remaining = min ( PAGE_SIZE , MAX_RECORDS - len ( records )) url = f " { suiteql_endpoint } ?limit= { remaining } & offset= { offset } " auth_header = generate_oauth_header ( 'POST' , url , NS_ACCOUNT_ID , NS_CONSUMER_KEY , NS_CONSUMER_SECRET , NS_TOKEN_ID , NS_TOKEN_SECRET ) headers = { 'Authorization' : auth_header , 'Content-Type' : 'application/json' , 'Prefer' : 'transient' , 'User-Agent' : 'GoogleSecOps-NetSuiteCollector/1.0' , } body = json . dumps ({ 'q' : query }) . encode ( 'utf-8' ) try : response = http . request ( 'POST' , url , headers = headers , body = body ) if response . status == 429 : retry_after = int ( response . headers . get ( 'Retry-After' , str ( int ( backoff ))) ) print ( f "Rate limited (429). Retrying after { retry_after } s..." ) time . sleep ( retry_after ) backoff = min ( backoff * 2 , 60.0 ) continue backoff = 1.0 if response . status != 200 : print ( f "HTTP Error: { response . status } " ) response_text = response . data . decode ( 'utf-8' ) print ( f "Response body: { response_text } " ) return records , newest_time data = json . loads ( response . data . decode ( 'utf-8' )) page_results = data . get ( 'items' , []) if not page_results : print ( "No more results (empty page)" ) break page_num = ( offset // PAGE_SIZE ) + 1 print ( f "Page { page_num } : Retrieved { len ( page_results ) } records" ) records . extend ( page_results ) for event in page_results : try : event_time = event . get ( 'date' ) if event_time : if newest_time is None or event_time > newest_time : newest_time = event_time except Exception as e : print ( f "Warning: Could not parse event time: { e } " ) has_more = data . get ( 'hasMore' , False ) if not has_more : print ( "Reached last page (hasMore=false)" ) break offset += len ( page_results ) except Exception as e : print ( f "Error fetching logs: { e } " ) return records , newest_time print ( f "Retrieved { len ( records ) } total records" ) return records , newest_time def load_state ( bucket ): """Load state from GCS.""" try : blob = bucket . blob ( STATE_KEY ) if blob . exists (): return json . loads ( blob . download_as_text ()) except Exception as e : print ( f "Warning: Could not load state: { e } " ) return {} def save_state ( bucket , last_event_time_iso ): """Save the last event timestamp to GCS state file.""" try : state = { 'last_event_time' : last_event_time_iso , 'last_run' : datetime . now ( timezone . utc ) . isoformat () } blob = bucket . blob ( STATE_KEY ) blob . upload_from_string ( json . dumps ( state , indent = 2 ), content_type = 'application/json' ) print ( f "Saved state: last_event_time= { last_event_time_iso } " ) except Exception as e : print ( f "Warning: Could not save state: { e } " )- requirements.txt:
functions-framework==3.* google-cloud-storage==2.* urllib3>=2.0.0 -
Click Deployto save and deploy the function.
-
Wait for deployment to complete (2-3 minutes).
Create Cloud Scheduler job
Cloud Scheduler will publish messages to the Pub/Sub topic at regular intervals, triggering the Cloud Run function.
- In the GCP Console, go to Cloud Scheduler.
- Click Create Job.
-
Provide the following configuration details:
Setting Value Name netsuite-audit-collector-hourlyRegion Select same region as Cloud Run function Frequency 0 * * * *(every hour, on the hour)Timezone Select timezone (UTC recommended) Target type Pub/Sub Topic Select netsuite-audit-triggerMessage body {}(empty JSON object) -
Click Create.
Schedule frequency options
Choose frequency based on log volume and latency requirements:
| Frequency | Cron Expression | Use Case |
|---|---|---|
|
Every 5 minutes
|
*/5 * * * *
|
High-volume, low-latency |
|
Every 15 minutes
|
*/15 * * * *
|
Medium volume |
|
Every hour
|
0 * * * *
|
Standard (recommended) |
|
Every 6 hours
|
0 */6 * * *
|
Low volume, batch processing |
|
Daily
|
0 0 * * *
|
Historical data collection |
Test the integration
- In the Cloud Schedulerconsole, find your job (
netsuite-audit-collector-hourly). - Click Force runto trigger the job manually.
- Wait a few seconds.
- Go to Cloud Run > Services.
- Click on
netsuite-audit-collector. - Click the Logstab.
-
Verify the function executed successfully. Look for:
Fetching logs from YYYY-MM-DDTHH:MM:SS+00:00 to YYYY-MM-DDTHH:MM:SS+00:00 Page 1: Retrieved X records Wrote X records to gs://netsuite-audit-logs/netsuite-audit/netsuite_audit_YYYYMMDD_HHMMSS.ndjson Successfully processed X records -
Go to Cloud Storage > Buckets.
-
Click on
netsuite-audit-logs. -
Navigate to the
netsuite-audit/folder. -
Verify that a new
.ndjsonfile was created with the current timestamp.
If you see errors in the logs:
- HTTP 401: Verify the OAuth credentials (
NS_CONSUMER_KEY,NS_CONSUMER_SECRET,NS_TOKEN_ID,NS_TOKEN_SECRET) andNS_ACCOUNT_IDenvironment variables are correct - HTTP 403: Verify the NetSuite role has the required permissions (REST Web Services, Login Audit Trail, SuiteAnalytics Workbook)
- HTTP 429: Rate limiting — the function will automatically retry with exponential backoff
- Missing environment variables: Verify all required variables are set in the Cloud Run function configuration
Retrieve the Google SecOps service account
- Go to SIEM Settings > Feeds.
- Click Add New Feed.
- Click Configure a single feed.
- In the Feed namefield, enter a name for the feed (for example,
NetSuite Audit Logs). - Select Google Cloud Storage V2as the Source type.
- Select Oracle NetSuite - NetSuite Applications Suiteas the Log type.
-
Click Get Service Account. A unique service account email will be displayed. For example:
chronicle-12345678@chronicle-gcp-prod.iam.gserviceaccount.com -
Copy this email address for use in the next step.
-
Click Next.
-
Specify values for the following input parameters:
-
Storage bucket URL: Enter the GCS bucket URI with the prefix path:
gs://netsuite-audit-logs/netsuite-audit/
- Source deletion option: Select the deletion option according to your preference:
- Never: Never deletes any files after transfers (recommended for testing).
- Delete transferred files: Deletes files after successful transfer.
- Delete transferred files and empty directories: Deletes files and empty directories after successful transfer.
- Maximum File Age: Include files modified in the last number of days (default is 180 days)
- Asset namespace: The asset namespace
- Ingestion labels: The label to be applied to the events from this feed
-
-
Click Next.
-
Review your new feed configuration in the Finalizescreen, and then click Submit.
Grant IAM permissions to the Google SecOps service account
The Google SecOps service account needs Storage Object Viewerrole on your GCS bucket.
- Go to Cloud Storage > Buckets.
- Click on
netsuite-audit-logs. - Go to the Permissionstab.
- Click Grant access.
- Provide the following configuration details:
- Add principals: Paste the Google SecOps service account email
- Assign roles: Select Storage Object Viewer
-
Click Save.
NetSuite API rate limits
NetSuite API has the following concurrency and rate limits:
| Limit Type | Default Value | Notes |
|---|---|---|
|
Concurrent requests
|
15 requests | Applies to combined SOAP and REST API requests per account |
|
SuiteQL query results
|
100,000 rows maximum | Maximum rows returned per SuiteQL query |
|
Objects per request
|
1,000 objects maximum | Maximum objects returned per API request |
The Cloud Run function automatically handles rate limiting with exponential backoff. If you encounter persistent rate limit errors (HTTP 429), contact NetSuite support to increase your API limits or adjust the Cloud Scheduler frequency.
UDM mapping table
| Log Field | UDM Mapping | Logic |
|---|---|---|
|
user
|
extensions.auth.type | Type of authentication mechanism used |
|
date
|
metadata.event_timestamp | Timestamp when the event occurred |
|
event_type
|
metadata.event_type | Type of event (e.g., USER_LOGIN, NETWORK_CONNECTION) |
|
security_result
|
security_result | Details about the security result of the event |
|
oauthaccesstokenname
|
security_result.about.resource.attribute.labels | Key-value labels describing attributes of the resource involved in the security result |
|
secchallenge
|
security_result.about.resource.attribute.labels | |
|
status
|
security_result.summary | Summary description of the security result |
|
oauthappname
|
target.application | Name of the target application |
|
useragent
|
target.application | |
|
ipaddress
|
target.ip | IP address of the target |
|
requesturi
|
target.url | URL of the target resource |
|
emailaddress
|
target.user.email_addresses | Email addresses associated with the target user |
|
role
|
target.user.role_name | Role name assigned to the target user |
|
user
|
target.user.userid | Unique identifier for the target user |
Need more help? Get answers from Community members and Google SecOps professionals.

