This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Replies: 1 comment
-
I think CPU and Memory would be the best metrics you could leverage for this, another option is to scan the queue depth using the queues API. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
We have logs events in the form:
and we would like to use the values in these logs for autoscaling conductor workers in AWS.
So far we have been able to get the
value=0.0
section of the log message using a filter pattern to match space delimited log events. However, we're unable to separate the actualvalue=
part from the value itself.We've explored trying to change the format of the message using a log4j properties file but we realised that we cannot change the format of the message section of the log as it is being formatted in code. It also looks like the code is part of Dropwizard Metrics and not part of Conductor itself. We would prefer not to have to build our own versions of Dropwizard and Conductor for something so trivial.
Ideally, we would like to output the logs without the key names, e.g.
type
,name
,value
etc. So my question is, is there a way to achieve this through configuration?Thanks in advance,
Ammaar
Beta Was this translation helpful? Give feedback.
All reactions