Working with connection logs - AWS Client VPN

Working with connection logs

You can enable connection logging for a new or existing Client VPN endpoint, and start capturing connection logs.

Before you begin, you must have a CloudWatch Logs log group in your account. For more information, see Working with Log Groups and Log Streams in the Amazon CloudWatch Logs User Guide. Charges apply for using CloudWatch Logs. For more information, see Amazon CloudWatch pricing.

When you enable connection logging, you can specify the name of a log stream in the log group. If you do not specify a log stream, the Client VPN service creates one for you.

Enable connection logging for a new Client VPN endpoint

You can enable connection logging when you create a new Client VPN endpoint by using the console or the command line.

To enable connection logging for a new Client VPN endpoint using the console
  1. Open the Amazon VPC console at https://console.aws.amazon.com/vpc/.

  2. In the navigation pane, choose Client VPN Endpoints, and then choose Create Client VPN endpoint.

  3. Complete the options until you reach the Connection Logging section. For more information about the options, see Create a Client VPN endpoint.

  4. Under Connection logging, turn on Enable log details on client connections.

  5. For CloudWatch Logs log group name, choose the name of the CloudWatch Logs log group.

  6. (Optional) For CloudWatch Logs log stream name, choose the name of the CloudWatch Logs log stream.

  7. Choose Create Client VPN endpoint.

To enable connection logging for a new Client VPN endpoint using the AWS CLI

Use the create-client-vpn-endpoint command, and specify the --connection-log-options parameter. You can specify the connection logs information in JSON format, as shown in the following example.

{ "Enabled": true, "CloudwatchLogGroup": "ClientVpnConnectionLogs", "CloudwatchLogStream": "NewYorkOfficeVPN" }

Enable connection logging for an existing Client VPN endpoint

You can enable connection logging for an existing Client VPN endpoint by using the console or the command line.

To enable connection logging for an existing Client VPN endpoint using the console
  1. Open the Amazon VPC console at https://console.aws.amazon.com/vpc/.

  2. In the navigation pane, choose Client VPN Endpoints.

  3. Select the Client VPN endpoint, choose Actions, and then choose Modify Client VPN endpoint.

  4. Under Connection logging, turn on Enable log details on client connections.

  5. For CloudWatch Logs log group name, choose the name of the CloudWatch Logs log group.

  6. (Optional) For CloudWatch Logs log stream name, choose the name of the CloudWatch Logs log stream.

  7. Choose Modify Client VPN endpoint.

To enable connection logging for an existing Client VPN endpoint using the AWS CLI

Use the modify-client-vpn-endpoint command and specify the --connection-log-options parameter. You can specify the connection logs information in JSON format, as shown in the following example.

{ "Enabled": true, "CloudwatchLogGroup": "ClientVpnConnectionLogs", "CloudwatchLogStream": "NewYorkOfficeVPN" }

View connection logs

You can view your connection logs using the CloudWatch Logs console.

To view your connection logs using the console
  1. Open the CloudWatch console at https://console.aws.amazon.com/cloudwatch/.

  2. In the navigation pane, choose Log groups, and select the log group that contains your connection logs.

  3. Select the log stream for your Client VPN endpoint.

    Note

    The Timestamp column displays the time that the connection log was published to CloudWatch Logs, not the time of the connection.

For more information about searching log data, see Search Log Data Using Filter Patterns in the Amazon CloudWatch Logs User Guide.

Turn off connection logging

You can turn off connection logging for a Client VPN endpoint by using the console or the command line. When you turn off connection logging, existing connection logs in CloudWatch Logs are not deleted.

To turn off connection logging using the console
  1. Open the Amazon VPC console at https://console.aws.amazon.com/vpc/.

  2. In the navigation pane, choose Client VPN Endpoints.

  3. Select the Client VPN endpoint, choose Actions, and then choose Modify Client VPN endpoint.

  4. Under Connection logging, turn off Enable log details on client connections.

  5. Choose Modify Client VPN endpoint.

To turn off connection logging using the AWS CLI

Use the modify-client-vpn-endpoint command, and specify the --connection-log-options parameter. Ensure that Enabled is set to false.