Recap
In last episode we instrumented our function with traces. Now we will do the same thing with metrics.
Decorate the handler
Metrics
Like with traces we need to import proper functionality from the powertools library.
First, let's remember, in the SAM template we need to have two obligatory variables:
POWERTOOLS_SERVICE_NAME: simpleFunctionService
POWERTOOLS_METRICS_NAMESPACE: simpleFunctionMetrics
POWERTOOLS_SERVICE_NAME
we set previously. POWERTOOLS_METRICS_NAMESPACE
gives us the possibility to collect all related metrics under one container. We can add custom dimensions later.
Currently we have this part of the code
from aws_lambda_powertools import Tracer
tracer = Tracer()
Let's update it with metrics.
from aws_lambda_powertools import Tracer, Metrics
tracer = Tracer()
metrics = Metrics()
At this moment we are ready to decorate the handler with metrics decorator:
@metrics.log_metrics(capture_cold_start_metric=True)
@tracer.capture_lambda_handler
def handler(event, context):
""" A very simple Lambda function """
All right, let's deploy it and let's take a look on the CloudWatch Metrics console!
As we can easily see, the new Custom Metrics appeared.
Click the simpleFunctionMetrics
, then click function_name, service
(we should see that we have 1 metrics there). We can select ColdStart
metrics now. We should see at least one coldstart is registered.
Looks perfect!
Custom metrics
Now it is the time to add the custom metrics. But before we start, please remember, if we add metrics outside the handler, in the global scope, it will be used during the cold start only! Anyway, we will test it to see how it works.
Import MetricUnit
According to documentation: MetricUnit enum facilitate finding a supported metric unit by CloudWatch. Alternatively, you can pass the value as a string if you already know them e.g. "Count".
We use this approach, therefore we need to import one more element from library.
from aws_lambda_powertools.metrics import MetricUnit
Custom metrics for coldstart
Now, before we define any function, let's put this part of the code:
""" This is the coldstart metrics only"""
metrics.add_dimension(name="Execution", value="ColdStart")
metrics.add_metric(name="ColdStarted", unit=MetricUnit.Count, value=1)
This will create a custom metrics which should be executed only during cold start.
Ok, after deployment I executed the function multiple times.
Let's take a look on CloudWatch Logs.
As we can clearly see the idea of instrumenting the custom metrics for coldstart only is successsfull. We see multiple executions but only one is instrumented in logs.
Let's see the metrics then. When we go to CloudWatch Metrics, we can see 2 metrics there.
Let's click it. Now we have two dimensions. The default one, and the one we created - Executions
.
Let's finally go inside and graph the metrics. I switched the display method to numbers as it shows the effect better.
Execution metrics
Now it is the time to instrument the functionality with custom metrics. What we want to achieve is to see how many times the specific function was executed.
Let's add this part
metrics.add_dimension(name="Execution", value="Functionality")
metrics.add_metric(name="Handler", unit=MetricUnit.Count, value=1)
Into the handler, and this
metrics.add_metric(name="sumNumbers", unit=MetricUnit.Count, value=1)
Into each function. Please remember to change the name
for each function.
After deployment and a few executions we should see something like this:
When we click...
And click again...
So, we have more metrics now!
Let's take a look on the CloudWatch Metrics dashboard now. The display is very similar like it was before, the only one thing which I changed was the aggreggation - from average
to sum
.
Ok, after many executions this is what you can get through CloudWatch. It is not perfect. But we will work on it... later :)
Top comments (0)