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 Aug 2, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+12-11Lines changed: 12 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,31 +28,32 @@ in.
28
28
*__Logs__ - A list of AD FS logs to include in the aggregation. Current options are: "Admin", "Debug", "Security".
29
29
The default will pull from both Security and Admin.
30
30
*__CorrelationID__ - The correlation ID for a single request. This will aggregate all chosen logs for this request
31
-
*__AllWithoutHeaders__ - this flag will cause all requests to be grouped by correlation ID, but the HTTP headers
32
-
will not be extracted from the logs
33
-
*__AllWithHeaders__ - this flag will cause all requests to be grouped by correlation ID, and the HTTP headers of
34
-
each request will be extracted from the logs
35
-
*__StartTime__ - the UTC start time to use when aggregating multiple requests. All requests that start after this
31
+
*__All__ - This flag will cause all events in the desired logs to be grouped by correlation ID.
32
+
*__Headers__ - This flag can be combined with any means of event collection (a single correlation id, all events, or
33
+
time based) to reconstruct available HTTP requests and responses.
34
+
*__StartTime__ - The UTC start time to use when aggregating multiple requests. All requests that start after this
36
35
time will be aggregated
37
-
*__EndTime__ - the UTC end time to use when aggregating multiple requests. All requests that end before this time
36
+
*__EndTime__ - The UTC end time to use when aggregating multiple requests. All requests that end before this time
38
37
will be aggregated
39
-
*__Server__ - a comma-separated list of server names to pull logs from.
38
+
*__Server__ - A comma-separated list of server names to pull logs from.
40
39
The default will pull from LocalHost
41
40
42
41
## Get-ADFSEvents Output
43
42
44
-
The output produced by Get-ADFSEvents is a list of objects with each containing the following properties:
43
+
The output produced by Get-ADFSEvents is a list of objects with each containing at least the following properties:
45
44
46
45
1.__CorrelationID__
47
46
2.__Events__
48
-
3.__Headers__
47
+
49
48
50
49
The __CorrelationID__ property contains a string representation of the Correlation ID that all events and headers within that object share.
51
50
52
51
The __Events__ property contains a list of [EventLogRecord](https://msdn.microsoft.com/en-us/library/system.diagnostics.eventing.reader.eventlogrecord)
53
52
objects for the matching Correlation ID.
54
53
55
-
The __Headers__ property contains a list of objects, each containing of the following properties:
54
+
If the __Headers__ flag is included in the cmdlet's invocation, the output object will also contain a __Headers__ property.
55
+
56
+
The __Headers__ property contains a list of objects, each containing the following properties:
56
57
57
58
1.__QueryString__
58
59
2.__ResponseString__
@@ -80,7 +81,7 @@ The __ResponseHeader__ property is a dictionary containing the headers included
80
81
81
82
EXAMPLE: Retrieve all logs from two servers for a specific request
0 commit comments