forked from aws/aws-lambda-runtime-interface-emulator
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdoc.go
More file actions
14 lines (12 loc) · 742 Bytes
/
doc.go
File metadata and controls
14 lines (12 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/*
RAPID emits or proxies the following sources of logging:
1. Internal logs: RAPID's own application logs into stderr for operational use, visible only internally
2. Function stream-based logs: Runtime's stdout and stderr, read as newline separated lines
3. Function message-based logs: Stock runtimes communicate using a custom TLV protocol over a Unix pipe
4. Extension stream-based logs: Extension's stdout and stderr, read as newline separated lines
5. Platform logs: Logs that RAPID generates, but is visible either in customer's logs or via Logs API
(e.g. EXTENSION, RUNTIME, RUNTIMEDONE, IMAGE)
*/
package logging