From 8c9d965d06998aeb9474742c0923feb36a6fc636 Mon Sep 17 00:00:00 2001 From: Thomas Crevoisier Date: Mon, 26 Nov 2018 08:58:27 +0100 Subject: [PATCH] Allow to send metadata in a Gelf message --- graylog.cabal | 5 +++-- src/Graylog/Gelf.hs | 24 ++++++++++++++++++------ 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/graylog.cabal b/graylog.cabal index 5618d7c..dc84862 100644 --- a/graylog.cabal +++ b/graylog.cabal @@ -17,7 +17,7 @@ source-repository head type: git location: https://github.com/AndrewRademacher/haskell-graylog.git -library +library hs-source-dirs: src default-language: Haskell2010 @@ -29,7 +29,7 @@ library ghc-options: -Wall -rtsopts build-depends: base ==4.* - + , aeson , aeson-casing , bytestring @@ -38,6 +38,7 @@ library , scientific , text , time + , unordered-containers , vector test-suite test-state diff --git a/src/Graylog/Gelf.hs b/src/Graylog/Gelf.hs index ee17e3d..b6e7ec0 100644 --- a/src/Graylog/Gelf.hs +++ b/src/Graylog/Gelf.hs @@ -1,17 +1,20 @@ {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE RecordWildCards #-} -- | Default formatting for Graylog messages, -- see http://docs.graylog.org/en/latest/pages/gelf.html module Graylog.Gelf where -import Data.Aeson (ToJSON (..), Value (..), genericToJSON, - toJSON) -import Data.Aeson.Casing -import Data.Text (Text) +import Data.Aeson (ToJSON (..), Value (..), object, + toJSON, (.=)) +import Data.HashMap.Strict (HashMap) +import Data.Semigroup ((<>)) +import Data.Text (Text) import Data.Time import Data.Typeable +import GHC.Exts (toList) import GHC.Generics data GELF @@ -24,11 +27,20 @@ data GELF , _gelfLevel :: Maybe SyslogLevel , _gelfLine :: Maybe Word , _gelfFile :: Maybe Text + , _gelfMeta :: HashMap Text Text } deriving (Show, Typeable, Generic) instance ToJSON GELF where - toJSON = genericToJSON $ aesonPrefix snakeCase + toJSON GELF{..} = object $ [ "version" .= _gelfVersion + , "host" .= _gelfHost + , "short_message" .= _gelfShortMessage + , "full_message" .= _gelfFullMessage + , "timestamp" .= _gelfTimestamp + , "level" .= _gelfLevel + , "line" .= _gelfLine + , "file" .= _gelfFile + ] <> toList (String <$> _gelfMeta) -- @@ -69,4 +81,4 @@ simpleGelf -> Text -- ^ Short message -> GELF simpleGelf host short = - GELF Version1x1 host short Nothing Nothing Nothing Nothing Nothing + GELF Version1x1 host short Nothing Nothing Nothing Nothing Nothing mempty -- 2.41.0