├── .gitignore ├── .travis.yml ├── README.md ├── namespaces ├── README.md ├── _default_.yml ├── aushape.yml ├── ci_job.yml ├── deprecated │ └── collectd.yml ├── docker.yml ├── fedora_ci.yml ├── foreman.yml ├── kubernetes.yml ├── openstack │ └── openstack.yml ├── ovirt.yml ├── pipeline_metadata.yml ├── rsyslog.yml ├── systemd.yml ├── testcase.yml └── tlog.yml ├── reindexer └── logstash-reindex-jenkins.conf ├── scripts ├── UnitTestingHowTo.md ├── common_test_support.py ├── compare_against_released_patterns_test.py ├── compare_against_released_templates_test.py ├── concat_index_pattern_fields.py ├── generate_field_docs.py ├── generate_template.py ├── generate_template_test.py ├── normalize.py └── supported_versions.py └── templates ├── Makefile ├── ci_model ├── Makefile ├── README.md └── template.yml ├── deprecated └── collectd_metrics │ ├── Makefile │ ├── README.md │ └── template.yml ├── fedora_ci ├── Makefile ├── README.md └── template.yml ├── foreman ├── Makefile ├── README.md └── template.yml ├── openshift ├── Makefile ├── README.md ├── template-operations.yml └── template-project.yml ├── skeleton-index-pattern.json ├── skeleton.json └── test ├── Makefile ├── README.md ├── template-test.yml └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/README.md -------------------------------------------------------------------------------- /namespaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/README.md -------------------------------------------------------------------------------- /namespaces/_default_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/_default_.yml -------------------------------------------------------------------------------- /namespaces/aushape.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/aushape.yml -------------------------------------------------------------------------------- /namespaces/ci_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/ci_job.yml -------------------------------------------------------------------------------- /namespaces/deprecated/collectd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/deprecated/collectd.yml -------------------------------------------------------------------------------- /namespaces/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/docker.yml -------------------------------------------------------------------------------- /namespaces/fedora_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/fedora_ci.yml -------------------------------------------------------------------------------- /namespaces/foreman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/foreman.yml -------------------------------------------------------------------------------- /namespaces/kubernetes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/kubernetes.yml -------------------------------------------------------------------------------- /namespaces/openstack/openstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/openstack/openstack.yml -------------------------------------------------------------------------------- /namespaces/ovirt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/ovirt.yml -------------------------------------------------------------------------------- /namespaces/pipeline_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/pipeline_metadata.yml -------------------------------------------------------------------------------- /namespaces/rsyslog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/rsyslog.yml -------------------------------------------------------------------------------- /namespaces/systemd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/systemd.yml -------------------------------------------------------------------------------- /namespaces/testcase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/testcase.yml -------------------------------------------------------------------------------- /namespaces/tlog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/namespaces/tlog.yml -------------------------------------------------------------------------------- /reindexer/logstash-reindex-jenkins.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/reindexer/logstash-reindex-jenkins.conf -------------------------------------------------------------------------------- /scripts/UnitTestingHowTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/UnitTestingHowTo.md -------------------------------------------------------------------------------- /scripts/common_test_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/common_test_support.py -------------------------------------------------------------------------------- /scripts/compare_against_released_patterns_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/compare_against_released_patterns_test.py -------------------------------------------------------------------------------- /scripts/compare_against_released_templates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/compare_against_released_templates_test.py -------------------------------------------------------------------------------- /scripts/concat_index_pattern_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/concat_index_pattern_fields.py -------------------------------------------------------------------------------- /scripts/generate_field_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/generate_field_docs.py -------------------------------------------------------------------------------- /scripts/generate_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/generate_template.py -------------------------------------------------------------------------------- /scripts/generate_template_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/generate_template_test.py -------------------------------------------------------------------------------- /scripts/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/normalize.py -------------------------------------------------------------------------------- /scripts/supported_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/scripts/supported_versions.py -------------------------------------------------------------------------------- /templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/Makefile -------------------------------------------------------------------------------- /templates/ci_model/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/ci_model/Makefile -------------------------------------------------------------------------------- /templates/ci_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/ci_model/README.md -------------------------------------------------------------------------------- /templates/ci_model/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/ci_model/template.yml -------------------------------------------------------------------------------- /templates/deprecated/collectd_metrics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/deprecated/collectd_metrics/Makefile -------------------------------------------------------------------------------- /templates/deprecated/collectd_metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/deprecated/collectd_metrics/README.md -------------------------------------------------------------------------------- /templates/deprecated/collectd_metrics/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/deprecated/collectd_metrics/template.yml -------------------------------------------------------------------------------- /templates/fedora_ci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/fedora_ci/Makefile -------------------------------------------------------------------------------- /templates/fedora_ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/fedora_ci/README.md -------------------------------------------------------------------------------- /templates/fedora_ci/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/fedora_ci/template.yml -------------------------------------------------------------------------------- /templates/foreman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/foreman/Makefile -------------------------------------------------------------------------------- /templates/foreman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/foreman/README.md -------------------------------------------------------------------------------- /templates/foreman/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/foreman/template.yml -------------------------------------------------------------------------------- /templates/openshift/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/openshift/Makefile -------------------------------------------------------------------------------- /templates/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/openshift/README.md -------------------------------------------------------------------------------- /templates/openshift/template-operations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/openshift/template-operations.yml -------------------------------------------------------------------------------- /templates/openshift/template-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/openshift/template-project.yml -------------------------------------------------------------------------------- /templates/skeleton-index-pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/skeleton-index-pattern.json -------------------------------------------------------------------------------- /templates/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/skeleton.json -------------------------------------------------------------------------------- /templates/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/test/Makefile -------------------------------------------------------------------------------- /templates/test/README.md: -------------------------------------------------------------------------------- 1 | Start `test.sh` from your CI to run tests. 2 | 3 | -------------------------------------------------------------------------------- /templates/test/template-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViaQ/elasticsearch-templates/HEAD/templates/test/template-test.yml -------------------------------------------------------------------------------- /templates/test/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rm -rf foo.test.* 4 | 5 | make -f Makefile 6 | 7 | ls -la 8 | --------------------------------------------------------------------------------