Gerrit历史记录查询

本文介绍如何查询Gerrit指定状态的patch set,并分段保存为Json文件,便于后续用Python等工具处理成Excel。首先查看最近500条记录,然后继续查询500-1000条,详细查询命令可参考官方文档。
摘要由CSDN通过智能技术生成

查询Gerrit指定状态的patch set,并保存到文件。采用分段查看首先查看最近500条的,再查看最近500-1000条的。以Json文件格式保存。后续处理做成Excel可以用Python等。

查询命令文档见https://review.openstack.org/Documentation/cmd-query.html


#!/bin/bash

#This is a script for get the history of the gerrit pathes
#USAGE: getpats project status time 
#time meas after/since this time ,for exzampl 2017-01-01.every query will fetch 500 entries 

if [ $# -lt 4 ];then
    echo "wrong usage,USAGE: getpats.sh project status time,or see the script for more details "
    exit 1
fi
 
segment=0
project=$1
status=$2
time=$3
savedfile=${project}${time}".re"

command=`ssh -p 29418 gerrit.louis.com gerrit query --format=JSON --start $segment  status:$status after:$time projects:$project`

#每一次查询如果属于刚好满足查询条件的最后
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值