You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
### Added
9
9
- Traffic-Monitor Authorization should support Multi-Organization [#141](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/141)
10
10
- New optional parameter: `FILEBEAT_COMPRESSION_LEVEL` for Filebeat to Logstash compression rate [#143](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/143)
11
+
- A warning is now logged if unexpectly no Circuit-Path for an API-Request is found [#140](https://github.com/Axway-API-Management-Plus/apigateway-openlogging-elk/issues/140)
Copy file name to clipboardExpand all lines: apibuilder4elastic/flows/trafficMonitorApi-circuitpath.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,7 @@
115
115
{
116
116
"name": "code",
117
117
"type": "string",
118
-
"value": "\"let result = [];\\n //console.log(data);\\n \\n if(typeof data.hits[0] != \\\"undefined\\\"){\\n var source = data.hits[0]._source;\\n if(source.circuitPath) {\\n return source.circuitPath;\\n } else {\\n logger.warn(`Unexpectedly no CircuitPath information found for API request: '${source.correlationId}'`);\\n return [];\\n }\\n }\""
118
+
"value": "\"let result = [];\\n //console.log(data);\\n \\n if(typeof data.hits[0] != \\\"undefined\\\"){\\n var source = data.hits[0]._source;\\n if(source.circuitPath) {\\n result = source.circuitPath;\\n } else {\\n logger.warn(`Unexpectedly no CircuitPath information found for API request: '${source.correlationId}'`);\\n }\\n }\\n return result;\""
0 commit comments