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:
@@ -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'",
|
||||
|
||||
@@ -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%'"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user