Adding query for bug https://bugs.launchpad.net/tripleo/+bug/1449136
Change-Id: Ia878d594bb9625556c8f937f3c40697d30af1a1f
This commit is contained in:
parent
3cfc6361f4
commit
ab0f9550d9
2
output/elastic-recheck/1449136.yaml
Normal file
2
output/elastic-recheck/1449136.yaml
Normal file
@ -0,0 +1,2 @@
|
||||
query: 'message:"ReadTimeoutError: HTTPConnectionPool" AND (tags:"console")'
|
||||
suppress-graph: false
|
@ -28,6 +28,13 @@
|
||||
"msg": "curl_re",
|
||||
"pattern": "curl_re",
|
||||
"tag": "info"
|
||||
},
|
||||
{
|
||||
"id": "ReadTimeoutError_HTTPConnectionPool",
|
||||
"logstash": "",
|
||||
"msg": "ReadTimeoutError_HTTPConnectionPool",
|
||||
"pattern": "ReadTimeoutError_HTTPConnectionPool",
|
||||
"tag": "info"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -51,6 +58,10 @@
|
||||
{
|
||||
"name": "curl_re",
|
||||
"regex": "curl. .*? couldn\\\\'t open file \"(.*?)\""
|
||||
},
|
||||
{
|
||||
"name": "ReadTimeoutError_HTTPConnectionPool",
|
||||
"regex": "ReadTimeoutError:\\ HTTPConnectionPool"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,3 +1,4 @@
|
||||
couldn't open file
|
||||
Stack overcloud CREATE_FAILED
|
||||
AnsibleUndefinedVariable
|
||||
ReadTimeoutError: HTTPConnectionPool
|
||||
|
@ -20,3 +20,7 @@ queries:
|
||||
- id: curl_re
|
||||
pattern: "couldn't open file"
|
||||
regex: 'curl. .*? couldn\\''t open file "(.*?)"'
|
||||
- id: ReadTimeoutError_HTTPConnectionPool
|
||||
pattern: "ReadTimeoutError: HTTPConnectionPool"
|
||||
tags: console
|
||||
url: https://bugs.launchpad.net/tripleo/+bug/1449136
|
||||
|
@ -50,7 +50,7 @@ for query_dict in queries_list["queries"]:
|
||||
)
|
||||
if "tags" in query_dict:
|
||||
if isinstance(query_dict["tags"], str):
|
||||
message += "AND " + "tags:" + query_dict["tags"] + '"'
|
||||
message += " AND " + '(tags:"' + query_dict["tags"] + '")'
|
||||
elif isinstance(query_dict["tags"], list):
|
||||
message += (
|
||||
" AND ("
|
||||
|
Loading…
x
Reference in New Issue
Block a user