# DatadogAPIClient::V1::LogContent ## Properties | Name | Type | Description | Notes | | -------------- | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------- | | **attributes** | **Hash<String, Object>** | JSON object of attributes from your log. | [optional] | | **host** | **String** | Name of the machine from where the logs are being sent. | [optional] | | **message** | **String** | The message [reserved attribute](https://docs.datadoghq.com/logs/log_collection/#reserved-attributes) of your log. By default, Datadog ingests the value of the message attribute as the body of the log entry. That value is then highlighted and displayed in the Logstream, where it is indexed for full text search. | [optional] | | **service** | **String** | The name of the application or service generating the log events. It is used to switch from Logs to APM, so make sure you define the same value when you use both products. | [optional] | | **tags** | **Array<Object>** | Array of tags associated with your log. | [optional] | | **timestamp** | **Time** | Timestamp of your log. | [optional] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::LogContent.new( attributes: {"customAttribute":123,"duration":2345}, host: i-0123, message: Host connected to remote, service: agent, tags: ["team:A"], timestamp: 2020-05-26T13:36:14Z ) ```