Skip to content

Commit cb6ee9c

Browse files
authored
Merge pull request #332 from Nizernizer/main
feat agent uninstall
2 parents f919105 + 13289f8 commit cb6ee9c

File tree

19 files changed

+68
-30
lines changed

19 files changed

+68
-30
lines changed

dongtai-agent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.dongtai.iast</groupId>
99
<artifactId>iast</artifactId>
10-
<version>1.7.1</version>
10+
<version>1.7.2</version>
1111
</parent>
1212
<artifactId>dongtai-agent</artifactId>
1313
<name>dongtai-agent</name>
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>io.dongtai.iast</groupId>
5050
<artifactId>dongtai-log</artifactId>
51-
<version>1.7.1</version>
51+
<version>1.7.2</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>io.dongtai.iast</groupId>

dongtai-agent/src/main/java/io/dongtai/iast/agent/Constant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
*/
66
public class Constant {
7-
public static final String AGENT_VERSION_VALUE = "v1.7.1";
7+
public static final String AGENT_VERSION_VALUE = "v1.7.2";
88
public static final String LANGUAGE = "JAVA";
99

1010
public final static String API_AGENT_REGISTER = "/api/v1/agent/register";

dongtai-agent/src/main/resources/bin/fluent.conf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
Db /tmp/ng.db
1010
Db.sync Full
1111
Tag Dongtai-${HOSTNAME_AGENT_ID}.log
12-
Buffer_Chunk_Size 320KB
13-
Buffer_Max_Size 520KB
12+
Buffer_Chunk_Size 8MB
13+
Buffer_Max_Size 16MB
14+
Skip_Long_Lines On
1415
Read_from_Head true
1516
[FILTER]
1617
Name record_modifier

dongtai-agent/src/main/resources/iast.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
iast.name=dongtai-Enterprise 1.7.1
1+
iast.name=dongtai-Enterprise 1.7.2
22
iast.response.name=dongtai
3-
iast.response.value=1.7.1
3+
iast.response.value=1.7.2
44
iast.server.url=https://iast.io/openapi
55
iast.server.token=39133a96f5735c253edd908078846c1051824edc
66
iast.allhook.enable=false

dongtai-agent/src/main/resources/iast.properties.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# iast.properties file example
2-
iast.name=dongtai-Enterprise 1.7.1
2+
iast.name=dongtai-Enterprise 1.7.2
33
iast.response.name=dongtai
4-
iast.response.value=1.7.1
4+
iast.response.value=1.7.2
55
iast.server.url=https://iast.io/openapi
66
iast.server.token=39133a96f5735c253edd908078846c1051824edc
77
iast.allhook.enable=false

dongtai-api/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>iast</artifactId>
77
<groupId>io.dongtai.iast</groupId>
8-
<version>1.7.1</version>
8+
<version>1.7.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -39,12 +39,12 @@
3939
<dependency>
4040
<groupId>cn.huoxian.iast</groupId>
4141
<artifactId>dongtai-spring-api</artifactId>
42-
<version>1.7.1</version>
42+
<version>1.7.2</version>
4343
</dependency>
4444
<dependency>
4545
<groupId>io.dongtai.iast</groupId>
4646
<artifactId>dongtai-log</artifactId>
47-
<version>1.7.1</version>
47+
<version>1.7.2</version>
4848
</dependency>
4949
</dependencies>
5050

dongtai-api/src/main/java/io/dongtai/api/jakarta/JakartaResponseWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class JakartaResponseWrapper extends HttpServletResponseWrapper implement
2323

2424
public JakartaResponseWrapper(HttpServletResponse response) {
2525
super(response);
26-
response.addHeader("DongTai", "v1.7.1");
26+
response.addHeader("DongTai", "v1.7.2");
2727
}
2828

2929
@Override

dongtai-api/src/main/java/io/dongtai/api/servlet2/ServletResponseWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class ServletResponseWrapper extends HttpServletResponseWrapper implement
2121

2222
public ServletResponseWrapper(HttpServletResponse response) {
2323
super(response);
24-
response.addHeader("DongTai", "v1.7.1");
24+
response.addHeader("DongTai", "v1.7.2");
2525
}
2626

2727
private String getLine() {

dongtai-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>iast</artifactId>
77
<groupId>io.dongtai.iast</groupId>
8-
<version>1.7.1</version>
8+
<version>1.7.2</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

dongtai-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.dongtai.iast</groupId>
99
<artifactId>iast</artifactId>
10-
<version>1.7.1</version>
10+
<version>1.7.2</version>
1111
</parent>
1212
<artifactId>dongtai-core</artifactId>
1313
<name>dongtai-core</name>
@@ -159,7 +159,7 @@
159159
<dependency>
160160
<groupId>io.dongtai.iast</groupId>
161161
<artifactId>dongtai-spy</artifactId>
162-
<version>1.7.1</version>
162+
<version>1.7.2</version>
163163
<scope>provided</scope>
164164
</dependency>
165165

@@ -224,7 +224,7 @@
224224
<dependency>
225225
<groupId>io.dongtai.iast</groupId>
226226
<artifactId>dongtai-log</artifactId>
227-
<version>1.7.1</version>
227+
<version>1.7.2</version>
228228
</dependency>
229229
<dependency>
230230
<groupId>io.dongtai.iast</groupId>

0 commit comments

Comments
 (0)