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

Fix the package issue for mq appliance dc #58

Merged
merged 3 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions host/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ Download the latest [Release package](https://github.com/instana/otel-dc/releas

1) Download the installation package:
```bash
wget https://github.com/instana/otel-dc/releases/download/v1.0.1/otel-dc-host-0.2.2.tar
wget https://github.com/instana/otel-dc/releases/download/v1.0.3/otel-dc-host-0.2.3.tar

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we are going to create a new release v1.0.3, I think the path of rdb dc image will also be changed.

```

2) Extract the package to the desired deployment location:
```bash
tar vxf otel-dc-host-0.2.2.tar
cd otel-dc-host-0.2.2
tar vxf otel-dc-host-0.2.3.tar
cd otel-dc-host-0.2.3
```

3) Make sure following configuration files are correct for your environment:
Expand Down
6 changes: 5 additions & 1 deletion host/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.instana.dc"
version = "0.2.2"
version = "0.2.3"

repositories {
mavenCentral()
Expand Down Expand Up @@ -36,6 +36,10 @@ applicationDistribution.from("config") {
into "config"
}

applicationDistribution.from("scripts") {
into "scripts"
}

test {
useJUnitPlatform()
}
4 changes: 2 additions & 2 deletions host/config/config-mqappliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ instances:
appliance.password: xxxxxxxx

#Data collector properties:
poll.interval: 10
callback.interval: 5
poll.interval: 25
callback.interval: 30
otel.backend.url: http://127.0.0.1:4317
#otel.backend.using.http: true
#otel.backend.url: http://127.0.0.1:4318/v1/metrics
2 changes: 1 addition & 1 deletion rdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Download the latest [Release package](https://github.com/instana/otel-dc/releas

1) Download the installation package:
```bash
wget https://github.com/instana/otel-dc/releases/download/v1.0.1/otel-dc-rdb-0.5.4.tar
wget https://github.com/instana/otel-dc/releases/download/v1.0.3/otel-dc-rdb-0.5.4.tar
```

2) Extract the package to the desired deployment location:
Expand Down