eeliu
eeliu
@HJinS I already released to pipy. Just re-install pinpointpy > pip install pinpointPy==1.3.1
@HJinS Does your project use Process ? ``` from multiprocessing import Process def f(name): print('hello', name) if __name__ == '__main__': p = Process(target=f, args=('bob',)) p.start() p.join() ``` Hmm, I added...
@HJinS yes, the pinpointpy is not `fork` safe, we will add more test.
hmm, which service on `8884` , span port ?
I don't know. Did your docker image works fine ? https://github.com/pinpoint-apm/pinpoint-docker/tree/master \ check https://github.com/pinpoint-apm/pinpoint-docker/blob/be2879e4f874faa7eedbd60fcb2d49cc04a10400/.env#L70-L82
I tested with `https://github.com/pinpoint-apm/pinpoint-docker/tree/2.5.4`, it's ok. Try to compare the configuration files of pinpoint.
@car1000 Hello, sorry to late response. pinpoint-c-agent is a collection of agents, including c/cpp, php, py,pinpoint-collector agent. `0.6.0` is the name for all. eg: - If your agent is py,...
hi @car1000 which agent (php,python ) used ?
Sorry for late response, In python, `pip install pinpointPy` . https://github.com/pinpoint-apm/pinpoint-c-agent/blob/dev/DOC/PY/Readme.md As you pointed the version v0.5 and v0.6: no need to care about it, just `pinpointPy` version. (https://pypi.org/project/pinpointPy/) >...
for pinpointpy,does not support `profiler.sampling.percent.sampling-rate` as for `profiler.sampling.counting.sampling-rate` Try `trace_limit`: counting per second. https://github.com/pinpoint-apm/pinpoint-c-agent/blob/c35232017d1f2eb79e65373fda556638c7cf7d09/plugins/PY/pinpointPy/pinpoint.py#L122 BTW, `trace_limit` is process scope variable.