お詫びと訂正(正誤表)
              本書の以下の部分に誤りがありました。ここに訂正するとともに、ご迷惑をおかけしたことを深くお詫び申し上げます。
(2022年6月15日最終更新)
P.154 「outputパラメータを利用したログからの文字列抜き出し」の2つ目のリスト
	| 誤 | 
		
log[/opt/webapp/webapp.log,"webapp [0-9]+ visitors, session[0-9]+$",,,,"System A: visitors \1, sessions \2"]
		
  | 
	
	| 正 | 
		
log[/opt/webapp/webapp.log,"webapp ([0-9]+) visitors, sessions([0-9]+)$",,,,"System A: visitors \1, sessions \2"]
		
  | 
	
P.27 リスト2.2-1 /etc/my.cnf.d/server.cnf
| 誤 | 
...
# this is only for the mysqld standalone daemon
[mysqld]
innodb_file_per_table
character-set-server=utf8
collation-server=utf8_bin
skip-character-set-client-handshake
innodb_file_per_table
innodb_buffer_pool_size=512M
innodb_log_file_size=16M
innodb_log_files_in_group=2
  | 
|---|
| 正 | 
...
# this is only for the mysqld standalone daemon
[mysqld]
character-set-server=utf8
collation-server=utf8_bin
skip-character-set-client-handshake
innodb_file_per_table
innodb_buffer_pool_size=512M
innodb_log_file_size=16M
innodb_log_files_in_group=2
  | 
|---|
「innodb_file_per_table」が重複していましたので片方を削除します。
P.53 「概要画面」の2段落2行目
| 誤 | 
左上の[ホストの位置]ドロップダウンリスト
 | 
| 正 | 
右上の[ホストの位置]ドロップダウンリスト
 | 
P.512
| 誤 | 
logrt[file_format,<regexp>,<encoding>,<maxlines>,<mode>,<outout>,<options>]
  
 | 
| 正 | 
logrt[file_format,<regexp>,<encoding>,<maxlines>,<mode>,<output>,<maxdelay>,<options>]
  
 | 
P.149
| 誤 | 
copyruncate形式のログローテーション
 | 
| 正 | 
copytruncate形式のログローテーション
 | 
P.93 表4.3-11  eth0ネットワークのIN側トラフィック(bps)を収集
| 誤 | 
項目 | 設定値 | 
| 名前 | Incoming traffic on interface eth0 | 
| キー | net.if.in[eth0,bytes] | 
| データ型 | 数値( 浮動小数) | 
| 単位 | bps | 
| 乗数を使用 | 8 | 
| 保存時の計算 | 差分/時間 | 
| 正 | 
項目 | 設定値 | 
| 名前 | Incoming traffic on interface eth0 | 
| キー | net.if.in[eth0,bytes] | 
| データ型 | 数値( 浮動小数) | 
| 単位 | bps | 
| 保存前処理 | 乗数:8 
1秒あたりの差分 |