Log property is now Duration as opposed to TimingDuration (A few diff logtypes that store ms all use same prop name of Duration)

This commit is contained in:
Warren Buckley
2018-09-12 21:49:59 +01:00
parent 6bee3a421f
commit 603a1c7814
2 changed files with 10 additions and 10 deletions

View File

@@ -88,7 +88,7 @@
vm.loading = true;
var savedSearches = logViewerResource.getSavedSearches().then(function (data) {
logViewerResource.getSavedSearches().then(function (data) {
vm.searches = data;
vm.loading = false;
},
@@ -104,12 +104,12 @@
"query": "Has(@Exception)"
},
{
"name": "Find all logs that have the property 'TimingDuration'",
"query": "Has(TimingDuration)"
"name": "Find all logs that have the property 'Duration'",
"query": "Has(Duration)"
},
{
"name": "Find all logs that have the property 'TimingDuration' and the duration is greater than 1000ms",
"query": "Has(TimingDuration) and TimingDuration > 1000"
"name": "Find all logs that have the property 'Duration' and the duration is greater than 1000ms",
"query": "Has(Duration) and Duration > 1000"
},
{
"name": "Find all logs that are from the namespace 'Umbraco.Core'",

View File

@@ -8,12 +8,12 @@
"query": "Has(@Exception)"
},
{
"name": "Find all logs that have the property 'TimingDuration'",
"query": "Has(TimingDuration)"
"name": "Find all logs that have the property 'Duration'",
"query": "Has(Duration)"
},
{
"name": "Find all logs that have the property 'TimingDuration' and the duration is greater than 1000ms",
"query": "Has(TimingDuration) and TimingDuration > 1000"
"name": "Find all logs that have the property 'Duration' and the duration is greater than 1000ms",
"query": "Has(Duration) and Duration > 1000"
},
{
"name": "Find all logs that are from the namespace 'Umbraco.Core'",
@@ -39,4 +39,4 @@
"name": "Find all logs that the message that starts with 'end' in it with SQL like",
"query": "@Message like 'end%'"
}
]
]