-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactored LogRecords to be mutable so that attributes can be modified after creation #131
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
bfa7827
Refactored LogRecords to be mutable so that attributes can be modifie…
evanlauer1 662979b
Updated test suite
evanlauer1 f629950
Added ReadableLogRecord and ReadWriteLogRecord interfaces
evanlauer1 e60ddbf
Added typeclasses for ReadableLogRecords and ReadWriteLogRecords
evanlauer1 5cc35e5
Replaced type variable in LogRecord with AnyValue
evanlauer1 2c80ef7
Changed Readable and ReadWriteLogRecord to be concrete types
evanlauer1 9e0cd5e
Changed mkReadableLogRecord to take in a ReadWriteLogRecord
evanlauer1 5af2e9e
Added NullValue to AnyValue and removed body parameter from emptyLogR…
evanlauer1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
{-# LANGUAGE DeriveAnyClass #-} | ||
{-# LANGUAGE DeriveDataTypeable #-} | ||
{-# LANGUAGE DeriveGeneric #-} | ||
{-# LANGUAGE DerivingStrategies #-} | ||
{-# LANGUAGE FlexibleInstances #-} | ||
{-# LANGUAGE InstanceSigs #-} | ||
|
||
module OpenTelemetry.Internal.Common.Types (InstrumentationLibrary (..)) where | ||
module OpenTelemetry.Internal.Common.Types ( | ||
InstrumentationLibrary (..), | ||
AnyValue (..), | ||
ToValue (..), | ||
) where | ||
|
||
import Data.ByteString (ByteString) | ||
import Data.Data (Data) | ||
import qualified Data.HashMap.Strict as H | ||
import Data.Hashable (Hashable) | ||
import Data.Int (Int64) | ||
import Data.String (IsString (fromString)) | ||
import Data.Text (Text) | ||
import GHC.Generics (Generic) | ||
|
@@ -59,3 +71,85 @@ instance Hashable InstrumentationLibrary | |
instance IsString InstrumentationLibrary where | ||
fromString :: String -> InstrumentationLibrary | ||
fromString str = InstrumentationLibrary (fromString str) "" "" emptyAttributes | ||
|
||
|
||
{- | An attribute represents user-provided metadata about a span, link, or event. | ||
|
||
'Any' values are used in place of 'Standard Attributes' in logs because third-party | ||
logs may not conform to the 'Standard Attribute' format. | ||
|
||
Telemetry tools may use this data to support high-cardinality querying, visualization | ||
in waterfall diagrams, trace sampling decisions, and more. | ||
-} | ||
data AnyValue | ||
= TextValue Text | ||
| BoolValue Bool | ||
| DoubleValue Double | ||
| IntValue Int64 | ||
| ByteStringValue ByteString | ||
| ArrayValue [AnyValue] | ||
| HashMapValue (H.HashMap Text AnyValue) | ||
| NullValue | ||
deriving stock (Read, Show, Eq, Ord, Data, Generic) | ||
deriving anyclass (Hashable) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved here from |
||
|
||
|
||
-- | Create a `TextAttribute` from the string value. | ||
instance IsString AnyValue where | ||
fromString :: String -> AnyValue | ||
fromString = TextValue . fromString | ||
|
||
|
||
{- | Convert a Haskell value to an 'Any' value. | ||
|
||
@ | ||
|
||
data Foo = Foo | ||
|
||
instance ToValue Foo where | ||
toValue Foo = TextValue "Foo" | ||
|
||
@ | ||
-} | ||
class ToValue a where | ||
toValue :: a -> AnyValue | ||
|
||
|
||
instance ToValue Text where | ||
toValue :: Text -> AnyValue | ||
toValue = TextValue | ||
|
||
|
||
instance ToValue Bool where | ||
toValue :: Bool -> AnyValue | ||
toValue = BoolValue | ||
|
||
|
||
instance ToValue Double where | ||
toValue :: Double -> AnyValue | ||
toValue = DoubleValue | ||
|
||
|
||
instance ToValue Int64 where | ||
toValue :: Int64 -> AnyValue | ||
toValue = IntValue | ||
|
||
|
||
instance ToValue ByteString where | ||
toValue :: ByteString -> AnyValue | ||
toValue = ByteStringValue | ||
|
||
|
||
instance (ToValue a) => ToValue [a] where | ||
toValue :: (ToValue a) => [a] -> AnyValue | ||
toValue = ArrayValue . fmap toValue | ||
|
||
|
||
instance (ToValue a) => ToValue (H.HashMap Text a) where | ||
toValue :: (ToValue a) => H.HashMap Text a -> AnyValue | ||
toValue = HashMapValue . fmap toValue | ||
|
||
|
||
instance ToValue AnyValue where | ||
toValue :: AnyValue -> AnyValue | ||
toValue = id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added NullValue in accordance with the spec.