You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as i create user based on that and have 1 ELK cluster that dev/staging/prod will log to this cluster. For me to create user via Kibana DevTools: ( I define Index Pattern to access to role).
POST _security/role/logstash_writer-dev
{
"cluster": ["manage_index_templates", "monitor", "manage_ilm"],
"indices": [
{
"names": [ "k8s_cluster-dev-*" , "inference-log-dev-*" ],
"privileges": ["write","create","delete","create_index","manage","manage_ilm"]
}
]
}
POST _security/user/elastic-seldon-dev
{
"password" : "PASS",
"roles" : [ "logstash_writer-dev"],
"full_name" : "Internal Logstash User for Seldon"
}
I can provide prefix to Fluentd part like:
fluentd-values.yaml: ( via elasticsearch.logstash.prefix
MAIN MOTIVATION: Having 1 ELK Cluster for different ENVIRONMENTs ( dev/test/staging/prod)
Can we put a prefix on index to Request-Logger's ELK Indices
Right now it is like
what i want is something like
as i create user based on that and have 1 ELK cluster that dev/staging/prod will log to this cluster. For me to create user via Kibana DevTools: ( I define Index Pattern to access to role).
I can provide prefix to Fluentd part like:
fluentd-values.yaml: ( via elasticsearch.logstash.prefix
The text was updated successfully, but these errors were encountered: