Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Products
/
VSTT-Plugins
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
2
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
223ab8ec
...
223ab8ec2303b0dfc998a466447f5660d6e4c710
authored
2018-04-09 18:50:58 +0200
by
Christian Gerdes
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added PageTimeExample.sql to TestProject
1 parent
93e0ce42
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
TestProject1/PageTimeExample.sql
TestProject1/TestProject1.csproj
TestProject1/PageTimeExample.sql
0 → 100644
View file @
223ab8e
SELECT
AVG
([
ComputedValue
])
AS
'Avg. Page Time'
,
STDEV
([
ComputedValue
])
AS
'Std. Dev.'
,
COUNT
([
ComputedValue
])
AS
'# Samples'
,
MIN
([
IntervalStartTime
])
AS
'Start Time'
,
MAX
([
IntervalEndTime
])
AS
'End Time'
FROM
[
dbo
].[
LoadTestComputedCounterSample
]
WHERE
[
LoadTestRunId
]
=
5
AND
[
CategoryName
]
=
N
'LoadTest:page'
AND
[
CounterName
]
=
N
'Avg. Page Time'
AND
[
InstanceName
]
=
N
'_Total'
AND
[
IntervalStartTime
]
>=
CONVERT
(
DATETIME
,
'2017-10-20 15:10:00'
,
102
)
AND
[
IntervalEndTime
]
<=
CONVERT
(
DATETIME
,
'2017-10-20 15:15:00'
,
102
)
\ No newline at end of file
TestProject1/TestProject1.csproj
View file @
223ab8e
...
...
@@ -73,6 +73,7 @@
<None Include="LoadTest1.loadtest">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<Content Include="PageTimeExample.sql" />
<Content Include="UserdataFew.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
...
...
Please
register
or
sign in
to post a comment