Index Template

A configuration reference to manage index templates in elasticsearch using "Logging Operator".

Index Patterns

Index patterns on which template will be applied.

indexPatterns: 
  - "kubernetes-default-*"
  - "kubernetes-istio-system-*"

Index Settings

Settings are specific for elasticsearch indexes.

  settings:
    shards: 1
    replicas: 1
    indexLifeCycleName: indexlifecycle-example
    rolloverAlias: "kubernetes"

Elasticsearch Configuration

Connection details of elasticsearch setup.

  elasticsearch:
    host: "https://elasticsearch-cluster-ingestion:9200"
    username: elastic
    password: "Opstree@1234"

Last updated