* New Source: Datadog * Updating doc * Adding unit tests * Renaming limit var * Updating description in spec * add source def to seed * add datadog to source def seed * run format * auto-bump connector version Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"attributes": {
|
|
"type": ["object", "null"],
|
|
"description": "JSON object containing all log attributes and their associated values.",
|
|
"properties": {
|
|
"attributes": {
|
|
"type": ["object", "null"],
|
|
"description": "JSON object of attributes from your log.",
|
|
"additionalProperties": true
|
|
},
|
|
"host": {
|
|
"type": ["string", "null"],
|
|
"description": "Name of the machine from where the logs are being sent."
|
|
},
|
|
"message": {
|
|
"type": ["string", "null"],
|
|
"description": "The message reserved attribute of your log."
|
|
},
|
|
"service": {
|
|
"type": ["string", "null"],
|
|
"description": "The name of the application or service generating the log events."
|
|
},
|
|
"status": {
|
|
"type": ["string", "null"],
|
|
"description": "Status of the message associated with your log."
|
|
},
|
|
"tags": {
|
|
"type": ["array", "null"],
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"description": "Array of tags associated with your log."
|
|
},
|
|
"timestamp": {
|
|
"type": ["string", "null"],
|
|
"format": "date-time",
|
|
"description": "Timestamp of your log."
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
},
|
|
"id": {
|
|
"type": ["string", "null"],
|
|
"description": "Unique ID of the Log.",
|
|
"readOnly": true
|
|
},
|
|
"sync_date": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"type": {
|
|
"type": ["string", "null"],
|
|
"enum": ["log"],
|
|
"description": "Type of the event. Allowed enum values: log",
|
|
"readOnly": true
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|