0Pricing
PostgreSQL Performance & Query Optimization · レッスン

分析のためのログ設定

パフォーマンス分析とトラブルシューティングに必要なデータを取得できるよう、PostgreSQL のログを設定します。

「分析のためのログ設定」はCoddyKit上の無料PostgreSQL Performance & Query Optimizationレッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはPostgreSQL Performance & Query Optimization学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 PostgreSQL Performance & Query Optimizationコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Why PostgreSQL Logging Matters

Understanding how your PostgreSQL database performs is crucial for maintaining its health and speed. Logs are your database's diary, recording important events, errors, and even slow queries.

By configuring logging correctly, you gain deep insights into what's happening under the hood, making troubleshooting and performance analysis much easier.

Where Logs Go: log_destination

PostgreSQL can send its log output to different places. The log_destination parameter in postgresql.conf controls this.

  • stderr: Logs go to standard error (console).
  • csvlog: Logs are written in a CSV format, great for programmatic analysis.
  • syslog: Logs go to the system's logging facility.

For most users, stderr (captured by a collector) or csvlog are the most common and useful options.

Capturing Logs with logging_collector

If log_destination includes stderr, you'll want PostgreSQL to capture these logs into files. This is where logging_collector comes in.

When logging_collector is on, PostgreSQL starts a background process to capture stderr messages and redirect them to log files. You can specify the log_directory and log_filename.

Here's how to enable it:

logging_collector = on
log_directory = 'pg_log'
log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log'

Logging All SQL Statements

To see every SQL command executed, you can set log_statement = 'all'. This is very verbose and can generate huge log files, so use it with caution and typically only for short-term debugging.

Let's say you run this query:

SELECT * FROM products WHERE price > 100;

Understanding log_statement Output

With log_statement = 'all', the previous query would appear in your logs. Other useful settings include:

  • ddl: Logs all Data Definition Language (CREATE, ALTER, DROP).
  • mod: Logs DDL and Data Manipulation Language (INSERT, UPDATE, DELETE).
  • none: No statements are logged (default).

For general monitoring, ddl or mod can be a good balance, capturing schema changes and data modifications.

Finding Slow Queries: log_min_duration_statement

This is one of the most powerful logging parameters for performance analysis. log_min_duration_statement logs any statement that runs longer than the specified number of milliseconds.

Setting it to 0 logs all statements with their duration. Setting it to -1 (the default) disables it.

Example: To log queries slower than 200ms:

log_min_duration_statement = 200

Practical: Simulating a Slow Query

If log_min_duration_statement is set to 100 (100ms), a query like this would appear in your logs if it takes longer than 100ms to execute. This helps identify performance bottlenecks.

SELECT pg_sleep(0.15);
-- This query intentionally sleeps for 150ms

Connection and Disconnection Logging

Tracking client activity can be vital for security and resource management. You can configure PostgreSQL to log when clients connect and disconnect.

  • log_connections = on: Logs successful connection attempts.
  • log_disconnections = on: Logs client disconnections, including session duration.

These settings provide valuable context about who is connecting, from where, and for how long.

Structuring Log Output: log_line_prefix

The log_line_prefix parameter allows you to add useful information at the beginning of each log line. This makes logs much easier to parse and understand.

Common prefixes include timestamp, user, database, process ID, and client IP address. For example:

log_line_prefix = '%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '

Quick Check: Logging Slow Queries

Which configuration parameter is used to log SQL statements that exceed a specific execution time, making it invaluable for identifying performance bottlenecks?

Recap: Mastering Log Configuration

You've learned how to configure PostgreSQL logging for effective analysis and troubleshooting.

  • We covered log_destination for output location.
  • Enabled logging_collector to capture logs to files.
  • Used log_statement for general query logging.
  • Identified slow queries with the powerful log_min_duration_statement.
  • Explored log_connections and log_line_prefix for context.

Proper logging is your first line of defense in understanding and optimizing your PostgreSQL database!

よくある質問

「分析のためのログ設定」レッスンは無料ですか?

はい。「分析のためのログ設定」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、PostgreSQL Performance & Query Optimizationコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 PostgreSQL Performance & Query Optimizationコースには全4レッスンが含まれています。

「分析のためのログ設定」で何を学びますか?

パフォーマンス分析とトラブルシューティングに必要なデータを取得できるよう、PostgreSQL のログを設定します。 ブラウザで直接実行するハンズオンコードでPostgreSQL Performance & Query Optimizationを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

PostgreSQL Performance & Query Optimizationを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのPostgreSQL Performance & Query Optimizationは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。

「分析のためのログ設定」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このPostgreSQL Performance & Query Optimizationレッスンでコードを書いて実行できますか?

はい。すべてのPostgreSQL Performance & Query Optimizationレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. pg_stat_statements と pg_buffercache の使用
  2. 分析のためのログ設定
  3. 外部監視ツールとの統合
  4. pg_stat_activityで実行中のアクティビティを診断する
← PostgreSQL Performance & Query Optimizationに戻る