-
Notifications
You must be signed in to change notification settings - Fork 36
/
lambda_environment.py
55 lines (42 loc) · 1.98 KB
/
lambda_environment.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright 2019 Amazon.com, Inc. or its affiliates.
# Licensed under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from aws_embedded_metrics.environment import Environment
from aws_embedded_metrics.logger.metrics_context import MetricsContext
from aws_embedded_metrics.sinks import Sink
from aws_embedded_metrics.sinks.lambda_sink import LambdaSink
import os
def get_env(key: str) -> str:
if key in os.environ:
return os.environ[key]
return ""
sink = LambdaSink()
class LambdaEnvironment(Environment):
async def probe(self) -> bool:
return len(get_env("AWS_LAMBDA_FUNCTION_NAME")) > 0
def get_name(self) -> str:
return self.get_log_group_name()
def get_type(self) -> str:
return "AWS::Lambda::Function"
def get_log_group_name(self) -> str:
return get_env("AWS_LAMBDA_FUNCTION_NAME")
def configure_context(self, context: MetricsContext) -> None:
context.set_property("executionEnvironment", get_env("AWS_EXECUTION_ENV"))
context.set_property("memorySize", get_env("AWS_LAMBDA_FUNCTION_MEMORY_SIZE"))
context.set_property("functionVersion", get_env("AWS_LAMBDA_FUNCTION_VERSION"))
context.set_property("logStreamId", get_env("AWS_LAMBDA_LOG_STREAM_NAME"))
trace_id = get_env("_X_AMZN_TRACE_ID")
if len(trace_id) > 0 and "Sampled=1" in trace_id:
context.set_property("traceId", trace_id)
def get_sink(self) -> Sink:
"""Create the appropriate sink for this environment."""
return sink