-
Notifications
You must be signed in to change notification settings - Fork 283
Initial cut at modelling service entities based on SIG discussions. #2963
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from 7 commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
44a759c
Initial cut at modelling service entities based on SIG discussions.
jsuereth 22218a0
Update descriptions from SIG meeting.
jsuereth 80f30c6
merge main.
jsuereth 11ae7af
Address all comments.
jsuereth ac4b961
Add changelog.
jsuereth 7ae8a6f
Fix markdown issue.
jsuereth 4b50851
Fix yamllint.
jsuereth f167f6c
Update docs/resource/service.md
jsuereth e3f1cc7
Apply suggestions from code review
jsuereth 335054e
Update docs/resource/service.md
jsuereth 797c301
Update docs/resource/service.md
jsuereth ea88228
Fix from discussion.
jsuereth 6b7f937
[chore] align areas with codeowners (#3057)
trisch-me 2137956
[events] refine general event semantics documentation (#3030)
pellared 6892138
Convert before_resolution policies into after_resolution (#3102)
lmolkova 5cfd200
[chore] bump all docker links to 1.52 (#3093)
thompson-tomo 7a97de1
[chore] Enable mdlint on general docs (#3074)
thompson-tomo e5141e0
chore(deps): update actions/checkout action to v6 (#3117)
renovate[bot] bc18488
[chore] [fix] Add table header to entity attributes table (#3072)
thompson-tomo f482b97
chore(deps): update actions/setup-go action to v6.1.0 (#3116)
renovate[bot] 59077b2
chore(deps): update actions/create-github-app-token action to v2.2.0 …
renovate[bot] e9867cb
[chore] Rename */database to */db to match area names (#3108)
lmolkova 48d2dfe
[chore] Exclude chore PRs from ownership checks, trigger checks on ed…
lmolkova 56b8da9
[chore] ensure gen_ai docs contain correctly formatted lists (#3077)
thompson-tomo f5ce5ce
chore(deps): update github/codeql-action action to v4.31.5 (#3125)
renovate[bot] 969d372
Add semconv-service-and-deployment-approvers team (#3104)
trask 5105a71
[chore] use npm ci instead of npm install (#3110)
thompson-tomo 7b6416d
[chore] [fix] Add consistent formating to md tables (#3083)
thompson-tomo 1e21605
Bump js-yaml from 3.14.1 to 3.14.2 (#3129)
dependabot[bot] 09f7ea2
[chore] move to gfm alerts also supported in hugo (#3112)
thompson-tomo f321acb
[chore] Tweak jinja templates to improve linting (#3132)
thompson-tomo bcaf158
[chore] [fixes] Add back enum tables #3089 (#3131)
thompson-tomo a888aee
Fix stale workflow config (#3130)
trask 3ba6f31
[chore] Lint tables in models (#3133)
thompson-tomo 4d7ac02
[chore] manual table linting (#3134)
thompson-tomo cf291f7
Add containers to areas (#3105)
lmolkova 81c7c8d
[chore] switch to gfm alerts in registry #3111 (#3139)
thompson-tomo 0381b5f
[chore] Fix white-spacing linting issue (#3144)
thompson-tomo dfa5652
[chore] Remove the additional whitespace from pages with entities (#3…
thompson-tomo 8f03948
Remove container approvers (#3136)
trask feb8c46
[editorial] Update database redirect rules (#3140)
vitorvasc 7a66cb3
Apply stale workflow to draft PRs (#3137)
trask fbd452a
Update actions/setup-python action to v6.1.0 (#3153)
renovate[bot] 783daaf
Update dependency markdownlint-cli to v0.46.0 (#3154)
renovate[bot] ba2247c
Update github/codeql-action action to v4.31.6 (#3159)
renovate[bot] 3405255
[chore] Add in missing space within table cell (#3147)
thompson-tomo ea31523
[chore] Automatic linting of resource docs (#3160)
thompson-tomo e60f9a0
Fix merge conflicts.
jsuereth File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # Use this changelog template to create an entry for release notes. | ||
| # | ||
| # If your change doesn't affect end users you should instead start | ||
| # your pull request title with [chore] or use the "Skip Changelog" label. | ||
|
|
||
| # One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
| change_type: enhancement | ||
|
|
||
| # The name of the area of concern in the attributes-registry, (e.g. http, cloud, db) | ||
| component: service | ||
|
|
||
| # A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
| note: Splits `service` entity into three pieces - namespace, service and instance. | ||
|
|
||
| # Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. | ||
| # The values here must be integers. | ||
| issues: [2880] | ||
|
|
||
| # (Optional) One or more lines of additional information to render under the primary note. | ||
| # These lines will be padded with 2 spaces and then inserted directly into the document. | ||
| # Use pipe (|) for multiline entries. | ||
| subtext: | | ||
| The service entity is now split into three: `service.namespace`, | ||
| `service` and `service.instance`. Existing service attributes are | ||
| distributed between these three and descriptions are updated to | ||
| denote how to think about these concepts going forward. |
This file contains hidden or 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 characters
This file contains hidden or 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 characters
This file contains hidden or 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 characters
This file contains hidden or 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 characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.