Skip to content

Commit 62bca81

Browse files
CONN-5471: Added API collection section to Salesforce (#6094)
Co-authored-by: John Pipkin (Sumo Logic) <[email protected]>
1 parent e621804 commit 62bca81

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

docs/send-data/hosted-collectors/cloud-to-cloud-integration-framework/salesforce-source.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ The Salesforce Source provides a secure endpoint to receive event data from the
1919

2020
| Polling Interval | Data |
2121
| :--- | :--- |
22-
| 1 hour | [Event data](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_what_is_rest_api.htm) |
22+
| 60 minutes | [Audit data](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_what_is_rest_api.htm) |
23+
| 60 minutes | [Event Log File data](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_what_is_rest_api.htm) |
2324

2425
### Polling Interval and Salesforce API Rate Limits
2526

@@ -76,6 +77,7 @@ To configure a Salesforce Source:
7677
1. **Client ID.** Enter the Consumer Key of the ConnectedApp. 
7778
1. **Client Secret.** Enter the Consumer Secret of the ConnectedApp. 
7879
1. **Build In Memory Lookup.** Keep this checked. This will resolve IDs to human-readable names.
80+
1. **API Collection.** Select the checkbox depending on the type of data that you wish to collect.
7981
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.
8082
:::note
8183
<CollBegin/>
@@ -112,6 +114,8 @@ Sources can be configured using UTF-8 encoded JSON files with the Collector Mana
112114
| client_id | String | True |`null` | Type in Consumer Key of the Connected App. | |
113115
| client_secret | String | True | `null` | Type in Consumer Secret of the Connected App. | |
114116
| inmemory_lookup | Boolean | False | True | Set to true to enable inmemory lookup or to false to disable it.| |
117+
| collectAuditData | Boolean | No | True | Set to true to collect the audit events data.| |
118+
| collectEventLogFileData | Boolean | No | True | Set to true to collect the event log files data.| |
115119

116120
### JSON example
117121

static/files/c2c/salesforce/example.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
"description":"Test Salesforce source",
1515
"client_id":"3MVG9VeAQy5y3BQWhBnxmQyadGTCNr2zbO.TEep4g6Wik9xxxxgREnNrGBs680cYVdTjw8SlWv2qVoNgYGddS",
1616
"inmemory_lookup":true,
17+
"collectAuditData":true,
18+
"collectEventLogFileData":true,
1719
"fields":{
1820
"_siemForward":false
1921
},

static/files/c2c/salesforce/example.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ resource "sumologic_cloud_to_cloud_source" "salesforce_source" {
1111
"client_id":"3MVG9VeAQy5y3BQWhBnxmQyadGTCNr2zbO.TEep4g6Wik9ZEdlgREnNrGBs680cYVdTjw8SlWv2qVoNgYGddS",
1212
"user_token":"********",
1313
"inmemory_lookup":true,
14+
"collectAuditData":true,
15+
"collectEventLogFileData":true,
1416
"password":"********",
1517
"fields":{
1618
"_siemForward":false

0 commit comments

Comments
 (0)