From: Bob Cotton Date: Fri, 24 Apr 2009 03:08:18 +0000 (-0600) Subject: Fixed the config examples. X-Git-Url: https://git.octo.it/?p=collectd_dbstore.git;a=commitdiff_plain;h=25f3f18fba213e61518e8f4acd5d0f208ba4bff5 Fixed the config examples. --- diff --git a/README b/README index 1f0dd97..ff82b87 100644 --- a/README +++ b/README @@ -20,19 +20,20 @@ Quick Start Guide 3. psql -U -f /sql/metrics.sql 4. psql -U -f /sql/create_tables.sql 5. Add the following to your collectd.conf - - IncludeDir "" - BaseName "Collectd::Plugin" - LoadPlugin "DBStore" - - DBIDriver "Pg" - DatabaseHost "" - DatabasePort "5432" - DatabaseName "" - DatabaseUser "" - DatabasePassword "" - - +LoadPlugin perl + + IncludeDir "/perl" + BaseName "Collectd::Plugin" + LoadPlugin DBStore + + DBIDriver "Pg" + DatabaseHost "" + DatabasePort "5432" + DatabaseName "" + DatabaseUser "" + DatabasePassword "" + + 6. configure postgres to turn on constrain exclusion. Rationale and Approach