Re: [prometheus-developers] Multiprocessing of python_client for independent python deamons

2020-08-28 Thread Brian Brazil
On Fri, 28 Aug 2020 at 11:45, Mounya A wrote: > Thanks for the reply Brian. As far as I know, most of the > disadvantages are caused by lot of process churn, ours are 3-5 long lived > processes and we need only simple metrics like Counter and Summary. Still > ,will we be affected by those

Re: [prometheus-developers] Multiprocessing of python_client for independent python deamons

2020-08-28 Thread Mounya A
Thanks for the reply Brian. As far as I know, most of the disadvantages are caused by lot of process churn, ours are 3-5 long lived processes and we need only simple metrics like Counter and Summary. Still ,will we be affected by those disadvantages? Are there any limitations other than

Re: [prometheus-developers] Multiprocessing of python_client for independent python deamons

2020-08-28 Thread Brian Brazil
On Fri, 28 Aug 2020 at 07:39, Mounya A wrote: > Hii everyone, > We have multiple independent deamons of same application in a > machine. I would like to serve aggregated metrics from a single port , > rather than starting server in each deamon and treating them as a separate > time

[prometheus-developers] Multiprocessing of python_client for independent python deamons

2020-08-28 Thread Mounya A
Hii everyone, We have multiple independent deamons of same application in a machine. I would like to serve aggregated metrics from a single port , rather than starting server in each deamon and treating them as a separate time series. I can handle the exposition part with try.. except