Skip to content
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

telemetry metrics feature baseline #244

Merged
merged 21 commits into from
May 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8c71a30
Add stream metrics spec and impl projects
jfallows Feb 22, 2023
e528b7d
Add http metrics spec and impl projects
jfallows Feb 22, 2023
2efa6b0
Add metrics modules to incubator docker image
jfallows Feb 22, 2023
eb15314
Merge branch 'develop' into feature/telemetry-metrics
jfallows Mar 28, 2023
fdce629
Merge branch 'develop' into feature/telemetry-metrics
jfallows Apr 3, 2023
4a53f55
Metrics schema, extensibility, storage and command line support (#173)
attilakreiner Apr 13, 2023
e8c5127
Create incubator projects for exporter-prometheus.spec and exporter-p…
jfallows Apr 14, 2023
3573ecd
Merge branch 'develop' into feature/telemetry-metrics
jfallows Apr 14, 2023
2e59e12
Merge branch 'develop' into feature/telemetry-metrics
jfallows Apr 14, 2023
2ecccb9
Engine support to exporters (#202)
attilakreiner Apr 17, 2023
c1c8408
Fix metrics command, find layout files in the engine dir (#204)
attilakreiner Apr 18, 2023
7d49765
Prometheus Exporter (#203)
attilakreiner Apr 21, 2023
e6e90e2
Minimize performance overhead for metric collection (#217)
attilakreiner Apr 21, 2023
57e66bf
Remove zilla load command (#223)
attilakreiner Apr 28, 2023
593e1c5
Introducing Stream Direction to Optimize Metric Collection (#224)
attilakreiner May 2, 2023
9b808df
Merge branch 'develop' into feature/telemetry-metrics
jfallows May 9, 2023
2266ebb
Add http.active.requests and http.duration metrics (#227)
attilakreiner May 9, 2023
bb6284a
Merge branch 'develop' into feature/telemetry-metrics
jfallows May 10, 2023
22e0309
Merge branch 'develop' into feature/telemetry-metrics
jfallows May 10, 2023
b74f128
Merge branch 'develop' into feature/telemetry-metrics
jfallows May 11, 2023
707100f
Merge branch 'develop' into feature/telemetry-metrics
jfallows May 12, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion cloud/docker-image/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@
<include>io/aklivity/zilla/runtime/**</include>
<include>io/aklivity/zilla/engine/**</include>
<include>io/aklivity/zilla/binding-*/**</include>
<include>io/aklivity/zilla/exporter-*/**</include>
<include>io/aklivity/zilla/guard-*/**</include>
<include>io/aklivity/zilla/metrics-*/**</include>
<include>io/aklivity/zilla/vault-*/**</include>
<include>io/aklivity/zilla/command/**</include>
<include>io/aklivity/zilla/command-*/**</include>
Expand Down Expand Up @@ -312,7 +314,7 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>command-load</artifactId>
<artifactId>command-metrics</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
Expand All @@ -322,6 +324,24 @@
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>exporter-prometheus</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>metrics-stream</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>metrics-http</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</profile>
</profiles>
Expand Down
5 changes: 4 additions & 1 deletion cloud/docker-image/src/main/docker/incubator/zpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@
"io.aklivity.zilla:command-start",
"io.aklivity.zilla:command-stop",
"io.aklivity.zilla:command-tune",
"io.aklivity.zilla:command-load",
"io.aklivity.zilla:command-dump",
"io.aklivity.zilla:command-metrics",
"io.aklivity.zilla:engine",
"io.aklivity.zilla:exporter-prometheus",
"io.aklivity.zilla:guard-jwt",
"io.aklivity.zilla:metrics-stream",
"io.aklivity.zilla:metrics-http",
"io.aklivity.zilla:vault-filesystem",
"org.slf4j:slf4j-simple",
"org.antlr:antlr4-runtime"
Expand Down
13 changes: 0 additions & 13 deletions incubator/command-load/COPYRIGHT

This file was deleted.

201 changes: 0 additions & 201 deletions incubator/command-load/LICENSE

This file was deleted.

18 changes: 0 additions & 18 deletions incubator/command-load/NOTICE

This file was deleted.

18 changes: 0 additions & 18 deletions incubator/command-load/NOTICE.template

This file was deleted.

Loading