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
Copy file name to clipboardExpand all lines: Sources/InstanaAgent/Instana.swift
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -372,14 +372,13 @@ import Foundation
372
372
}
373
373
374
374
///
375
-
/// Capture HTTP header fields by providing an array
376
-
/// of NSRegularExpression that match the HTTP field keys.
375
+
/// HTTP request and response headers can be captured by the iOS agent. You can use regular expressions to define the keys of the HTTP header fields that the iOS agent should capture.
377
376
/// Example: try? NSRegularExpression(pattern: #"X-Key"#, options: [.caseInsensitive]) to capture the X-Key or X-KEY
378
377
///
379
378
/// Default: No HTTP header fields are captured. Keywords must be provided explicitly
380
379
///
381
380
/// - Parameters:
382
-
/// - regex: Array of NSRegularExpression to capture matching HTTP header field keywords
381
+
/// - regex: An array of NSRegularExpression objects to match the key of HTTP request/response headers that you want to capture.
0 commit comments