Skip to content

Commit 7ca0fa7

Browse files
Add SAP Passport Fields
1 parent c685389 commit 7ca0fa7

File tree

7 files changed

+527
-4
lines changed

7 files changed

+527
-4
lines changed

cf-java-logging-support-core/beats/app-logs/docs/fields.asciidoc

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,127 @@ required: False
9191
A unique identifier that can be used to correlate multiple messages to a request.
9292

9393

94+
==== sap_passport
95+
96+
type: string
97+
98+
example: 2a54482a0300e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a54482a
99+
100+
required: False
101+
102+
SAP Passport is an end to end tracing technology used in many SAP products.
103+
It is a binary format encoded in hex notation.
104+
Applications can add the whole SAP Passport in this field or give its constituents in the respective fields.
105+
106+
107+
==== sap_passport_Action
108+
109+
type: string
110+
111+
required: False
112+
113+
This field can contain the action of an SAP Passport.
114+
115+
116+
==== sap_passport_ActionType
117+
118+
type: string
119+
120+
required: False
121+
122+
This field can contain the action type of an SAP Passport.
123+
124+
125+
==== sap_passport_ClientNumber
126+
127+
type: string
128+
129+
required: False
130+
131+
This field can contain the client number of an SAP Passport.
132+
133+
134+
==== sap_passport_ConnectionCounter
135+
136+
type: integer
137+
138+
required: False
139+
140+
This field can contain the connection counter of an SAP Passport.
141+
142+
143+
==== sap_passport_ConnectionId
144+
145+
type: string
146+
147+
required: False
148+
149+
This field can contain the connection id type of an SAP Passport.
150+
151+
152+
==== sap_passport_ComponentName
153+
154+
type: string
155+
156+
required: False
157+
158+
This field can contain the component name of an SAP Passport.
159+
160+
161+
==== sap_passport_ComponentType
162+
163+
type: string
164+
165+
required: False
166+
167+
This field can contain the component type of an SAP Passport.
168+
169+
170+
==== sap_passport_PreviousComponentName
171+
172+
type: string
173+
174+
required: False
175+
176+
This field can contain the previous component name of an SAP Passport.
177+
178+
179+
==== sap_passport_TraceFlags
180+
181+
type: string
182+
183+
required: False
184+
185+
This field can contain the trace flags of an SAP Passport.
186+
187+
188+
==== sap_passport_TransactionId
189+
190+
type: string
191+
192+
required: False
193+
194+
This field can contain the transaction id of an SAP Passport.
195+
196+
197+
==== sap_passport_RootContextId
198+
199+
type: string
200+
201+
required: False
202+
203+
This field can contain the root context id of an SAP Passport.
204+
205+
206+
==== sap_passport_UserId
207+
208+
type: string
209+
210+
required: False
211+
212+
This field can contain the user id of an SAP Passport.
213+
214+
94215
==== tenant_id
95216

96217
example: e24a5963-95eb-4568-b1ae-81b67c41e99a

