Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit b56f92d

Browse files
authored
Merge pull request qca#5 from mattsm/prpl
Fixes needed for Kibana publishing to work on prpl fork
2 parents 0c3b295 + 62badea commit b56f92d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bft

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ def main():
215215
else:
216216
n = t.__class__.__name__
217217
for k, v in t.logged.items():
218-
info_for_remote_log[n + '.' + k] = v
218+
info_for_remote_log[n + '-' + k] = v
219219
if hasattr(t, 'result_grade'):
220-
info_for_remote_log[n + ".result"] = t.result_grade
220+
info_for_remote_log[n + "-result"] = t.result_grade
221221

222222
try:
223223
if config.logging_server is not None:

config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Elasticsearch server. Data in JSON-format can be directly sent here.
2222
# Set to None or to a valid host, see documentation:
2323
# https://elasticsearch-py.readthedocs.org/en/master/api.html#elasticsearch
24-
elasticsearch_server = None
24+
elasticsearch_server = 'http://etc.prplfoundation.org:9200/'
2525

2626
# Code change server like gerrit, github, etc... Used only in display
2727
# of the results html file to list links to code changes tested.

0 commit comments

Comments
 (0)