-
-
-
Installing and Configuring Elasticsearch & Kibana
-
Configuring Microsoft Azure Data Explorer (ADX) & Azure Event Hubs
-
-
-
-
-
This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
Installing and Configuring Elasticsearch & Kibana
This document explains how to install and configure Elasticsearch/Kibana for uberAgent (in this simple tutorial, we assume that you only have a single node with Elasticsearch and Kibana).
Installation
Follow Elastic’s installation guide to install Elasticsearch.
Configuration for uberAgent
Elasticsearch 6.x
Elasticsearch 6 is only supported by uberAgent version 6.2 and lower. Run the following PowerShell command on the Elasticsearch server to create an index template for uberAgent with the required field definitions:
Invoke-RestMethod -Uri http://localhost:9200/_template/uberagent -Method Put -InFile .\elasticsearch-uberagent.json -ContentType "Application/json"
<!--NeedCopy-->
On Linux use:
curl -XPUT -H 'Content-Type: application/json' http://localhost:9200/_template/uberagent -d@elasticsearch-uberagent.json
The file elasticsearch-uberagent.json
is part of the uberAgent download package.
If you enabled X-Pack security, you need to pass the elastic user (configured during the setup) for the commands above. On Windows use the -Credential
parameter, for Linux -u
.
Elasticsearch 7.7 And Lower
Elasticsearch 7.7 and lower are only supported by uberAgent version 6.2 and lower. Run the following PowerShell command on the Elasticsearch server to create an index template for uberAgent with the required field definitions:
Invoke-RestMethod -Uri http://localhost:9200/_template/uberagent?include_type_name=true -Method Put -InFile .\elasticsearch-uberagent.json -ContentType "Application/json"
<!--NeedCopy-->
On Linux use:
curl -XPUT -H 'Content-Type: application/json' http://localhost:9200/_template/uberagent?include_type_name=true -d@elasticsearch-uberagent.json
The file elasticsearch-uberagent.json
is part of the uberAgent download package.
If you enabled X-Pack security, you need to pass the elastic user (configured during the setup) for the commands above. On Windows use the -Credential
parameter, for Linux -u
.
Elasticsearch 7.8 And Higher (Including 8.x)
Elasticsearch 7.8 and higher as well as 8.x are only supported by uberAgent version 6.3 and higher. Run the following PowerShell command on the Elasticsearch server to create an index template for uberAgent with the required field definitions:
Invoke-RestMethod -Uri http://localhost:9200/_index_template/uberagent -Method Put -InFile .\elasticsearch-uberagent.json -ContentType "Application/json"
<!--NeedCopy-->
On Linux use:
curl -XPUT -H 'Content-Type: application/json' http://localhost:9200/_index_template/uberagent -d@elasticsearch-uberagent.json
The file elasticsearch-uberagent.json
is part of the uberAgent download package.
If you enabled X-Pack security, you need to pass the elastic user (configured during the setup) for the commands above. X-Pack security is enabled by default since Elasticsearch 8. On Windows use the -Credential
parameter, for Linux -u
.
If you want to use an Elasticsearch data stream instead of a classic index, add "data_stream": {},
to the file elasticsearch-uberagent.json
. Example:
{
"priority": 100,
"index_patterns": [
"uberagent*"
],
"data_stream": {},
"template": {
"mappings": {
"dynamic": "strict",
"properties":
{
"@timestamp" : {"type" : "date"}
}
}
}
}
<!--NeedCopy-->
Kibana
Follow Elastic’s installation guide to install Kibana
Dashboards
uberAgent only comes with Splunk dashboards. Nevertheless, there is a way to visualize uberAgent data in Elasticsearch using XOAP’s Kibana dashboard package. XOAP’s GitHub repository has 60+ dashboards that visualize a large part of the data set collected by uberAgent.
Install uberAgent
Read on about how to install uberAgent.
To configure uberAgent to send data to Elasticsearch, a configuration section similar to the following is required:
[Receiver]
Name = Default
Type = Elasticsearch
Protocol = HTTP
Servers = http://servername:9200
# The setting RESTToken is required if X-Pack security is enabled. It is enabled by default since Elasticsearch version 8.
RESTToken = username:password
<!--NeedCopy-->
Share
Share
In this article
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.