Difference between revisions of "EKS log collector script"

From wikieduonline
Jump to navigation Jump to search
Line 24: Line 24:
 
== Related ==
 
== Related ==
 
* [[SSM agent]]
 
* [[SSM agent]]
 +
* <code>[[aws ec2 describe-instance]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 10:58, 26 February 2024

curl -O https://raw.githubusercontent.com/awslabs/amazon-eks-ami/master/log-collector-script/linux/eks-log-collector.sh
sudo bash eks-log-collector.sh


curl -O https://raw.githubusercontent.com/awslabs/amazon-eks-ami/master/log-collector-script/linux/eks-ssm-content.json
aws ssm create-document \
 --name "EKSLogCollectorLinux" \
 --document-type "Command" \
 --content file://eks-ssm-content.json
aws ssm send-command \
  --instance-ids <EC2 Instance ID> \
  --document-name "EKSLogCollectorLinux" \
  --parameters "bucketName=<S3 bucket name to push the logs>" \
  --output json
aws ssm get-command-invocation \
  --command-id "<SSM command ID>" \
  --instance-id "<EC2 Instance ID>" \
  --output text

Related

See also

Advertising: