-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update from 200660f4edb94db292d7b7fe09c41d0a058e3bf6
- Loading branch information
1 parent
93c2a28
commit d8beaf7
Showing
11 changed files
with
401 additions
and
7 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,129 @@ | ||
cabal-version: 2.4 | ||
name: ekg-forward | ||
version: 0.6 | ||
synopsis: See README for more info | ||
description: See README for more info | ||
homepage: https://github.com/input-output-hk/ekg-forward | ||
bug-reports: https://github.com/input-output-hk/ekg-forward/issues | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
copyright: 2021-2023 Input Output Global Inc (IOG), 2023-2024 Intersect. | ||
author: IOHK | ||
maintainer: [email protected] | ||
category: System, Network | ||
build-type: Simple | ||
extra-doc-files: README.md | ||
CHANGELOG.md | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/input-output-hk/ekg-forward.git | ||
|
||
common common-options | ||
build-depends: base >=4.12 && <5 | ||
|
||
ghc-options: -Wall | ||
-Wcompat | ||
-Widentities | ||
-Wincomplete-uni-patterns | ||
-Wincomplete-record-updates | ||
if impl(ghc >= 8.0) | ||
ghc-options: -Wredundant-constraints | ||
if impl(ghc >= 8.2) | ||
ghc-options: -fhide-source-paths | ||
if impl(ghc >= 8.4) | ||
ghc-options: -Wmissing-export-lists | ||
-Wpartial-fields | ||
|
||
default-language: Haskell2010 | ||
|
||
library | ||
import: common-options | ||
hs-source-dirs: src | ||
|
||
exposed-modules: System.Metrics.Acceptor | ||
System.Metrics.Configuration | ||
System.Metrics.Forwarder | ||
System.Metrics.ReqResp | ||
|
||
System.Metrics.Network.Acceptor | ||
System.Metrics.Network.Forwarder | ||
|
||
System.Metrics.Store.Acceptor | ||
System.Metrics.Store.Forwarder | ||
|
||
System.Metrics.Protocol.Type | ||
System.Metrics.Protocol.Codec | ||
System.Metrics.Protocol.Acceptor | ||
System.Metrics.Protocol.Forwarder | ||
|
||
build-depends: async | ||
, bytestring | ||
, cborg | ||
, contra-tracer | ||
, ekg-core | ||
, io-classes >= 1.4.1 | ||
, network | ||
, ouroboros-network-api | ||
, ouroboros-network-framework >= 0.8 && < 0.14 | ||
, serialise | ||
, stm | ||
, text | ||
, time | ||
, typed-protocols ^>= 0.1.1 | ||
, typed-protocols-cborg | ||
, unordered-containers | ||
|
||
executable demo-forwarder | ||
hs-source-dirs: demo | ||
main-is: forwarder.hs | ||
build-depends: base | ||
, contra-tracer | ||
, ekg-core | ||
, ekg-forward | ||
, text | ||
, time | ||
|
||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
-threaded | ||
-rtsopts | ||
-with-rtsopts=-T | ||
|
||
executable demo-acceptor | ||
hs-source-dirs: demo | ||
main-is: acceptor.hs | ||
build-depends: base | ||
, contra-tracer | ||
, ekg-core | ||
, ekg-forward | ||
, stm | ||
, text | ||
, time | ||
|
||
default-language: Haskell2010 | ||
ghc-options: -Wall | ||
-threaded | ||
-rtsopts | ||
-with-rtsopts=-T | ||
|
||
test-suite ekg-forward-test | ||
import: common-options | ||
type: exitcode-stdio-1.0 | ||
hs-source-dirs: test | ||
main-is: Spec.hs | ||
other-modules: Test.GetAllMetrics | ||
Test.GetMetrics | ||
Test.MkConfig | ||
build-depends: base | ||
, contra-tracer | ||
, ekg-core | ||
, ekg-forward | ||
, hspec | ||
, stm | ||
, time | ||
, unordered-containers | ||
ghc-options: -threaded | ||
-rtsopts | ||
-with-rtsopts=-N | ||
default-extensions: OverloadedStrings |
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 |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- Bootstrap CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | ||
<title> | ||
ekg-forward-0.6 | ||
</title> | ||
<style> | ||
ul.build-depends { | ||
list-style: none; | ||
} | ||
|
||
ul.build-depends li { | ||
display: inline; | ||
} | ||
|
||
ul.build-depends li:not(:last-child):after { | ||
content: ","; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="container px-4 py-5"> | ||
<ul class="nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../../index.html">Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../../all-packages/index.html">All packages</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../../all-package-versions/index.html">All package versions</a> | ||
</li> | ||
</ul> | ||
<h1 class="py-5"> | ||
ekg-forward-0.6 | ||
</h1> | ||
<dl class="row class=" px-4 py-5"> | ||
<dt class="col-sm-3">Synopsis</dt> | ||
<dd class="col-sm-9"> | ||
<p>See README for more info</p> | ||
</dd> | ||
<dt class="col-sm-3">Description</dt> | ||
<dd class="col-sm-9"> | ||
<p>See README for more info</p> | ||
</dd> | ||
<dt class="col-sm-3">Author</dt> | ||
<dd class="col-sm-9"> | ||
<p>IOHK</p> | ||
</dd> | ||
<dt class="col-sm-3">Maintainer</dt> | ||
<dd class="col-sm-9"> | ||
<p>[email protected]</p> | ||
</dd> | ||
<dt class="col-sm-3">License</dt> | ||
<dd class="col-sm-9"> | ||
<p>Apache-2.0</p> | ||
</dd> | ||
<dt class="col-sm-3">Source</dt> | ||
<dd class="col-sm-9"> | ||
<dl class="row"> | ||
<dd> | ||
<a href="https://github.com/input-output-hk/ekg-forward//tree/180df580ad404c0a189b6a6c3f0bde996de736d5">https://github.com/input-output-hk/ekg-forward/</a> | ||
</dd> | ||
<dt>Commit hash</dt> | ||
<dd>180df580ad404c0a189b6a6c3f0bde996de736d5</dd> | ||
</dl> | ||
</dd> | ||
<dt class="col-sm-3">Timestamp</dt> | ||
<dd class="col-sm-9"> | ||
<p>2024-09-24T09:13:59Z</p> | ||
</dd> | ||
<dt class="col-sm-3">Revisions</dt> | ||
<dd class="col-sm-9"> | ||
<p>None</p> | ||
</dd> | ||
<dt class="col-sm-3">Dependencies</dt> | ||
<dd class="col-sm-9"> | ||
<dl> | ||
<dt>library ekg-forward:</dt> | ||
<dd> | ||
<ul class="build-depends"> | ||
<li>["base >=4.12 && <5","async","bytestring","cborg","contra-tracer","ekg-core","io-classes >=1.4.1","network","ouroboros-network-api","ouroboros-network-framework >=0.8 && <0.14","serialise","stm","text","time","typed-protocols ^>=0.1.1","typed-protocols-cborg","unordered-containers"]</li> | ||
</ul> | ||
</dd> | ||
<dt>executable demo-forwarder:</dt> | ||
<dd> | ||
<ul class="build-depends"> | ||
<li>["base","contra-tracer","ekg-core","ekg-forward","text","time"]</li> | ||
</ul> | ||
|
||
</dd> | ||
<dt>executable demo-acceptor:</dt> | ||
<dd> | ||
<ul class="build-depends"> | ||
<li>["base","contra-tracer","ekg-core","ekg-forward","stm","text","time"]</li> | ||
</ul> | ||
|
||
</dd> | ||
<dt>test-suite ekg-forward-test:</dt> | ||
<dd> | ||
<ul class="build-depends"> | ||
<li>["base >=4.12 && <5","base","contra-tracer","ekg-core","ekg-forward","hspec","stm","time","unordered-containers"]</li> | ||
</ul> | ||
|
||
</dd> | ||
</dl> | ||
</dd> | ||
</dl> | ||
</div> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.