Estou tentando ativar alguns dos plugins do Postgresql para o Munin. Quando executo munin-node-configure --suggest | grep postgres
, recebo a seguinte saída:
postgres_bgwriter | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_cache_ | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_checkpoints | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_connections_ | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_connections_db | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_locks_ | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_querylength_ | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_scans_ | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_size_ | no | no [DBD::Pg not found, and cannot do psql yet]
postgres_transactions_ | no | no [DBD::Pg not found, and cannot do psql yet]
Pesquisei no Google uma resposta, mas não encontrei nenhuma resposta definitiva sobre como resolver esse problema. Eu nunca trabalhei com módulos Perl antes (todo o nosso software está em Python), então o que eu precisaria fazer para instalar essa dependência? Estou usando o Ubuntu 10.04.4 LTS.
fonte
apt-get install libdbd-pg-perl
Resolvi-o.apt-get install libdbd-pg-perl
trabalhou para mim também!