Anatolios Laskaris
Anatolios Laskaris
```yaml - job_name: "docker" docker_sd_configs: - host: "unix:///var/run/docker.sock" refresh_interval: "5s" pipeline_stages: - static_labels: host: "{{ hostname }}" ```
@durcon because your indentation is wrong + it is `static_labels` not `labels` ```yaml pipeline_stages: - static_labels: host: "{{ hostname }}" ``` https://grafana.com/docs/loki/latest/clients/promtail/stages/static_labels/
@mateuszkj In Nomad it makes sense to use [alloc dir](https://www.nomadproject.io/docs/internals/filesystem) for caches. So insted of `-cacheDir=/local/cache_dir` you should use `-cacheDir=/alloc/data/cache` (see https://github.com/seaweedfs/seaweedfs-csi-driver/blob/master/deploy/nomad/seaweedfs-csi.hcl#L32) It will help if you add [ephemeral_disk](https://www.nomadproject.io/docs/job-specification/ephemeral_disk) stanza...
And in cases when the alloc_dir is no longer valid (I'm not sure if alloc_dir is preserved inbetween job definition updates) Nomad garbage collection mechanism will take care of no...
> @nahsi, can you please give more details in how to do that in that specific scenario of @RWF-N. I'm with the same problem here, but a bit different: >...
As a workaround I mount host volume to `/data` with `sentinel.conf` file with only one option: `include /local/sentinel.conf` and run sentinel with `redis-sentinel /data/sentinel.conf`. This is a bit hacky but...
Same issue. [Running in Nomad](https://github.com/fluencelabs/ops/blob/1be8faca23f8141d5b696c5a459c14da8d37b22d/jobs/fluence/countly/job.nomad.hcl).  In logs on startup: ``` Running "uglify:dist" (uglify) task JS_Parse_Error [SyntaxError]: Unexpected token: operator «*» at JS_Parse_Error.get (eval at (/opt/countly/node_modules/grunt-contrib-uglify/node_modules/uglify-js/tools/node.js:1:1), :63:23) at formatError (internal/util/inspect.js:1149:38)...
OK, in my case `uglify:dist` consumed more than 1.5GB memory and got OOM killed. After increasing memory limit the issue is gone. Not sure why it is not working locally...
In my case ``` /github-action-runners/action-runners/builder/runners/config/runner-group/Default ``` was not created. In lambda scale-up logs I found this ```json { "level": "WARN", "message": "SSM Parameter \"/github-action-runners/action-runners/builder/runners/config/runner-group/Default\"\n for Runner group Default does not...
@jeschkies other networking mode is native docker one - it works just fine. I hope I will have time to debug this issue a little bit more soon. So I...