We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the below function, tags are being parsed but never sent over the network call
mPick <- gpPickle <$> atomically (readTVar pickle) case mPick of Nothing -> pure () -- no connection, give up. Just (Pickle sock cfg) -> do let tags = parseTags $ (fromMaybe M.empty mTags) <> (statsdTags cfg) sampling = maybe "" (\s -> "|@" <> showT s ) mSampling name = (statsdPrefix cfg) <> n msg = name <> ":" <> (showT val) <> "|" <> kind <> sampling when (statsdVerbose cfg) (T.putStrLn $ "Sending metric: " <> msg) void $ (try $ send sock $ T.encodeUtf8 msg :: IO(Either SomeException Int))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the below function, tags are being parsed but never sent over the network call
The text was updated successfully, but these errors were encountered: