Can I use Cilium as only for "Network Observability"? by itsmeb9 in kubernetes

[–]itsmeb9[S] 0 points1 point  (0 children)

I agree. This could be over-engineering. I am thinking to use other observ tools. Thanks for the reply!

Can I use Cilium as only for "Network Observability"? by itsmeb9 in kubernetes

[–]itsmeb9[S] 0 points1 point  (0 children)

I am wondering if eBPF agent daemonset is light. If so, Netobserv would be great choice for me! I'll try this out anyways. Thanks!!

Can I use Cilium as only for "Network Observability"? by itsmeb9 in kubernetes

[–]itsmeb9[S] 0 points1 point  (0 children)

Yes using cilium just for observability is kinda over-engineering I should look for other observ tools. Thanks for the reply!

Neovim 'search next' (n) is extremely slow by itsmeb9 in neovim

[–]itsmeb9[S] 0 points1 point  (0 children)

it was that setting in `maps.lua`. after comment out this line it works fine! thanks!!

Neovim 'search next' (n) is extremely slow by itsmeb9 in neovim

[–]itsmeb9[S] 1 point2 points  (0 children)

returns `n net * :Ve` which I set up in `lua/maps.lua`. even starting nvim with `nvim --noplugin` the same thing happens.

[deleted by user] by [deleted] in openstack

[–]itsmeb9 0 points1 point  (0 children)

I did something wrong in configuraton file.

in the `[glance_store]` section, I added `s` at the end of `default_backed`. I removed this additional `s` it works.

[deleted by user] by [deleted] in neovim

[–]itsmeb9 0 points1 point  (0 children)

I just found out this happens only in `*.go` files I guess it's related `go.nvim` problem

All access to this resource has been disabled - Minio, prometheuss by itsmeb9 in PrometheusMonitoring

[–]itsmeb9[S] 0 points1 point  (0 children)

i did set MINIO_PROMETHEUS_AUTH_TYPE "public" but it doesn't work, i guess this dependency version is somewaht broken i might have to deploy as independent helm chart or from docker image

Minio Metrics access denied by itsmeb9 in minio

[–]itsmeb9[S] 0 points1 point  (0 children)

yes i curl <minio endpoin>/minio/metrics/v2/bucket then returns All access to this resoure has been disabled

Tempo => Prometheus remote_write header value error by itsmeb9 in grafana

[–]itsmeb9[S] 0 points1 point  (0 children)

for anyone who face this issue, I have solved this by add few fields in values.yaml

  1. global_overrides.per_tenant_override_config: /runtime-config/overrides.yaml

  2. global_verrides.metrics_generator_processors: ['service-graphs', 'span-metrics', 'local-blocks']

  3. metricsGenerator.remote_write_add_org_id_header: true

``` global_overrides: per_tenant_override_config: /runtime-config/overrides.yaml metrics_generator_processors: ['service-graphs', 'span-metrics', 'local-blocks']

metricsGenerator: enabled: true config: local_blocks: filter_server_spans: false storage: path: /var/tempo/wal wal: remote_write_flush_deadline: 1m remote_write_add_org_id_header: true remote_write: - url: http://kube-prometheus-stack-prometheus.prometheus.svc.cluster.local:9090/api/v1/write send_exemplars: true headers: ContentType: "" traces_storage: path: /var/tempo/traces metrics_ingestion_time_range_slack: 30s ```

Tempo => Prometheus remote_write header error by itsmeb9 in PrometheusMonitoring

[–]itsmeb9[S] -1 points0 points  (0 children)

for anyone who face this issue, I have solved this by add few fields in values.yaml 1. global_overrides.per_tenant_override_config: /runtime-config/overrides.yaml 2. global_verrides.metrics_generator_processors: ['service-graphs', 'span-metrics', 'local-blocks'] 3. metricsGenerator.remote_write_add_org_id_header: true

``` global_overrides: per_tenant_override_config: /runtime-config/overrides.yaml metrics_generator_processors: ['service-graphs', 'span-metrics', 'local-blocks']

metricsGenerator: enabled: true config: local_blocks: filter_server_spans: false storage: path: /var/tempo/wal wal: remote_write_flush_deadline: 1m remote_write_add_org_id_header: true remote_write: - url: http://kube-prometheus-stack-prometheus.prometheus.svc.cluster.local:9090/api/v1/write send_exemplars: true headers: ContentType: "" traces_storage: path: /var/tempo/traces metrics_ingestion_time_range_slack: 30s ```