Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.

Commit 0a1a15e

Browse files
author
Chris Wiechmann
committed
Using AND operator for AuthN-Subject-ID
#138
1 parent f43e293 commit 0a1a15e

File tree

1 file changed

+2
-2
lines changed
  • apibuilder4elastic/custom_flow_nodes/api-builder-plugin-traffic-monitor-api-utils/src

1 file changed

+2
-2
lines changed

apibuilder4elastic/custom_flow_nodes/api-builder-plugin-traffic-monitor-api-utils/src/actions.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ async function handleFilterFields(parameters, options) {
4444
{ fieldName: 'remoteName', queryType: 'match', queryLocation: 'http.remoteName' },
4545
{ fieldName: 'localAddr', queryType: 'match', queryLocation: 'http.localAddr' },
4646
{ fieldName: 'status', queryType: 'match', queryLocation: addStatusFilter },
47-
{ fieldName: 'subject', queryType: 'match', queryLocation: 'http.authSubjectId' },
48-
{ fieldName: 'sslsubject', queryType: 'match', queryLocation: 'http.sslSubject' },
47+
{ fieldName: 'subject', queryType: 'match', queryLocation: 'http.authSubjectId', params: { operator: 'and' } },
48+
{ fieldName: 'sslsubject', queryType: 'match', queryLocation: 'http.sslSubject', params: { operator: 'and' } },
4949
{ fieldName: 'operation', queryType: 'match', queryLocation: 'serviceContext.method', params: { operator: 'and' } },
5050
{ fieldName: 'localPort', queryType: 'match', queryLocation: 'http.localPort' },
5151
{ fieldName: 'method', queryType: 'match', queryLocation: 'http.method' },

0 commit comments

Comments
 (0)