/
githubmirror
/
rsyslog
ОбзорДокументацияВойти
/
githubmirror
/
rsyslog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
rsyslog/
plugins/omelasticsearch/
..
AGENTS.md

doc: optimize agent build instructions for efficiency

7 месяцев назад
MODULE_METADATA.yaml

docs: add agent guides and module metadata scaffolding

год назад
Makefile.am

build system: Don't link core against libcurl if explicitly requested

9 лет назад
README

dev doc: add some info on how to access ES for testing

13 лет назад
omelasticsearch.c

Merge pull request #7278 from Cropi/omelasticsearch-pqc-tls

месяц назад
README
How to access ElasticSearch on local machine (for testing):
===========================================================
see: https://github.com/mobz/elasticsearch-head
 
How to produce an error:
========================
It's quite easy to get 400, if you put a wrong mapping to your
index. That would be easy to reproduce in "normal" omelasticsearch usage
conditions, by only altering the ES configuration:
 
1. Make your index first. Let's call it "testindex":
$ curl -XPUT localhost:9200/testindex/
 
2. Put your mapping for a search type called "mytype", where you specify
that date property should be an integer:
$ curl -XPUT localhost:9200/testindex/mytype/_mapping -d '{"mytype":{"properties": {"timegenerated":{"type":"integer"}}}}'
 
3. Now try to insert something where date is not an integer:
$ curl -XPOST localhost:9200/testindex/mytype/ -d '{"timegenerated":"bla"}'
{"error":"MapperParsingException[Failed to parse [date]]; nested: NumberFormatException[For input string: \"bla\"]; ","status":400}