NewRelic
Defines the configuration for NewRelic logs
Type: newrelic-logs-configuration
Properties
Name | Type | Description | Required |
---|---|---|---|
credentials (API Credentials) | object | yes | |
configurations (Custom configs) | object | no |
Additional Properties: not allowed
Example
{
"credentials": {
"account": "efgh4567",
"api_key": "abcd1234"
},
"configurations": {
"site": "api.newrelic.com"
}
}
credentials: API Credentials
Properties
Name | Type | Description | Required |
---|---|---|---|
account (Account id) | string | The NewRelic account id Minimal Length: 5 | yes |
api_key | string | The API key used to authenticate requests to NewRelic API. (It must be an Insight Api Key) Minimal Length: 1 | yes |
Example
{
"account": "efgh4567",
"api_key": "abcd1234"
}
configurations: Custom configs
Properties
Name | Type | Description | Required |
---|---|---|---|
site | string | Provide site when your data is not on the default newrelic region Minimal Length: 1 | no |
Example
{
"site": "api.newrelic.com"
}