问题
We deploy node.js functions onto AWS Lambda. When calling them, they auto-generate an AWS CloudWatch log. The log group is set to the name of the Lambda function, that´s helpful. But the log stream is named like this: 2018/02/14/[$LATEST]794dbaf40a7846c4984ad80ebf110544
.
That is not helpful when searching for errors since I need to check multiple log streams, because I do not know which one is the correct one.
Is there any way to define the log stream name, so that it is more readable for a human being?
The node.js code looks similar to this:
exports.handler = function (event, context) {
console.log('Called "' + context.functionName + '" with AWS-Request-Id "' + context.awsRequestId + '"');
// do sth. here
};
回答1:
Check out the context of your function. It has property context.logStreamName
. You could change it to any unique name.
Keep in mind, if you want to append your logs to existed stream, you have to persist its token. It was the reason why I created new log stream for each lambda call. Also, I am using guid for creating stream name (like: reason why log created + guid()
, timestamp is ok as well).
Check more details in the next article - The Context Object (Node.js)
EDIT: Don't pay attention to my previous answer. It was completely wrong.
I checked my code how I implemented the same functionality. It isn't possible to change group or stream name from the context. But you could use CloudWatchLogs in your code for putting logs in specific group and stream.
My code:
var AWS = require('aws-sdk');
exports.handler = (event, context, callback) => {
// TODO implement
var cloudwatchlogs = new AWS.CloudWatchLogs({ apiVersion: '2014-03-28' });
// create new stream name for each request
// because I don't persist sequenceToken
var logStreamName = "myStreamName" + Math.random()
var params = {
logGroupName: 'myLogGroup',
logStreamName: logStreamName
};
cloudwatchlogs.createLogStream(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else {
var params = {
logEvents: [{
message: 'log message',
timestamp: new Date().getTime()
},
{
message: 'one more log message',
timestamp: new Date().getTime()
}
],
logGroupName: 'myLogGroup',
logStreamName: logStreamName
};
cloudwatchlogs.putLogEvents(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
}
});
callback(null, 'Hello from Lambda');
};
Disadvantages of this approach are:
- Your lambda creates two logGroups and two logStreams in accordance. One of your lambda, another custom.
console.log('')
writes to lambda log,putLogEvents
writes to your custom log (i.e: myStreamName0.10141409975385463). Be aware of this. - You have to create manually 'myLogGroup' (how I did) or implement code that will create a logGroup if it doesn't exist.
The result of this testing code looks like:
My productions stream names have more sense rather name + random. And they are using guid or timestamp as a suffix. I don't think that it is safe to use random.
回答2:
You cannot change the Log Stream name. Each running container for your Lambda function logs into a different Log Stream.
If you want to easily see the logs together as one, you can stream them to Amazon ElasticSearch Service so you can use Kibana to browse through your logs or you can use CLI tools like awscli to aggregate and browse them in your terminal.
来源:https://stackoverflow.com/questions/48792788/set-logstreamname-for-aws-lambda-call