File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+ /npm-debug.log *
6
+ /yarn-error.log
7
+ /yarn.lock
8
+ /package-lock.json
9
+
10
+ # production
11
+ /dist
12
+ dist.zip
13
+
14
+ # misc
15
+ .DS_Store
16
+
17
+ # umi
18
+ .umi
19
+ .umi-production
Original file line number Diff line number Diff line change @@ -100,9 +100,12 @@ const application = {
100
100
101
101
return fetch ( {
102
102
method : 'get' ,
103
+ < << << << HEAD
103
104
headers : {
104
105
Accept : '*/*'
105
106
} ,
107
+ = === ===
108
+ >>> >>> > 07 edb6c ... add moss - ui
106
109
url : `admin/instances/${ id } /actuator/health` ,
107
110
} )
108
111
. then ( data => {
@@ -147,9 +150,12 @@ const application = {
147
150
148
151
fetchApplicationGCLog : ( id : string , page = 1 , size = 100 ) : Promise < GCLogData > => {
149
152
return fetch ( {
153
+ < << << << HEAD
150
154
header: {
151
155
Accept : 'application/json'
152
156
} ,
157
+ = === ===
158
+ >>> > >>> 07 edb6c ... add moss - ui
153
159
url: `admin/instances/${ id } /actuator/gc?page=${ page } &size=${ size } ` ,
154
160
} ) . then ( data => {
155
161
return model . GCLog ( data )
@@ -188,7 +194,11 @@ const application = {
188
194
const requestConf : any = {
189
195
method : 'get' ,
190
196
responseType : 'Arraybuffer' ,
197
+ < << << << HEAD
191
198
url : `admin/instances/${ id } /actuator/logfile/${ value } ` ,
199
+ = === ===
200
+ url : `admin/instances/${ id } /actuator/${ value } logfile` ,
201
+ > >>> >>> 07 edb6c ... add moss - ui
192
202
}
193
203
194
204
if ( offset && offset > 0 ) {
You can’t perform that action at this time.
0 commit comments