gpt4 book ai didi

python - 在python中通过HTTP将日志条目写入splunk

转载 作者:行者123 更新时间:2023-11-30 22:24:51 28 4
gpt4 key购买 nike

我们有一个Python程序,需要将日志发送到splunk。我们的 splunk 管理员创建了一个服务收集器 HTTP 端点,用于将日志发布到以下位置:

  • 索引
  • token
  • 主机名
  • URI

我们在 splunk 中找不到输入 URI 的位置 python SDK客户。例如:

import splunklib.client as client
import splunklib.results as results_util

HOST="splunkcollector.hostname.com"
URI="services/collector/raw"
TOKEN="ABCDEFG-8A55-4ABB-HIJK-1A7E6637LMNO"
PORT=443

# Create a Service instance and log in
service = client.connect(
host=HOST,
port=PORT,
token=TOKEN)

# Retrieve the index for the data
myindex = service.indexes["cloud_custodian"]

# Submit an event over HTTP
myindex.submit("Dummy test python client log")

如您所见,我从不使用 URI 变量。上述代码的结果是:

Traceback (most recent call last):
File "splunk_log.py", line 15, in <module>
myindex = service.indexes["cloud_custodian"]
File "/usr/local/lib/python2.7/site-packages/splunklib/client.py", line 1230, in __getitem__
raise KeyError(key)
KeyError: UrlEncoded('cloud_custodian')

最佳答案

最终执行了股票 POST requests 。我不确定 splunk 客户端是否打算支持 HTTP 事件收集器。

import requests

url='https://splunkcollector.hostname.com:443/services/collector/event'
authHeader = {'Authorization': 'Splunk {}'.format('ABCDEFG-8A55-4ABB-HIJK-1A7E6637LMNO')}
jsonDict = {"index":"cloud_custodian", "event": { 'message' : "Dummy test python client log" } }

r = requests.post(url, headers=authHeader, json=jsonDict, verify=False)
print r.text

关于python - 在python中通过HTTP将日志条目写入splunk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47716695/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com