V Roshan Kumar Patro
12/25/2021, 6:10 AMDevi varalakshmi
12/30/2021, 2:52 PMDharmendra Kumar
12/31/2021, 6:01 AMAshu
Siddhant Khare
01/07/2022, 5:02 AMLong Gems
01/09/2022, 8:05 PMedr
01/13/2022, 8:19 AMJoshua Haan
01/13/2022, 6:50 PMJijo M P
01/14/2022, 4:39 PMManpreet Singh
01/23/2022, 5:43 AMvikas kumar
01/28/2022, 7:22 PMDevi varalakshmi
02/02/2022, 12:38 PMMountVolume.MountDevice failed for volume "pvc-a0606a1d-32e9-4a33-8764-a6edf81ff4a5" : rpc error: code = Internal desc = formatting disk failed: exit status 1 cmd: 'mkfs.ext4 -F /dev/disk/by-id/scsi-0DO_Volume_pvc-a0606a1d-32e9-4a33-8764-a6edf81ff4a5' output: "mke2fs 1.45.5 (07-Jan-2020)\nThe file /dev/disk/by-id/scsi-0DO_Volume_pvc-a0606a1d-32e9-4a33-8764-a6edf81ff4a5 does not exist and no size was specified.\n"
any help?Pranay
OMKAR GUJJA
02/10/2022, 5:46 PMOMKAR GUJJA
02/10/2022, 6:44 PMmeTa22
02/15/2022, 1:32 PMmeTa22
02/15/2022, 1:33 PMhttp://<IP of SigNoz backend>:55681/v1/metrics
endpoint track well ur app metrics?meTa22
02/21/2022, 10:55 AMhttp://<IP of SigNoz backend>:55681/v1/metrics
but unfortunately, I couldn't find any solution. I curled the endpoint, but the connection has failedDouglas da Silva Oliveira
02/21/2022, 10:43 PMJun Tian
02/26/2022, 11:39 AMAshu
Distributed Tracing
UX. We have updated our Traces
tab with powerful filters and we have also improved our Trace Details
page significantly. Attaching a screenshot for reference.
We also crossed 50+ contributors in our contributors tribe ๐ฅ Wanted to thank all of you for making SigNoz better ๐
In the upcoming sprints, we will be taking up Login, Auth, and Org management. Feel free to read all our updates and share feedback. ๐
https://signoz.io/blog/community-update-10/Devi varalakshmi
03/09/2022, 6:15 AMRoshan R
03/11/2022, 11:25 AMSlack
to some small script and then send it to a webhook?Nihal
03/12/2022, 10:19 AMAbhishek Aditya Kashyap
03/21/2022, 2:23 PMfrom opentelemetry import trace
from opentelemetry.sdk.trace import TracerProvider
tracer = TracerProvider()
@router_v1.post("/endpoint")
def endpoint(req):
search_time = 0.5
response_time = 0.2
## Some work done which calculated the above time ^
current_span = trace.get_current_span()
if current_span:
current_span.set_attribute("time.search", search_time)
current_span.set_attribute("time.response", response_time)
response = {'status':1}
return response
MAIN.PY
from app.routes.ROUTER import tracer
from opentelemetry.instrumentation.fastapi import FastAPIInstrumentor
from app.routes import ROUTER
app = FastAPI(title = "TITLE")
app.include_router(ROUTER.router_v1)
FastAPIInstrumentor.instrument_app(app, tracer_provider=tracer, excluded_urls="ping")
MSP
03/23/2022, 10:00 AMNithin B S
03/23/2022, 11:43 AMSteven Stenzel
03/28/2022, 4:14 AMManirul Halder
03/28/2022, 5:45 AMKanishk Tiwari
03/29/2022, 7:54 PM