It will need to be accessed by the monitoring daemon. Signed-off-by: Michele Tartara <[email protected]> --- src/Ganeti/DataCollectors/InstStatus.hs | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/src/Ganeti/DataCollectors/InstStatus.hs b/src/Ganeti/DataCollectors/InstStatus.hs index ce7cb45..47c888e 100644 --- a/src/Ganeti/DataCollectors/InstStatus.hs +++ b/src/Ganeti/DataCollectors/InstStatus.hs @@ -32,6 +32,7 @@ module Ganeti.DataCollectors.InstStatus , dcFormatVersion , dcCategory , dcKind + , dcReport ) where @@ -78,6 +79,10 @@ dcCategory = Just DCInstance dcKind :: DCKind dcKind = DCKStatus +-- | The report of this data collector. +dcReport :: IO DCReport +dcReport = buildInstStatusReport Nothing Nothing + -- * Command line options options :: IO [OptType] -- 1.8.2.1
