Skip to content

Commit 142b6a9

Browse files
authored
Merge pull request #7 from liurui-software/main1
Handled cardinality related concerns
2 parents 0c4a8d6 + 73e11b1 commit 142b6a9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+193
-119
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
Changelog
22
==========
33

4-
_2024-12-18_
4+
## OJR Release v0.6.0
55

6-
- Initial release of the OJR
6+
- Handled cardinality related concerns
77

88

9+
## OJR Release v0.5.0
910

11+
- Sorted out configuration related issues

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ We will provide more receivers in the future and welcome contributions. Right no
5555
| otel.service.instance.id | instance | The OTel Service instance ID (optional) | N/A | Instana-01 |
5656
| otel.transport.timeout | instance | The transport timeout in milliseconds (optional) | 10000 | 10000 |
5757
| otel.transport.delay | instance | The transport delay (used for Batch processor) in milliseconds (optional) | 100 | 100 |
58+
| otel.restricted.metrics | instance | The metrics list to be omitted to be sent to backend | N/A | db.sql.elapsed_time,process_cpu_usage |
5859
| prometheus.port | instance | The port of Prometheus endpoint if Prometheus is enabled (optional) | 16543 | 16543 |
5960
| prometheus.host | instance | The host of Prometheus endpoint if Prometheus is enabled (optional) | N/A | localhost |
6061
| prometheus.restricted.metrics | instance | The metrics list to be omitted for Prometheus (optional, separated by ",") | N/A | db.sql.elapsed_time,process_cpu_usage |

ojr-dameng-db/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.ojr"
7-
version = "0.5.0"
7+
version = "0.5.1"
88

99
java {
1010
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -28,9 +28,9 @@ dependencies {
2828
implementation("io.opentelemetry.semconv:opentelemetry-semconv-incubating:1.28.0-alpha")
2929
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.2")
3030

31-
implementation(files("libs/ojr-core-0.5.0.jar"))
31+
implementation(files("libs/ojr-core-0.6.0.jar"))
3232
implementation(files("libs/ojr-vault-all-0.4.0.jar"))
33-
implementation(files("libs/ojr-rdb-0.5.0.jar"))
33+
implementation(files("libs/ojr-rdb-0.5.1.jar"))
3434
implementation(files("libs/DmJdbcDriver8.jar"))
3535

3636
testImplementation platform('org.junit:junit-bom:5.11.3')

ojr-dameng-db/libs/ojr-core-0.5.0.jar

-44.5 KB
Binary file not shown.

ojr-dameng-db/libs/ojr-core-0.6.0.jar

45.2 KB
Binary file not shown.

ojr-ibmmq/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.ojr"
7-
version = "0.1.0"
7+
version = "0.1.1"
88

99
java {
1010
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -30,7 +30,7 @@ dependencies {
3030
implementation('org.apache.commons:commons-lang3:3.17.0')
3131
implementation('com.ibm.mq:com.ibm.mq.allclient:9.4.1.1')
3232

33-
implementation(files("libs/ojr-core-0.5.0.jar"))
33+
implementation(files("libs/ojr-core-0.6.0.jar"))
3434

3535
testImplementation platform('org.junit:junit-bom:5.11.3')
3636
testImplementation 'org.junit.jupiter:junit-jupiter'

ojr-ibmmq/libs/ojr-core-0.5.0.jar

-44.5 KB
Binary file not shown.

ojr-ibmmq/libs/ojr-core-0.6.0.jar

45.2 KB
Binary file not shown.

ojr-informix-db/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "com.ojr"
7-
version = "0.4.0"
7+
version = "0.4.1"
88

99
java {
1010
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -31,9 +31,9 @@ dependencies {
3131
implementation("org.apache.commons:commons-dbcp2:2.11.0")
3232
implementation("com.ibm.informix:jdbc:4.50.10")
3333

34-
implementation(files("libs/ojr-core-0.5.0.jar"))
34+
implementation(files("libs/ojr-core-0.6.0.jar"))
3535
implementation(files("libs/ojr-vault-all-0.4.0.jar"))
36-
implementation(files("libs/ojr-rdb-0.5.0.jar"))
36+
implementation(files("libs/ojr-rdb-0.5.1.jar"))
3737

3838
testImplementation platform('org.junit:junit-bom:5.11.3')
3939
testImplementation 'org.junit.jupiter:junit-jupiter'

0 commit comments

Comments
 (0)