Apache 2.4如何使用SetEnvIf从日志中排除某些GET请求

时间:2018-10-27 19:49:23

标签: regex apache setenvif

花了一些时间在文档和Google上,但没有找到真正的例子。

我想从日志中排除许多不必要的行

id=0

我尝试了

import pandas as pd
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
df = pd.DataFrame({'x':[100,60,1,1,1,5,4,4], 'y':[100,125,1,2,3,10,10,9],'id':[0,1,2,2,2,3,3,3]})
for i, g in df.groupby('id'):     
    if(i==0):
        g.plot(x='x',y='y',ax=ax,marker='o',title="Alternative Routes",label="Start Punkt")
    if(i==1):
        g.plot(x='x',y='y',ax=ax,marker='o',title="Alternative Routes",label="End Punkt")
    else:
        g.plot(x='x',y='y',ax=ax, title="Alternative Routes",label=i)
plt.show()

...但没有成功。

可以通过Thx获取其他提示(如果Apache GET被正则表达式完全排除...)

0 个答案:

没有答案