Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unanswered
Hi, When I Use The Slack Monitoring Service It Creates A Link With


Hi GreasyPenguin14 ,
The reason for this is the Services Agent is not aware of the WebApp address, and tries to guess by using the ApiServer address (which internally, in docker-compose, is http://apiserver:8008 ) by replacing the port to 8080 .
To fix it, you simply need to specify the correct address by which the WebApp can be accessed when starting the server using docker-compose .

The easiest way to do that is to set the environment variable CLEARML_WEB_HOST before starting docker-compose, in your case:
> CLEARML_WEB_HOST= docker-compose -f /opt/clearml/docker-compose.yml up -d

  
  
Posted 3 years ago
96 Views
0 Answers
3 years ago
one year ago