Motr  M0
hist__stio_req.py
Go to the documentation of this file.
1 #
2 # Copyright (c) 2020 Seagate Technology LLC and/or its Affiliates
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 # For any questions about this software or licensing,
17 # please email opensource@seagate.com or cortx-questions@seagate.com.
18 #
19 
20 attr={ "name": "stio_req" }
21 def query(from_, to_):
22  q=f"""
23  SELECT (fr.time-stio_req.time) as time, stio_req.state, fr.state, fr.id FROM stio_req
24  JOIN stio_req fr ON fr.id=stio_req.id AND fr.pid=stio_req.pid
25  WHERE stio_req.state="{from_}"
26  AND fr.state="{to_}";
27  """
28  return q
29 
30 if __name__ == '__main__':
31  import sys
32  sys.exit(1)
def query(from_, to_)