Last active
August 7, 2024 20:46
Revisions
-
lmolkova renamed this gist
Aug 7, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lmolkova renamed this gist
Aug 7, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
lmolkova revised this gist
Aug 7, 2024 . 1 changed file with 63 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,63 @@ import requests import time def retry_request(url): max_retries = 3 retry_delay = 60 for r in range(max_retries): try: print(f"Fetching {url}, try {r}") # add your token here response = requests.get(url, headers={"Authorization": "Bearer YOUR_PERSONAL_TOKEN"}) if response.status_code == 200: return response print(f"Request failed: {response.json()}") except requests.exceptions.RequestException as e: print(f"Request failed: {e}") print("Retrying in 1 minute...") time.sleep(retry_delay) return None def reactions_to_dict(reactions): keys = ["+1", "-1", "laugh", "hooray", "confused", "heart", "rocket", "eyes"] return {k:v for k,v in reactions.items() if k in keys} repo = "semantic-conventions" issues_list = [] reactions_count = {} issues = {} reactions = {} for page in range(1, 10): url = f'https://api.github.com/repos/open-telemetry/{repo}/issues?state=open&sort=updated&direction=desc&per_page=100&page={page}' response = retry_request(url) if response is None: break i = response.json() if len(i) == 0: break print(f"Received {len(i)} issues") issues_list.extend(i) for issue in issues_list: if 'pull_request' in issue: continue issue_id = issue['number'] reactions_raw = issue['reactions'] count = reactions_raw['total_count'] if count > 0: reactions_count[issue_id] = count reactions[issue_id] = reactions_to_dict(reactions_raw) issues[issue_id] = issue print("| Title | Link | # of reactions | Reactions |") print("| ------ | ---- | -------------- | --------- |") for issue_id, count in sorted(reactions_count.items(), key=lambda r: r[1], reverse=True): issue = issues[issue_id] print(f"| {issue['title']} | {issue['html_url']} | {count} | {reactions[issue_id] } |") -
lmolkova created this gist
Aug 7, 2024 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,122 @@ | Title | Link | # of reactions | Reactions | | ------ | ---- | -------------- | --------- | | Capture request and response bodies | https://github.com/open-telemetry/semantic-conventions/issues/857 | 29 | {'+1': 28, '-1': 1, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Introduce semantic conventions for modern AI (LLMs, vector databases, etc.) | https://github.com/open-telemetry/semantic-conventions/issues/327 | 11 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 8, 'confused': 0, 'heart': 3, 'rocket': 0, 'eyes': 0} | | Improve GraphQL semantic conventions | https://github.com/open-telemetry/semantic-conventions/issues/182 | 8 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 6, 'eyes': 1} | | Discuss ECS' field reuse concept for OTel semantic attributes | https://github.com/open-telemetry/semantic-conventions/issues/339 | 7 | {'+1': 7, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Define semantic conventions for k8s metrics | https://github.com/open-telemetry/semantic-conventions/issues/1032 | 6 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 6, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Http client and server span default collection behavior for `url.full` and `url.query` attributes | https://github.com/open-telemetry/semantic-conventions/issues/860 | 6 | {'+1': 3, '-1': 3, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Should metrics description be a full sentence? | https://github.com/open-telemetry/semantic-conventions/issues/897 | 6 | {'+1': 6, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | [http] Publish migration plan for HTTP semconv changes. | https://github.com/open-telemetry/semantic-conventions/issues/534 | 6 | {'+1': 6, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Adjust `process.command_args` and `process.command_line` to be opt-in | https://github.com/open-telemetry/semantic-conventions/issues/626 | 5 | {'+1': 5, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Processed/exported SDK metrics | https://github.com/open-telemetry/semantic-conventions/issues/83 | 5 | {'+1': 5, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Proposal: Define mapping from k8s well-known labels to semconv | https://github.com/open-telemetry/semantic-conventions/issues/236 | 5 | {'+1': 5, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Proposal: Decoupling Attribute definition from Attribute usage in models | https://github.com/open-telemetry/semantic-conventions/issues/197 | 5 | {'+1': 5, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | [Proposal] Fork semantic-convention specific build-tools into a `semantic-conventions-tools` repository | https://github.com/open-telemetry/semantic-conventions/issues/767 | 5 | {'+1': 5, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | [logs] Add semantic conventions for durable identifiers | https://github.com/open-telemetry/semantic-conventions/issues/372 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Attribute names: unicode on OTLP, only `[a-z0-9._]` in OTel semcov | https://github.com/open-telemetry/semantic-conventions/issues/1124 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add histogram bucket boundaries to metric semconv yaml files | https://github.com/open-telemetry/semantic-conventions/issues/1225 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Adding aws.region span attribute to the spec | https://github.com/open-telemetry/semantic-conventions/issues/1113 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Make requirement_level required | https://github.com/open-telemetry/semantic-conventions/issues/892 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Create client side approver team | https://github.com/open-telemetry/semantic-conventions/issues/856 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Proposal: include all removed/renamed/deprecated attribute keys in yaml | https://github.com/open-telemetry/semantic-conventions/issues/214 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Document common metric names and when they should be used | https://github.com/open-telemetry/semantic-conventions/issues/211 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Rename http.server.active_requests to http.server.current_requests? | https://github.com/open-telemetry/semantic-conventions/issues/202 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Create semantic conventions for API Gateway | https://github.com/open-telemetry/semantic-conventions/issues/183 | 4 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 2, 'eyes': 0} | | Markdown link check runs on entire repo | https://github.com/open-telemetry/semantic-conventions/issues/332 | 4 | {'+1': 4, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Explain the source of registry files | https://github.com/open-telemetry/semantic-conventions/issues/1204 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Introduction of a Synthetic Attribute for Server Span Telemetry | https://github.com/open-telemetry/semantic-conventions/issues/1127 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Guidance on product/project name inside attribute/metric name | https://github.com/open-telemetry/semantic-conventions/issues/608 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add anchors to individual attributes in a markdown table | https://github.com/open-telemetry/semantic-conventions/issues/1041 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add kernel related semantic conventions | https://github.com/open-telemetry/semantic-conventions/issues/66 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | What would be a good attribute for the name of a tenant? | https://github.com/open-telemetry/semantic-conventions/issues/162 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Update Contributing.MD to describe how to use attribute registry when defining new semconv. | https://github.com/open-telemetry/semantic-conventions/issues/532 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Transfer semconv issues from spec repo to this repo? | https://github.com/open-telemetry/semantic-conventions/issues/33 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add Support for CloudFoundry | https://github.com/open-telemetry/semantic-conventions/issues/622 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Convention for cancelled spans | https://github.com/open-telemetry/semantic-conventions/issues/560 | 3 | {'+1': 3, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Common socket connection conventions | https://github.com/open-telemetry/semantic-conventions/issues/454 | 3 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 2, 'rocket': 0, 'eyes': 0} | | User.id for authenticated user id | https://github.com/open-telemetry/semantic-conventions/issues/1104 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Emitting log template + parameters? | https://github.com/open-telemetry/semantic-conventions/issues/1283 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Should library-specific attributes be added to semantic conventions? | https://github.com/open-telemetry/semantic-conventions/issues/1218 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Move attributes definitions to registry | https://github.com/open-telemetry/semantic-conventions/issues/407 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Semantic convention for name and version of the instrumented library | https://github.com/open-telemetry/semantic-conventions/issues/1229 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Markdown generation: render string examples with quotes | https://github.com/open-telemetry/semantic-conventions/issues/1157 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Code generation: how to avoid naming collisions | https://github.com/open-telemetry/semantic-conventions/issues/1118 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Semantic convention for location attributes | https://github.com/open-telemetry/semantic-conventions/issues/1228 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | New JVM runtime environment metrics | https://github.com/open-telemetry/semantic-conventions/issues/1222 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | CDN conventions | https://github.com/open-telemetry/semantic-conventions/issues/958 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Do we need to distinguish client side and server side llm call? | https://github.com/open-telemetry/semantic-conventions/issues/1079 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Event yaml definition should allow to document SeverityNumber | https://github.com/open-telemetry/semantic-conventions/issues/828 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Messaging: per-message tracing when sending batches | https://github.com/open-telemetry/semantic-conventions/issues/1187 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | [editorial] Rename pages under /docs/general/ to avoid `general` in the page name, etc | https://github.com/open-telemetry/semantic-conventions/issues/194 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Be more specific about span kinds for messaging operations | https://github.com/open-telemetry/semantic-conventions/issues/1112 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add system uptime metric | https://github.com/open-telemetry/semantic-conventions/issues/648 | 2 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 2, 'rocket': 0, 'eyes': 0} | | Potentially unbounded dimensions in Hardware metrics? | https://github.com/open-telemetry/semantic-conventions/issues/63 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Database: write migration guide for (to-be) stable semconv | https://github.com/open-telemetry/semantic-conventions/issues/1022 | 2 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 2, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | How to evolve stable conventions | https://github.com/open-telemetry/semantic-conventions/issues/1017 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Track specification-related changes required for stabilizing messaging semantic conventions | https://github.com/open-telemetry/semantic-conventions/issues/659 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Evaluate requirement level of db.statement | https://github.com/open-telemetry/semantic-conventions/issues/754 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | General `error.type` definition should clarify that fully qualified exception type name should be used | https://github.com/open-telemetry/semantic-conventions/issues/855 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Clarification on metric semantic convention instrument naming | https://github.com/open-telemetry/semantic-conventions/issues/816 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | General Attributes markdown is out of date and lists stable attributes as experimental | https://github.com/open-telemetry/semantic-conventions/issues/762 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Consider adopting more log fields from ECS | https://github.com/open-telemetry/semantic-conventions/issues/134 | 2 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 2, 'rocket': 0, 'eyes': 0} | | Document general attribute normalization conventions | https://github.com/open-telemetry/semantic-conventions/issues/117 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | ECS User and Asset RFC | https://github.com/open-telemetry/semantic-conventions/issues/116 | 2 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 2, 'rocket': 0, 'eyes': 0} | | Move JVM system metrics out of process.runtime.jvm.* | https://github.com/open-telemetry/semantic-conventions/issues/41 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add a PR check to enforce Schema file presence/content if a semantic convention is changed | https://github.com/open-telemetry/semantic-conventions/issues/31 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Consistent type to express date & time | https://github.com/open-telemetry/semantic-conventions/issues/660 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Proposal: DB Attributes - rows count | https://github.com/open-telemetry/semantic-conventions/issues/440 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Use seconds as default duration for RPC metrics | https://github.com/open-telemetry/semantic-conventions/issues/383 | 2 | {'+1': 2, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | [editorial] Anchor IDs do not exist in v1.27 of docs | https://github.com/open-telemetry/semantic-conventions/issues/1313 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 1, 'rocket': 0, 'eyes': 0} | | Move hardware metrics to the registry | https://github.com/open-telemetry/semantic-conventions/issues/1309 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Run otel.io checks and codegen in any language as a prereq to release | https://github.com/open-telemetry/semantic-conventions/issues/1317 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | When someone should use user.name/user.id ? | https://github.com/open-telemetry/semantic-conventions/issues/1172 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | [cloud provider] `host.id` semantics are too broad | https://github.com/open-telemetry/semantic-conventions/issues/739 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Define rules for Kubernetes name and uid resource attributes | https://github.com/open-telemetry/semantic-conventions/issues/430 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 1} | | [Feature request] Standard conventions for icon and color of resources and/or spans | https://github.com/open-telemetry/semantic-conventions/issues/1266 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Semantic Conventions for Messaging Spans | https://github.com/open-telemetry/semantic-conventions/issues/1205 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | How can Collectors refine service.instance.id | https://github.com/open-telemetry/semantic-conventions/issues/1261 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Do we need event/logs approver team? | https://github.com/open-telemetry/semantic-conventions/issues/1177 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 1} | | Database: add `db.query.text` as opt-in on metrics | https://github.com/open-telemetry/semantic-conventions/issues/1159 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Clean up yamls after https://github.com/open-telemetry/build-tools/issues/192 | https://github.com/open-telemetry/semantic-conventions/issues/1232 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Decide on which `db.system` values to mark stable as part of initial db semconv stability | https://github.com/open-telemetry/semantic-conventions/issues/965 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add `k8s.pod.ip` attribute | https://github.com/open-telemetry/semantic-conventions/issues/1160 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | gcp.gce: Add instance group name | https://github.com/open-telemetry/semantic-conventions/issues/905 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Process semconv: define common attributes and revisit requirement levels | https://github.com/open-telemetry/semantic-conventions/issues/864 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add a human-readable message as an attribute representing the event | https://github.com/open-telemetry/semantic-conventions/issues/1076 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Support stability definitions from OTEP 232 | https://github.com/open-telemetry/semantic-conventions/issues/1096 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add `http.connection.protocol_error_code` to connection duration metric | https://github.com/open-telemetry/semantic-conventions/issues/1135 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Support reserving the namespace without specifying any attributes | https://github.com/open-telemetry/semantic-conventions/issues/1197 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Semconv schema: add a field to record a version attribute was added in | https://github.com/open-telemetry/semantic-conventions/issues/1138 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Database: allow `db.query.text` as opt-in on span names | https://github.com/open-telemetry/semantic-conventions/issues/1158 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Tracking issue for events yaml | https://github.com/open-telemetry/semantic-conventions/issues/1133 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Checklist for declaring stability for messaging semantic conventions | https://github.com/open-telemetry/semantic-conventions/issues/646 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Semantic conventions for SIP protocol | https://github.com/open-telemetry/semantic-conventions/issues/1114 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 1} | | "brief"s and "note"s of groups should be (optionally?) included in Markdown output | https://github.com/open-telemetry/semantic-conventions/issues/1086 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add footnote/reference to list of enum values | https://github.com/open-telemetry/semantic-conventions/issues/1085 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Reconsidering what semantic conventions code generation should produce | https://github.com/open-telemetry/semantic-conventions/issues/551 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 1} | | Pick a set of LLM systems to support/prototype | https://github.com/open-telemetry/semantic-conventions/issues/839 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Metrics semconv should include value type of instrument and requirement levels in yaml and md | https://github.com/open-telemetry/semantic-conventions/issues/591 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Create CLR metrics semantic convention | https://github.com/open-telemetry/semantic-conventions/issues/956 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 1, 'rocket': 0, 'eyes': 0} | | Add Geo fields from Elastic Common Schema | https://github.com/open-telemetry/semantic-conventions/issues/1033 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 1, 'rocket': 0, 'eyes': 0} | | Add system metrics reporting total memory capacity or clarify how to recover existing ones | https://github.com/open-telemetry/semantic-conventions/issues/127 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Allowance for using Stored Operation IDs for Semantic conventions for GraphQL Server | https://github.com/open-telemetry/semantic-conventions/issues/1011 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Document HBase attributes | https://github.com/open-telemetry/semantic-conventions/issues/742 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Mail-related instrumentation attribute key convention | https://github.com/open-telemetry/semantic-conventions/issues/927 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Clarify "type" in Resource semantic conventions | https://github.com/open-telemetry/semantic-conventions/issues/929 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | What is the implication of breaking changes to stable semantic conventions | https://github.com/open-telemetry/semantic-conventions/issues/772 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Should `db|messaging|rpc.system` be an instrumentation scope attribute? | https://github.com/open-telemetry/semantic-conventions/issues/803 | 1 | {'+1': 0, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 1} | | Request to create semconv-llm-approvers | https://github.com/open-telemetry/semantic-conventions/issues/699 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add `error.type` to `http.client.connection.duration` metric | https://github.com/open-telemetry/semantic-conventions/issues/809 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Proposal to add otel.collector.receiver.name attribute | https://github.com/open-telemetry/semantic-conventions/issues/759 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | `process.command_args`, `container.command_args` should be template attributes | https://github.com/open-telemetry/semantic-conventions/issues/790 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | FaaS - Incoming span kind | https://github.com/open-telemetry/semantic-conventions/issues/696 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add `process.cpu.count` metric to semantic conventions for OS process metrics. | https://github.com/open-telemetry/semantic-conventions/issues/651 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Move "hardcoded" notes from metric semconv md files to the `notes` field in YAML | https://github.com/open-telemetry/semantic-conventions/issues/71 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Should we have metrics registry at some point? | https://github.com/open-telemetry/semantic-conventions/issues/592 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Add documentation on how to publish patch releases to CONTRIBUTING.md | https://github.com/open-telemetry/semantic-conventions/issues/539 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Define instrument name suffix `*.used` in the naming guidelines | https://github.com/open-telemetry/semantic-conventions/issues/508 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Problematic processing of optional metric dimensions | https://github.com/open-telemetry/semantic-conventions/issues/492 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Document/warn about cardinality issue with attributes where input "comes from the user" | https://github.com/open-telemetry/semantic-conventions/issues/485 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Change `device` prefix to `mobile` for mobile events? | https://github.com/open-telemetry/semantic-conventions/issues/548 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} | | Introduce common configuration option for sanitisation of `db.statement`. | https://github.com/open-telemetry/semantic-conventions/issues/705 | 1 | {'+1': 1, '-1': 0, 'laugh': 0, 'hooray': 0, 'confused': 0, 'heart': 0, 'rocket': 0, 'eyes': 0} |