...
- http://www.masterzen.fr/2013/01/13/the-10-commandments-of-logging/
- https://www.loggly.com/blog/how-to-write-effective-logs-for-remote-logging/
- And so on.
Context
TODO: more on the importance of transaction ID propagation.
MDCs
A Mapped Diagnostic Context (MDC) allows an arbitrary string-valued attribute to be attached to a Java thread. The MDC's value is then emitted with each log message. The set of MDCs associated with a log message is serialized as unordered name-value pairs (see Text Output).
A good discussion of MDCs can be found at https://logback.qos.ch/manual/mdc.html.
...
This is often referred to by other names, including "Transaction ID", and one of several (pre-standardization) REST header names including X-ECOMP-RequestID and X-ONAP-RequestID.
ONAP logging uses a universally unique "RequestID" value in log records to track the processing of each client request across all the ONAP components involved in its processing.
...
TODO: cross-reference EELF output to v1 doc.
ID | Order | MDC | Description | Required | EELF Audit | EELF Metric | EELF Error | EELF Debug |
---|---|---|---|---|---|---|---|---|
1 | BeginTimestamp | Date-time that processing activities being logged begins. The value should be represented in UTC and formatted per ISO 8601, such as “2015-06-03T13:21:58+00:00”. The time should be shown with the maximum resolution available to the logging component (e.g., milliseconds, microseconds) by including the appropriate number of decimal digits. For example, when millisecond precision is available, the date-time value would be presented as, as “2015-06-03T13:21:58.340+00:00”. | Y | |||||
2 | EndTimestamp | Date-time that processing for the request or event being logged ends. Formatting rules are the same as for the BeginTimestamp field above. In the case of a request that merely logs an event and has not subsequent processing, the EndTimestamp value may equal the BeginTimestamp value. | Y | |||||
3 | ElapsedTime | This field contains the elapsed time to complete processing of an API call or transaction request (e.g., processing of a message that was received). This value should be the difference between. EndTimestamp and BeginTimestamp fields and must be expressed in milliseconds. | Y | |||||
4 | ServiceInstanceID | This field is optional and should only be included if the information is readily available to the logging component. Transaction requests that create or operate on a particular instance of a service/resource can
NOTE: AAI won’t have a serviceInstanceUUID for every service instance. For example, no serviceInstanceUUID is available when the request is coming from an application that may import inventory data. | ||||||
5 | VirtualServerName | Physical/virtual server name. Optional: empty if determined that its value can be added by the agent that collects the log files collecting. | ||||||
6 | ServiceName | For Audit log records that capture API requests, this field contains the name of the API invoked at the component creating the record (e.g., Layer3ServiceActivateRequest). For Audit log records that capture processing as a result of receipt of a message, this field should contain the name of the module that processes the message. | ||||||
7 | PartnerName | This field contains the name of the client application user agent or user invoking the API if known. | ||||||
8 | StatusCode | This field indicates the high level status of the request. It must have the value COMPLETE when the request is successful and ERROR when there is a failure. | ||||||
9 | ResponseCode | This field contains application-specific error codes. For consistency, common error categorizations should be used. | ||||||
10 | ResponseDescription | This field contains a human readable description of the ResponseCode. | 11 | |||||
11 | InstanceUUID | If known, this field contains a universally unique identifier used to differentiate between multiple instances of the same (named) log writing service/application. Its value is set at instance creation time (and read by it, e.g., at start/initialization time from the environment). This value should be picked up by the component instance from its configuration file and subsequently used to enable differentiation of log records created by multiple, locally load balanced ONAP component or subcomponent instances that are otherwise identically configured. | ||||||
12 | Severity | Optional: 0, 1, 2, 3 see Nagios monitoring/alerting for specifics/details. | ||||||
13 | TargetEntity | It contains the name of the ONAP component or sub-component, or external entity, at which the operation activities captured in this metrics log record is invoked. | Y | |||||
14 | TargetServiceName | It contains the name of the API or operation activities invoked at the TargetEntity. | Y | |||||
15 | Server | This field contains the Virtual Machine (VM) Fully Qualified Domain Name (FQDN) if the server is virtualized. Otherwise, it contains the host name of the logging component. | ||||||
16 | ServerIPAddress | This field contains the logging component host server’s IP address if known (e.g. Jetty container’s listening IP address). Otherwise it is empty. | ||||||
17 | ServerFQDN | Unclear, but possibly duplicating one or both of Server and ServerIPAddress. | ||||||
18 | ClientIPAddress | This field contains the requesting remote client application’s IP address if known. Otherwise this field can be empty. | ||||||
19 | ProcessKey | This field can be used to capture the flow of a transaction through the system by indicating the components and operations involved in processing. If present, it can be denoted by a comma separated list of components and applications. | ||||||
20 | RemoteHost | Unknown. | ||||||
21 | AlertSeverity | Unknown. | ||||||
22 | TargetVirtualEntity | Unknown | ||||||
23 | ClassName | Defunct. Doesn't require an MDC. | ||||||
24 | ThreadID | Defunct. Doesn't require an MDC. | ||||||
25 | CustomField1 | (Defunct now that MDCs are serialized as NVPs.) | ||||||
26 | CustomField2 | (Defunct now that MDCs are serialized as NVPs.) | ||||||
27 | CustomField3 | (Defunct now that MDCs are serialized as NVPs.) | ||||||
28 | CustomField4 | (Defunct now that MDCs are serialized as NVPs.) |
...
Code Block |
---|
root@ip-172-31-93-160:/dockerdata-nfs/onap/sdc/logs/SDC/SDC-BE# tail -f audit.log 2017-09-07T18:04:03.679Z|||||qtp1013423070-72297||ASDC|SDC-BE|||||||N/A|INFO||||10.42.88.30||o.o.s.v.r.s.VendorLicenseModelsImpl||ActivityType=<audit>, Desc=< --Audit-- Create VLM. VLM Name: lm4> |
TODO: this is the earlier output format. Let's find an example which matches the latest line format.
Markers
Markers differ from MDCs in two important ways:
...
It must be manually set otherwise.
EELF:
Marker - EXIT
This should be reported as
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
//TODO |
SLF4J:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
//TODO |
Marker - EXIT
This should be reported as late in invocation as possible, immediately before unsetting the RequestID and InvocationID MDCs.
...
It must be manually set otherwise.
EELF:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
//TODO |
SLF4J:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
//TODO |
Marker - INVOKE
This should be reported by the caller of another ONAP component via REST, including a newly allocated InvocationID, which will be passed to the caller.
SLF4J:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
//TODO |
TODO: EELF, without changing published APIs.
...
This should accompany INVOKE when the invocation is synchronous.
SLF4J:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
//TODO |
TODO: EELF, without changing published APIs.
...
- Choose a Logging provider and/or EELF. Decisions, decisions.
- Create a configuration file based on an existing archetype. See Configuration.
- Read your configuration file when your components initialize logging.
- Write logs to a standard location so that they can be shipped by Filebeat for indexing. See Output Location.
- Report transaction state:
- Retrieve, default and propagate RequestID. See MDC - RequestID.
- At each invocation of one ONAP component by another:
- Initialize and propagate InvocationID. See MDC - Invocation ID.
- Report INVOKE and SYNCHRONOUS markers in caller.
- Report ENTRY and EXIT markers in recipient.
- Write useful logs!
They are unordered.