Skip to content
Snippets Groups Projects
Commit 75706f3a authored by Michele Tartara's avatar Michele Tartara
Browse files

Export the full report from DRBD data collector


Export the full report instead of just the data from the DRBD data collector.

Signed-off-by: default avatarMichele Tartara <mtartara@google.com>
Reviewed-by: default avatarHelga Velroyen <helgav@google.com>
parent 27433b5c
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ module Ganeti.DataCollectors.Drbd
, dcFormatVersion
, dcCategory
, dcKind
, dcData
, dcReport
) where
......@@ -90,8 +90,8 @@ dcKind :: DCKind
dcKind = DCKStatus
-- | The data exported by the data collector, taken from the default location.
dcData :: IO J.JSValue
dcData = buildJsonReport defaultFile Nothing
dcReport :: IO DCReport
dcReport = buildDCReport defaultFile Nothing
-- * Command line options
......@@ -205,6 +205,12 @@ buildJsonReport statusFile pairingFile = do
let status = computeStatus drbdData
return . addStatus status $ J.showJSON drbdData
-- | This function computes the DCReport for the DRBD status.
buildDCReport :: FilePath -> Maybe FilePath -> IO DCReport
buildDCReport statusFile pairingFile =
buildJsonReport statusFile pairingFile >>=
buildReport dcName dcVersion dcFormatVersion dcCategory dcKind
-- | Main function.
main :: Options -> [String] -> IO ()
main opts args = do
......@@ -212,6 +218,5 @@ main opts args = do
pairingFile = optDrbdPairing opts
unless (null args) . exitErr $ "This program takes exactly zero" ++
" arguments, got '" ++ unwords args ++ "'"
report <- buildJsonReport statusFile pairingFile >>=
buildReport dcName dcVersion dcFormatVersion dcCategory dcKind
report <- buildDCReport statusFile pairingFile
putStrLn $ J.encode report
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment