Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
68
plugins/inputs/salesforce/README.md
Normal file
68
plugins/inputs/salesforce/README.md
Normal file
|
@ -0,0 +1,68 @@
|
|||
# Salesforce Input Plugin
|
||||
|
||||
The Salesforce plugin gathers metrics about the limits in your Salesforce
|
||||
organization and the remaining usage. It fetches its data from the [limits
|
||||
endpoint][limits] of Salesforce's REST API.
|
||||
|
||||
[limits]: https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_limits.htm
|
||||
|
||||
## Global configuration options <!-- @/docs/includes/plugin_config.md -->
|
||||
|
||||
In addition to the plugin-specific configuration settings, plugins support
|
||||
additional global and plugin configuration settings. These settings are used to
|
||||
modify metrics, tags, and field or create aliases and configure ordering, etc.
|
||||
See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
|
||||
|
||||
[CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins
|
||||
|
||||
## Configuration
|
||||
|
||||
```toml @sample.conf
|
||||
# Read API usage and limits for a Salesforce organisation
|
||||
[[inputs.salesforce]]
|
||||
## specify your credentials
|
||||
##
|
||||
username = "your_username"
|
||||
password = "your_password"
|
||||
##
|
||||
## (optional) security token
|
||||
# security_token = "your_security_token"
|
||||
##
|
||||
## (optional) environment type (sandbox or production)
|
||||
## default is: production
|
||||
##
|
||||
# environment = "production"
|
||||
##
|
||||
## (optional) API version (default: "39.0")
|
||||
##
|
||||
# version = "39.0"
|
||||
```
|
||||
|
||||
## Metrics
|
||||
|
||||
Salesforce provide one measurement named "salesforce".
|
||||
Each entry is converted to snake\_case and 2 fields are created.
|
||||
|
||||
- \<key\>_max represents the limit threshold
|
||||
- \<key\>_remaining represents the usage remaining before hitting the limit threshold
|
||||
|
||||
- salesforce
|
||||
- \<key\>_max (int)
|
||||
- \<key\>_remaining (int)
|
||||
- (...)
|
||||
|
||||
### Tags
|
||||
|
||||
- All measurements have the following tags:
|
||||
- host
|
||||
- organization_id (t18 char organisation ID)
|
||||
|
||||
## Example Output
|
||||
|
||||
```sh
|
||||
$./telegraf --config telegraf.conf --input-filter salesforce --test
|
||||
```
|
||||
|
||||
```text
|
||||
salesforce,organization_id=XXXXXXXXXXXXXXXXXX,host=xxxxx.salesforce.com daily_workflow_emails_max=546000i,hourly_time_based_workflow_max=50i,daily_async_apex_executions_remaining=250000i,daily_durable_streaming_api_events_remaining=1000000i,streaming_api_concurrent_clients_remaining=2000i,daily_bulk_api_requests_remaining=10000i,hourly_sync_report_runs_remaining=500i,daily_api_requests_max=5000000i,data_storage_mb_remaining=1073i,file_storage_mb_remaining=1069i,daily_generic_streaming_api_events_remaining=10000i,hourly_async_report_runs_remaining=1200i,hourly_time_based_workflow_remaining=50i,daily_streaming_api_events_remaining=1000000i,single_email_max=5000i,hourly_dashboard_refreshes_remaining=200i,streaming_api_concurrent_clients_max=2000i,daily_durable_generic_streaming_api_events_remaining=1000000i,daily_api_requests_remaining=4999998i,hourly_dashboard_results_max=5000i,hourly_async_report_runs_max=1200i,daily_durable_generic_streaming_api_events_max=1000000i,hourly_dashboard_results_remaining=5000i,concurrent_sync_report_runs_max=20i,durable_streaming_api_concurrent_clients_remaining=2000i,daily_workflow_emails_remaining=546000i,hourly_dashboard_refreshes_max=200i,daily_streaming_api_events_max=1000000i,hourly_sync_report_runs_max=500i,hourly_o_data_callout_max=10000i,mass_email_max=5000i,mass_email_remaining=5000i,single_email_remaining=5000i,hourly_dashboard_statuses_max=999999999i,concurrent_async_get_report_instances_max=200i,daily_durable_streaming_api_events_max=1000000i,daily_generic_streaming_api_events_max=10000i,hourly_o_data_callout_remaining=10000i,concurrent_sync_report_runs_remaining=20i,daily_bulk_api_requests_max=10000i,data_storage_mb_max=1073i,hourly_dashboard_statuses_remaining=999999999i,concurrent_async_get_report_instances_remaining=200i,daily_async_apex_executions_max=250000i,durable_streaming_api_concurrent_clients_max=2000i,file_storage_mb_max=1073i 1501565661000000000
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue