Description
The DataDogLogger class allows you to create loggers that dump execution logs to a DataDog service.
Configuration parameters
- level: maximum log level to capture
- source: source (context) name
- connection:
- discovery_key: (optional) key to retrieve the connection from IDiscovery
- protocol: (optional) connection protocol: http or https (default: https)
- host: (optional) host name or IP address (default: http-intake.logs.datadoghq.com)
- port: (optional) port number (default: 443)
- uri: (optional) resource URI or connection string with all parameters in it
- credential:
- access_key: DataDog client api key
- options:
- interval: interval in milliseconds to save log messages (default: 10 seconds)
- max_cache_size: maximum number of messages stored in this cache (default: 100)
- reconnect: reconnect timeout in milliseconds (default: 60 sec)
- timeout: invocation timeout in milliseconds (default: 30 sec)
- max_retries: maximum number of retries (default: 3)
References
- *:context-info:*:*:1.0 - (optional) ContextInfo to detect the context id and specify counters source
- *:counters:*:*:1.0 - (optional) ICounters components to pass collected measurements
- *:discovery:*:*:1.0 - (optional) IDiscovery services to resolve a connection
Constructors
NewDataDogLogger
Creates a new instance of the logger.
NewDataDogLogger() *DataDogLogger
Methods
Close
Closes a component and frees used resources.
(c *DataDogLogger) Close(ctx context.Context, correlationId string) error
- ctx: context.Context - operation context.
- correlationId: string - (optional) transaction id used to trace execution through the call chain.
- returns: error - error or nil if no errors occurred.
Configure
Configures the component by passing its configuration parameters.
(c *DataDogLogger) Configure(ctx context.Context, config *ConfigParams)
- ctx: context.Context - operation context.
- config: *ConfigParams - configuration parameters to be set.
IsOpen
Checks if the component is open.
(c *DataDogLogger) IsOpen() bool
- returns: bool - true if the component has been opened and false otherwise.
Open
Opens the component.
(c *DataDogLogger) Open(ctx context.Context, correlationId string) error
- ctx: context.Context - operation context.
- correlationId: string - (optional) transaction id used to trace execution through the call chain.
- returns: error - error or nil if no errors occurred.
Save
Saves log messages from the cache.
(c *DataDogLogger) Save(ctx context.Context, messages []LogMessage) error
- ctx: context.Context - operation context.
- messages: []LogMessage - list with log messages
- returns: error - error or nil if no errors occurred.
SetReferences
Sets references to dependent components.
(c *DataDogCounters) SetReferences(ctx context.Context, refs IReferences)
- ctx: context.Context - operation context.
- references: IReferences - references to locate the component’s dependencies.
Examples
logger := NewDataDogLogger();
logger.Configure(context.Background(), NewConfigParamsFromTuples(
"credential.access_key", "827349874395872349875493"
))
err := logger.Open(context.Background(), "123")
logger.Error(context.Background(), "123", ex, "Error occured: %s", ex.message)
logger.Debug(context.Background(), "123", "Everything is OK.")