Hey team! I'm working on the <https://github.com/S...
# contributing
l
Hey team! I'm working on the https://github.com/SigNoz/signoz/issues/7738 - adding descriptions for attributes in filter sections. Here's the list of descriptions I need to add to the codebase (these don't have descriptions yet): Static Fields needing descriptions:
Copy code
"trace_id": "Unique identifier for the entire trace",
"span_id": "Unique identifier for this specific span", 
"parent_span_id": "ID of the parent span in the trace hierarchy",
"flags": "Trace flags indicating sampling and debug information",
"kind": "Span kind as number (use kind_string instead)",
"duration_nano": "Duration of the span in nanoseconds",
"status_code": "Span status code as number (use status_code_string instead)",
"status_message": "Human readable status message for the span",
"has_error": "Whether the span contains an error or exception",
"is_remote": "Whether the span represents a remote call",
Common OTel Attributes (not in static maps):
Copy code
"service.name": "Name of your service (e.g., user-api, checkout-service)",
"service.version": "Version of your service (e.g., v1.2.3)", 
"service.namespace": "Environment or namespace (e.g., production, staging)",
"http.status_code": "HTTP response status code (200, 404, 500, etc.)",
"http.target": "HTTP request path and query string",
"http.user_agent": "User-Agent header from the HTTP request",
"db.statement": "Database query or command being executed",
"db.system": "Database type (mysql, postgresql, mongodb, etc.)",
"k8s.pod.name": "Name of the Kubernetes pod",
"k8s.namespace.name": "Kubernetes namespace name", 
"k8s.deployment.name": "Kubernetes deployment name",
"rpc.method": "Name of the RPC method being called",
"rpc.service": "Name of the RPC service",
"messaging.system": "Messaging system (kafka, rabbitmq, etc.)",
"messaging.destination": "Message queue or topic name",
Are these descriptions correct? Any modifications needed?