cf-java-logging-support-core/beats/app-logs/etc/app-logs.template.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,71 @@
9898
"index": "not_analyzed",
9999
"type": "string"
100100
},
101+
"sap_passport": {
102+
"doc_values": true,
103+
"index": "not_analyzed",
104+
"type": "string"
105+
},
106+
"sap_passport_Action": {
107+
"doc_values": true,
108+
"index": "not_analyzed",
109+
"type": "string"
110+
},
111+
"sap_passport_ActionType": {
112+
"doc_values": true,
113+
"index": "not_analyzed",
114+
"type": "string"
115+
},
116+
"sap_passport_ClientNumber": {
117+
"doc_values": true,
118+
"index": "not_analyzed",
119+
"type": "string"
120+
},
121+
"sap_passport_ComponentName": {
122+
"doc_values": true,
123+
"index": "not_analyzed",
124+
"type": "string"
125+
},
126+
"sap_passport_ComponentType": {
127+
"doc_values": true,
128+
"index": "not_analyzed",
129+
"type": "string"
130+
},
131+
"sap_passport_ConnectionCounter": {
132+
"doc_values": true,
133+
"ignore_malformed": true,
134+
"type": "integer"
135+
},
136+
"sap_passport_ConnectionId": {
137+
"doc_values": true,
138+
"index": "not_analyzed",
139+
"type": "string"
140+
},
141+
"sap_passport_PreviousComponentName": {
142+
"doc_values": true,
143+
"index": "not_analyzed",
144+
"type": "string"
145+
},
146+
"sap_passport_RootContextId": {
147+
"doc_values": true,
148+
"index": "not_analyzed",
149+
"type": "string"
150+
},
151+
"sap_passport_TraceFlags": {
152+
"doc_values": true,
153+
"index": "not_analyzed",
154+
"type": "string"
155+
},
156+
"sap_passport_TransactionId": {
157+
"doc_values": true,
158+
"index": "not_analyzed",
159+
"type": "string"
160+
},
161+
"sap_passport_UserId": {
162+
"doc_values": true,
163+
"index": "not_analyzed",
164+
"type": "string"
165+
},
101166
"space_id": {
102167
"doc_values": true,
103168
"index": "not_analyzed",

cf-java-logging-support-core/beats/app-logs/etc/fields.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,75 @@ ctx:
7676
description: |
7777
A unique identifier that can be used to correlate multiple messages to a request.
7878
79+
- name: "sap_passport"
80+
type: string
81+
required: false
82+
example: "2a54482a0300e60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a54482a"
83+
description: |
84+
SAP Passport is an end to end tracing technology used in many SAP products.
85+
It is a binary format encoded in hex notation.
86+
Applications can add the whole SAP Passport in this field or give its constituents in the respective fields.
87+
- name: "sap_passport_Action"
88+
type: string
89+
required: false
90+
description: |
91+
This field can contain the action of an SAP Passport.
92+
- name: "sap_passport_ActionType"
93+
type: string
94+
required: false
95+
description: |
96+
This field can contain the action type of an SAP Passport.
97+
- name: "sap_passport_ClientNumber"
98+
type: string
99+
required: false
100+
description: |
101+
This field can contain the client number of an SAP Passport.
102+
- name: "sap_passport_ConnectionCounter"
103+
type: integer
104+
required: false
105+
description: |
106+
This field can contain the connection counter of an SAP Passport.
107+
- name: "sap_passport_ConnectionId"
108+
type: string
109+
required: false
110+
description: |
111+
This field can contain the connection id type of an SAP Passport.
112+
- name: "sap_passport_ComponentName"
113+
type: string
114+
required: false
115+
description: |
116+
This field can contain the component name of an SAP Passport.
117+
- name: "sap_passport_ComponentType"
118+
type: string
119+
required: false
120+
description: |
121+
This field can contain the component type of an SAP Passport.
122+
- name: "sap_passport_PreviousComponentName"
123+
type: string
124+
required: false
125+
description: |
126+
This field can contain the previous component name of an SAP Passport.
127+
- name: "sap_passport_TraceFlags"
128+
type: string
129+
required: false
130+
description: |
131+
This field can contain the trace flags of an SAP Passport.
132+
- name: "sap_passport_TransactionId"
133+
type: string
134+
required: false
135+
description: |
136+
This field can contain the transaction id of an SAP Passport.
137+
- name: "sap_passport_RootContextId"
138+
type: string
139+
required: false
140+
description: |
141+
This field can contain the root context id of an SAP Passport.
142+
- name: "sap_passport_UserId"
143+
type: string
144+
required: false
145+
description: |
146+
This field can contain the user id of an SAP Passport.
147+
79148
- name: "tenant_id"
80149
string: string
81150
required: false

0 commit comments

Comments
 (0)