Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8676791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:17:15+00:00 2026-06-12T20:17:15+00:00

Is it possible to request Snapshot Logs through AWS SDK somehow? It’s possible to

  • 0

Is it possible to request “Snapshot Logs” through AWS SDK somehow?

It’s possible to do it through AWS console:

enter image description here

Cross posted to Amazon forum.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T20:17:17+00:00Added an answer on June 12, 2026 at 8:17 pm

    Requesting a log snapshot is a 3 step process. First you have to do an environment information request:

    elasticBeanstalk.requestEnvironmentInfo(
        new RequestEnvironmentInfoRequest()
            .withEnvironmentName(envionmentName)
            .withInfoType("tail"));
    

    Then you have to retreive the environment information:

    final List<EnvironmentInfoDescription> envInfos =
         elasticBeanstalk.retrieveEnvironmentInfo(
             new RetrieveEnvironmentInfoRequest()
                 .withEnvironmentName(environmentName)
                 .withInfoType("tail")).getEnvironmentInfo();
    

    This returns a list of environment info descriptions, with the EC2 instance id and the URL to an S3 object that contains the log snapshot. You can then retreive the logs with:

        DefaultHttpClient client = new DefaultHttpClient();
        DefaultHttpRequestRetryHandler retryhandler = 
            new DefaultHttpRequestRetryHandler(3, true);
        client.setHttpRequestRetryHandler(retryhandler);
    
        for (EnvironmentInfoDescription environmentInfoDescription : envInfos) {
            System.out.println(environmentInfoDescription.getEc2InstanceId());
             HttpGet rq = new HttpGet(environmentInfoDescription.getMessage());
             try {                    
                 HttpResponse response = client.execute(rq);
                 InputStream content = response.getEntity().getContent();                    
                 System.out.println(IOUtils.toString(content));
             } catch ( Exception e ) {
                 System.out.println("Exception fetching " + 
                     environmentInfoDescription.getMessage());
             }
        }
    

    I hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In Node 0.4.2, is it possible for http.request() to return both through the callback
I'm doing the simplest ajax request possible: public ActionResult SayHello() { return Content(YYAAAY); }
Possible Duplicate: How to request a random row in SQL? Currently Using: $randomQuery =
Possible Duplicate: PHP detecting request type (GET, POST, PUT or DELETE) This should be
Possible Duplicate: Where are the request method constants in the Servlet API? I'm looking
Possible Duplicate: JavaScript post request like a form submit I have a value calculated
Possible Duplicate: How do I make a request using HTTP basic authentication with PHP
Possible Duplicate: Servlets: doGet and doPost I know doGet() request is appended to the
Possible Duplicate: Create an alert on any view controller after Facebook request:didFailWithError: I have
Is it possible to pass a request from java servlet and read that request

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.