Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ To configure a Salesforce Source:
1. **Client Secret.** Enter the Consumer Secret of the ConnectedApp. 
1. **Build In Memory Lookup.** Keep this checked. This will resolve IDs to human-readable names.
1. **API Collection.** Select the checkbox depending on the type of data that you wish to collect.
* **Full EventLogFile Monitoring/Shield add‑on.** Select the checkbox if you wish to collect full EventLogFile monitoring or Shield add-on is enabled.
1. **Collection Should begin.** Select the time range for how far back you want this source to start collecting data from Salesforce. Options available are: Now, 24 hours ago.
:::note
<CollBegin/>
Expand Down Expand Up @@ -116,6 +117,7 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Mana
| inmemory_lookup | Boolean | False | True | Set to true to enable inmemory lookup or to false to disable it.| |
| collectAuditData | Boolean | No | True | Set to true to collect the audit events data.| |
| collectEventLogFileData | Boolean | No | True | Set to true to collect the event log files data.| |
| fullEventLogFileMonitoring | Boolean | No | True | Set to true to collect full EventLogFile monitoring or Shield add-on is enabled.| |

### JSON example

Expand Down
1 change: 1 addition & 0 deletions static/files/c2c/salesforce/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"inmemory_lookup":true,
"collectAuditData":true,
"collectEventLogFileData":true,
"fullEventLogFileMonitoring":true,
"fields":{
"_siemForward":false
},
Expand Down
1 change: 1 addition & 0 deletions static/files/c2c/salesforce/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ resource "sumologic_cloud_to_cloud_source" "salesforce_source" {
"inmemory_lookup":true,
"collectAuditData":true,
"collectEventLogFileData":true,
"fullEventLogFileMonitoring":true,
"password":"********",
"fields":{
"_siemForward":false
Expand Down