hydra-node-0.21.0: The Hydra node
Safe HaskellSafe-Inferred
LanguageGHC2021

Hydra.Logging.Messages

Description

Aggregates all tracing messages in a single type.

This module provides a central point where top-level traced messages are grouped. This is useful for traces consumers that will need to do something specific depending on various tracing messages, eg. monitoring and metrics collection.

Documentation

data HydraLog tx Source #

Instances

Instances details
Arbitrary (HydraNodeLog tx) => Arbitrary (HydraLog tx) Source # 
Instance details

Defined in Hydra.Logging.Messages

Methods

arbitrary :: Gen (HydraLog tx)

shrink :: HydraLog tx -> [HydraLog tx]

ToJSON (HydraNodeLog tx) => ToJSON (HydraLog tx) Source # 
Instance details

Defined in Hydra.Logging.Messages

Methods

toJSON :: HydraLog tx -> Value

toEncoding :: HydraLog tx -> Encoding

toJSONList :: [HydraLog tx] -> Value

toEncodingList :: [HydraLog tx] -> Encoding

omitField :: HydraLog tx -> Bool

Generic (HydraLog tx) Source # 
Instance details

Defined in Hydra.Logging.Messages

Associated Types

type Rep (HydraLog tx) :: Type -> Type Source #

Methods

from :: HydraLog tx -> Rep (HydraLog tx) x Source #

to :: Rep (HydraLog tx) x -> HydraLog tx Source #

Show (HydraNodeLog tx) => Show (HydraLog tx) Source # 
Instance details

Defined in Hydra.Logging.Messages

Eq (HydraNodeLog tx) => Eq (HydraLog tx) Source # 
Instance details

Defined in Hydra.Logging.Messages

Methods

(==) :: HydraLog tx -> HydraLog tx -> Bool Source #

(/=) :: HydraLog tx -> HydraLog tx -> Bool Source #

type Rep (HydraLog tx) Source # 
Instance details

Defined in Hydra.Logging.Messages

type Rep (HydraLog tx) = D1 ('MetaData "HydraLog" "Hydra.Logging.Messages" "hydra-node-0.21.0-IAzUD3nPoh4KjMRMHOKHuC" 'False) ((C1 ('MetaCons "DirectChain" 'PrefixI 'True) (S1 ('MetaSel ('Just "directChain") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 DirectChainLog)) :+: (C1 ('MetaCons "APIServer" 'PrefixI 'True) (S1 ('MetaSel ('Just "api") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 APIServerLog)) :+: C1 ('MetaCons "Network" 'PrefixI 'True) (S1 ('MetaSel ('Just "network") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 NetworkLog)))) :+: (C1 ('MetaCons "Node" 'PrefixI 'True) (S1 ('MetaSel ('Just "node") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (HydraNodeLog tx))) :+: (C1 ('MetaCons "NodeOptions" 'PrefixI 'True) (S1 ('MetaSel ('Just "runOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 RunOptions)) :+: C1 ('MetaCons "EnteringMainloop" 'PrefixI 'False) (U1 :: Type -> Type))))