Skip to content

Commit

Permalink
Update from 200660f4edb94db292d7b7fe09c41d0a058e3bf6
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 24, 2024
1 parent 93c2a28 commit d8beaf7
Show file tree
Hide file tree
Showing 11 changed files with 401 additions and 7 deletions.
Binary file modified 01-index.tar
Binary file not shown.
Binary file modified 01-index.tar.gz
Binary file not shown.
16 changes: 16 additions & 0 deletions all-package-versions/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,22 @@ <h1 class="py-5">
</th>
</thead>
<tbody>
<tr>
<td class="col-sm-2">
<a href="../package/ekg-forward-0.6">ekg-forward-0.6</a>
</td>
<td class="col-sm-1">Version</td>
<td class="col-sm-3" data-order="1727169239">2024-09-24T09:13:59Z</td>
<td class="col-sm-6">
<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>
</td>
</tr>
<tr>
<td class="col-sm-2">
<a href="../package/cardano-ledger-conway-1.16.2.0">cardano-ledger-conway-1.16.2.0</a>
Expand Down
8 changes: 4 additions & 4 deletions all-packages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1221,15 +1221,15 @@ <h1 class="py-5">
</td>
</tr>
<tr>
<td class="col-sm-2"><a href="../package/ekg-forward-0.5">ekg-forward-0.5</a></td>
<td class="col-sm-3" data-order="1710773765">2024-03-18T14:56:05Z</td>
<td class="col-sm-2"><a href="../package/ekg-forward-0.6">ekg-forward-0.6</a></td>
<td class="col-sm-3" data-order="1727169239">2024-09-24T09:13:59Z</td>
<td class="col-sm-6">
<dl class="row">
<dd>
<a href="https://github.com/input-output-hk/ekg-forward/tree/18c833c556df6d67b5b01dd1e8b302c1ecaa5aa4">https://github.com/input-output-hk/ekg-forward</a>
<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>18c833c556df6d67b5b01dd1e8b302c1ecaa5aa4</dd>
<dd>180df580ad404c0a189b6a6c3f0bde996de736d5</dd>
</dl>
</td>
<td class="col-sm-3">
Expand Down
2 changes: 1 addition & 1 deletion foliage/packages.json

Large diffs are not rendered by default.

Binary file added package/ekg-forward-0.6.tar.gz
Binary file not shown.
129 changes: 129 additions & 0 deletions package/ekg-forward-0.6/ekg-forward.cabal
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
120 changes: 120 additions & 0 deletions package/ekg-forward-0.6/index.html
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>[&quot;base &gt;=4.12 &amp;&amp; &lt;5&quot;,&quot;async&quot;,&quot;bytestring&quot;,&quot;cborg&quot;,&quot;contra-tracer&quot;,&quot;ekg-core&quot;,&quot;io-classes &gt;=1.4.1&quot;,&quot;network&quot;,&quot;ouroboros-network-api&quot;,&quot;ouroboros-network-framework &gt;=0.8 &amp;&amp; &lt;0.14&quot;,&quot;serialise&quot;,&quot;stm&quot;,&quot;text&quot;,&quot;time&quot;,&quot;typed-protocols ^&gt;=0.1.1&quot;,&quot;typed-protocols-cborg&quot;,&quot;unordered-containers&quot;]</li>
</ul>
</dd>
<dt>executable demo-forwarder:</dt>
<dd>
<ul class="build-depends">
<li>[&quot;base&quot;,&quot;contra-tracer&quot;,&quot;ekg-core&quot;,&quot;ekg-forward&quot;,&quot;text&quot;,&quot;time&quot;]</li>
</ul>

</dd>
<dt>executable demo-acceptor:</dt>
<dd>
<ul class="build-depends">
<li>[&quot;base&quot;,&quot;contra-tracer&quot;,&quot;ekg-core&quot;,&quot;ekg-forward&quot;,&quot;stm&quot;,&quot;text&quot;,&quot;time&quot;]</li>
</ul>

</dd>
<dt>test-suite ekg-forward-test:</dt>
<dd>
<ul class="build-depends">
<li>[&quot;base &gt;=4.12 &amp;&amp; &lt;5&quot;,&quot;base&quot;,&quot;contra-tracer&quot;,&quot;ekg-core&quot;,&quot;ekg-forward&quot;,&quot;hspec&quot;,&quot;stm&quot;,&quot;time&quot;,&quot;unordered-containers&quot;]</li>
</ul>

</dd>
</dl>
</dd>
</dl>
</div>
</body>

</html>
Loading

0 comments on commit d8beaf7

Please sign in to comment.