Skip to content

Commit

Permalink
Added Packet Capture Updates to 2023-09-01-Base
Browse files Browse the repository at this point in the history
  • Loading branch information
JeetendraJoshi-MSFT committed Oct 9, 2023
1 parent 230bfbb commit e47eef0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
],
"bytesToCapturePerPacket": 10000,
"totalBytesPerSession": 100000,
"timeLimitInSeconds": 100
"timeLimitInSeconds": 100,
"outputFiles": [
"https://constoso.blob.core.windows.net/diagscontainer/pc1_pcaps-1.tar.zip",
"https://constoso.blob.core.windows.net/diagscontainer/pc1_pcaps-2.tar.zip"
]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,18 +364,26 @@
"totalBytesPerSession": {
"type": "integer",
"format": "int64",
"minimum": 0,
"minimum": 1000,
"maximum": 4294967295,
"default": 67108864,
"description": "Maximum size of the capture output."
},
"timeLimitInSeconds": {
"type": "integer",
"format": "int32",
"minimum": 0,
"minimum": 5,
"maximum": 18000,
"default": 18000,
"description": "Maximum duration of the capture session in seconds."
},
"outputFiles": {
"readOnly": true,
"type": "array",
"items": {
"type": "string"
},
"description": "The list of output files of a packet capture session."
}
}
},
Expand Down

0 comments on commit e47eef0

Please sign in to comment.