Download Log from AppEngine Including Python Log Statements

后端 未结 4 483
眼角桃花
眼角桃花 2020-12-14 09:04

I know you can download the raw access logs with appcfg.py, but I\'m really interested in all the information around a specific request like python logging statements, excep

4条回答
  •  太阳男子
    2020-12-14 09:49

    Sure - just pass the --severity flag to appcfg.py:

    $ appcfg.py help request_logs
    Usage: appcfg.py [options] request_logs  
    
    Write request logs in Apache common log format.
    
    The 'request_logs' command exports the request logs from your application
    to a file.  It will write Apache common log format records ordered
    chronologically.  If output file is '-' stdout will be written.
    
    Options:
      -h, --help            Show the help message and exit.
      -q, --quiet           Print errors only.
      -v, --verbose         Print info level logs.
      --noisy               Print all logs.
      -s SERVER, --server=SERVER
                            The server to connect to.
      --insecure            Use HTTP when communicating with the server.
      -e EMAIL, --email=EMAIL
                            The username to use. Will prompt if omitted.
      -H HOST, --host=HOST  Overrides the Host header sent with all RPCs.
      --no_cookies          Do not save authentication cookies to local disk.
      --passin              Read the login password from stdin.
      -A APP_ID, --application=APP_ID
                            Override application from app.yaml file.
      -V VERSION, --version=VERSION
                            Override (major) version from app.yaml file.
      -n NUM_DAYS, --num_days=NUM_DAYS
                            Number of days worth of log data to get. The cut-off
                            point is midnight UTC. Use 0 to get all available
                            logs. Default is 1, unless --append is also given;
                            then the default is 0.
      -a, --append          Append to existing file.
      --severity=SEVERITY   Severity of app-level log messages to get. The range
                            is 0 (DEBUG) through 4 (CRITICAL). If omitted, only
                            request logs are returned.
      --vhost=VHOST         The virtual host of log messages to get. If omitted,
                            all log messages are returned.
      --include_vhost       Include virtual host in log messages.
      --end_date=END_DATE   End date (as YYYY-MM-DD) of period for log data.
                            Defaults to today.
    

提交回复
热议问题