Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": true,
"size_kb": 69885,
"has_wiki": false,
"homepage": null,
"languages": {
"C": 2137448,
"Go": 2844526,
"Shell": 42084,
"Python": 9657,
"Smarty": 9702,
"Makefile": 34245,
"Dockerfile": 6902
},
"pushed_at": "2025-01-09T11:15:25Z",
"created_at": "2022-06-11T13:38:26Z",
"owner_type": "User",
"updated_at": "2025-01-09T11:15:31Z",
"description": "eBPF-based Security Observability and Runtime Enforcement",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go",
"C"
]
},
"owner": {
"blog": "mtardy.com",
"name": "Mahé",
"type": "User",
"login": "mtardy",
"company": "@isovalent ",
"location": null,
"followers": 70,
"avatar_url": "https://avatars.githubusercontent.com/u/11256051?v=4",
"created_at": "2015-03-01T12:22:56Z",
"is_verified": null,
"public_repos": 42,
"account_age_days": 4164
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": false
},
"activity": {
"releases": [
{
"tag": "v0.8.0",
"kind": "minor",
"published_at": "2022-05-13T16:54:09Z"
}
],
"recent_commits": [
{
"oid": "cd8fbd5da48aca14694061fae25601a27059cba5",
"body": "This reverts commit a3f46d4df4ff07e829e604c68074ea78db4f80d3.",
"is_bot": false,
"headline": "Revert \"trying\"",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-09T11:15:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3f46d4df4ff07e829e604c68074ea78db4f80d3",
"body": "Signed-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "trying",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-09T11:12:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "27f71c6c8fc2897d3a83f5b3fc2ad077bfce933b",
"body": "Signed-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "prepare fork for renovate",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-09T11:12:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4807f7498ab5b1cbf1295b872ef5784cc8c9e98e",
"body": "…f-next-20250107.013307\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update quay.io/lvh-images/kernel-images docker tag to bp…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-09T09:56:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70ad4e78d5b42f688ab53300ef60f1becd7c4547",
"body": "This only generates noise and is not needed except for our base image.\n\nSigned-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "renovate: disable digest update on Dockerfiles",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-09T09:51:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "444b056d2ceb41734fdc44f0756ff2baee751c69",
"body": "Signed-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "ci: remove buildjet runners and use GitHub arm64 runners",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-08T09:20:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0118a0dfb1da51337b88de4fee919e70005ea4c9",
"body": "Switching generic_start_process_filter to use maps directly and drop\nstruct generic_maps.\n\nKeeping tail call map, because it's convenient in following changes.\n\nAnd rename it to generic_filter_arg.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Switch filter_read_arg to use maps directly",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "544514570c436e6571f5457b2950ea4497d1956e",
"body": "Moving generic_actions to generic functions, so we can use\ngeneric maps in it directly in following changes.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Move filter_read_arg to generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f585978d97cc90494161b669229ef3b78c92484",
"body": "Moving generic_process_filter to generic functions and changing it to\nuse maps directly.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Move generic_process_filter to generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b870892717a3c58fbc2e028d2feb4bfae3ae5764",
"body": "Switching generic_start_process_filter to use maps directly and drop\nstruct generic_maps.\n\nKeeping tail call map, because it's convenient in following changes.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Switch generic_start_process_filter to use maps directly",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8506c4edcf879d5bfc2e9f9ad6b0178c58081ab5",
"body": "Adding generic_retkprobe function (from generic_retkprobe_event) and change\nit to use process_call_heap in generic functions directly, so we don't need\nto pass it as argument.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Add generic_retkprobe function",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37365e40a0f3854af18a660aa85811441491d8db",
"body": "Switching generic_actions to use maps directly.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nKeeping tail call map, because it's convenient in following changes.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Switch generic_actions to use maps directly",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edc4b4b8512513d14680cd58976e55de23c7f97b",
"body": "Moving generic_actions to generic functions, so we can use\ngeneric maps in it directly in following changes.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Move generic_actions to generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7ec812866b80ae0c166cd16157138bf914570b3",
"body": "Moving generic_output to generic functions and change it to use\nprocess_call_heap in generic functions directly, so we don't need\nto pass it as argument.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Move generic_output to generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "035b3b3d75a5125ec1430ffda7d6ab6ab1334cdb",
"body": "Using data_heap in generic functions directly, so we don't\nneed to pass it as argument.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Use data_heap in generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f807a577d8d2c709b5e3e653973343346c61a34",
"body": "Using config_map in generic functions directly, so we don't\nneed to pass it as argument.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Use config_map in generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "700a5e5e1644dacea5b136ce2a2bde2213143c1a",
"body": "Using process_call_heap in generic functions directly, so we don't\nneed to pass it as argument.\n\nPassing map pointer through argument might end up storing and loading\nit to/from heap which makes it scalar value and breaks verifier.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Use process_call_heap in generic functions",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50c0e4efa20a11ddf649642ca2cc584f0b79c230",
"body": "There are several maps used in all generic sensors,\nmoving them into single generic_maps.h header.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Move generic maps in generic_maps.h header",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-07T09:16:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b841f044247d9e1cb1bce67b9dcdc07ce7c0fb2e",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update all go dependencies main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-06T15:11:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9cba2716eb31b1644c906cb22e02deb7319a9c1",
"body": "…7ea4c9d\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/library/golang:1.23.4 docker digest to …",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-06T10:16:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16808aa93b77c01a9684f2ee240cab16014d7af9",
"body": "….63.4\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/golangci/golangci-lint docker tag to v1…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-06T10:15:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "354887eaa35b19675ccc1386e608018d428c408d",
"body": "…f-next-20250103.013255\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update quay.io/lvh-images/kernel-images docker tag to bp…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-03T18:28:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35f5c31d502bb3e9d9b4dabc904f3ee0a059a997",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/cilium/cilium to v1.17.0-rc.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-03T18:22:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5e996ecf43877109c8d9d05a3321d7138eca2a0",
"body": "….63.3\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/golangci/golangci-lint docker tag to v1…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-03T18:22:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab20927228aba3f1932f6bde79911f89187a2144",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update github.com/vishvananda/netlink digest to 26ee0e2",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-03T18:00:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0038ea6380c76df60a0881a33f058bf445f4ffa8",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update all go dependencies main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-03T16:02:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3591eaf5d89cf549a871676048a82fd7261ac93",
"body": "…74f3\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/alpine/helm:3.16.4 docker digest to 0f0…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-03T14:16:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "453cc76d0fae02926fa6aab9b601ec8327c37258",
"body": "It makes more sense now that we have multiple topics to create subpages.\n\nSigned-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "docs: split troubleshooting page into subpages",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-02T10:27:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1900bdff16d9bd1ac10ee07292efee68773a1ff6",
"body": "Also create an alias so that the previous link still works.\n\nSigned-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "docs: move the BPF progs stats page under troubleshooting",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-02T10:27:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3b23f30df3b7b5279caa671efc30687a5e04716",
"body": "Using new pin.WalkDir interface to get all the tetragon\nprograms from bpffs directory.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetra: Use new pin.WalkDir in debug progs",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2025-01-02T10:13:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c4dd5a3e18e9cba6b5374448659434090ae664b",
"body": "PR cilium/ebpf#1626 added the new pin package that simplifies a lot how\none can parse a bpf fs. I just love it.\n\nSigned-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "pkg/bugtool: fix walking bpf fs using new c/ebpf pin pkg",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2025-01-02T10:13:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1a8aaefc546f110a4162d256bfaa227bca0f5ff",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/cilium/ebpf to v0.17.1",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2025-01-02T10:13:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4054168b5c0a0df9eb5311244f18cbef1cc766db",
"body": "Signed-off-by: arthur-zhang <happyzhangya@gmail.com>",
"is_bot": false,
"headline": "docs: remove redundant CLI command in tracing policy example",
"author_name": "arthur-zhang",
"author_login": "arthur-zhang",
"committed_at": "2025-01-02T10:10:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a3d62661ca43db499491c1d3affce4816d5cae5",
"body": "…f-next-20241227.013317\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update quay.io/lvh-images/kernel-images docker tag to bp…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-27T10:10:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1247f0b42113cdd8ca316a24693aa8bc7ff5dd4",
"body": "…f-next-20241226.013307\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update quay.io/lvh-images/kernel-images docker tag to bp…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-26T10:13:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3df31c42f5ea04ee0a1dbb2b17727af15befab5",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/alpine/helm docker tag to v3.16.4",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-23T11:48:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ccf6c16e2c694e374f966ee4aa50876bb6b5ac6",
"body": "Signed-off-by: arthur-zhang <happyzhangya@gmail.com>",
"is_bot": false,
"headline": "[fix] fix probe_read_str return type",
"author_name": "arthur-zhang",
"author_login": "arthur-zhang",
"committed_at": "2024-12-20T15:46:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fca7212a49324028fc51403aca3b2d2437253eda",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module google.golang.org/grpc to v1.69.2",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-20T11:09:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5b20ea399ac9afe1302cbb32215e3552b7abc62",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module google.golang.org/protobuf to v1.36.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-20T09:38:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de2b1267357870d80a79b12cab1c85bcbf0ee3aa",
"body": "With the new auto detect values.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetra: Update debug progs documentation",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2024-12-20T08:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d5f84233ad40e132cc9c2a8e27ced1d7b8a1d37",
"body": "Detect available terminal lines and print only output\nthat fits on terminal.\n\nThis is enabled only when in periodical output with\ncleared screen.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetra: Display output that fits to terminal screen",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2024-12-20T08:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a917a8434b9e6da731fba4c4e2eb1ddb5fd29232",
"body": "Adding support to detect lib directory so we don't need\nto specify --bpf-lib when running on top of k8s.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetra: Add support to detect bpf lib path",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2024-12-20T08:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3875d9e20d9f4d1c2b4d21efcced9d4c2ddf28bd",
"body": "Adding support to detect bpffs mount so we don't need\nto specify --bpf-dir when running on top of k8s.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetra: Add support to detect bpffs mount",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2024-12-20T08:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "95c24d2d32888e2ca5fab2664379da3b0efe739e",
"body": "Recent ebpf changes make ebpf.LoadPinnedProgram fail on opening\nlink path. We want to open only programs, so failing on opening\nlinks/maps is fine ad we just want to continue scanning.\n\nEnforcing leading '/' and adding '/link_override' suffix.\n\nFixes: https://github.com/cilium/tetragon/issues/3234\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetra: Fix tetra debug progs fail",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2024-12-20T08:19:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3d46777f1a2893b98838a29ed20f28c1dd385b7",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update all rthook go dependencies main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-19T10:38:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "468a721287d684c804e9c74703496fcc0d10f9a6",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update module golang.org/x/net to v0.33.0 [security]",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-19T10:37:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92454cecd229f32531e9d179011cb26b3904043d",
"body": "This uses the docs \"warning\" and \"note\" instead of custom cites and\nemojis.\n\nSigned-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "docs: local dev with Apple Silicon small fixes",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2024-12-18T13:30:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2a2218708f0da5b944d963f08227d7bffaa1af2",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update all lvh-images main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-18T10:11:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42f725c8406ad85c21e842312637a4cc6f44a381",
"body": "In main branch vmtests seems broken with the following error:\nUsing: kernel:tests/vmtests/test-data/kernels/6.6/boot/vmlinuz-6.6.65\ntime=\"2024-12-16T16:25:58Z\" level=info msg=\"starting to build images\" queue=tetragon.qcow2\ntime=\"2024-12-16T16:25:58Z\" level=info msg=\"starting command\" args=\"[qemu-img\n[…]\nstall args in virt-customize)\nwe can disable that for now to unblock things.\n\nWe can revisit that in the future if needed.\n\nSigned-off-by: Anastasios Papagiannis <anastasios.papagiannis@isovalent.com>",
"is_bot": false,
"headline": "[CI] Fix virt-customize issue in vmtests",
"author_name": "Anastasios Papagiannis",
"author_login": "tpapagian",
"committed_at": "2024-12-17T14:12:07Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e4f084f713c480387a0bd758c6bc1cf3e8b50c65",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update all rthook go dependencies main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-17T09:35:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5047c19b655af871f8de363debc170f0ccdc10a7",
"body": "Signed-off-by: Michi Mutsuzaki <michi@isovalent.com>",
"is_bot": false,
"headline": "docs: Add dev setup instructions for Apple silicon Macs",
"author_name": "Michi Mutsuzaki",
"author_login": "michi-covalent",
"committed_at": "2024-12-17T02:15:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85686f29849b5ec17cad8fa5bab3348ae0646187",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module google.golang.org/grpc to v1.69.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-16T10:55:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d907e9b4b23879baaedc0ad56f8a999e5b4e16e8",
"body": "The validate CRD action checks two things: whether yaml files were\nchanged without the version being updated, and whether the version was\nupdated without changing the yaml files. There are legitimate reasons\nfor doing the second (e.g., when we do a releas and bump the minor\nnumber) so remove the check.\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "gh: validate crd: be less strict",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-13T14:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a7173ec4c5cb7d479fa20b56b2b382fb3957d682",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "gh: release template updates",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-13T14:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63cb8b5fc21a199f124c4316f06e45f8921b152f",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "start v1.4 development",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-13T14:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f362915d86cd443297a11d87269a86273f75fc0a",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "renovate: add v1.3 and remove v1.0",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-13T14:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f28090e819e932ec3b8b5335ae1d73927aae5a2",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update kubernetes packages",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-13T10:14:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc3bb1fba4f56b1a12ee1a82728f2a6b28b92743",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update all lvh-images main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-13T10:11:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a6643e71e2357324ab8ab73ecb7286d73e96ef8",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "Prepare for v1.3.0 release",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-13T09:11:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c79ad45738fe8edf0bfb2561fd97d3764137cb5b",
"body": "This is done to avoid duplicate metrics, that would cause the entire metrics\ncollection job to fail.\n\nSigned-off-by: Anna Kapuscinska <anna@isovalent.com>",
"is_bot": false,
"headline": "Aggregate overhead metrics in userspace before reporting",
"author_name": "Anna Kapuscinska",
"author_login": null,
"committed_at": "2024-12-12T21:23:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6052464c4dc5712d1fff33913a6013faf60eca73",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/cilium/cilium to v1.17.0-pre.3",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-12T16:47:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f966024a50cfa29ac9b4301ad3c8047bbba3fd3d",
"body": "Use `component=kube-apiserver` match in doc command for KinD clusters\r\n\r\n- Named KinD clusters will have kube-apiserver pods with the cluster name included--the format is `kube-apiserver-<CLUSTERNAME>-control-plane`. The kube-system control-plane uses the label `component=kube-apiserver` on the apiserver pods.\r\n\r\nFixes #3182\n\nSigned-off-by: Tim Swanson <tiswanso@cisco.com>",
"is_bot": false,
"headline": "docs: use label match in SERVICECIDR command for KinD",
"author_name": "Tim Swanson",
"author_login": "tiswanso",
"committed_at": "2024-12-12T16:43:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ceaaea8ae5d6798f31915fb172cb98409e03175",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "chore: fix lint warning",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-12T15:48:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2cd354e502e42172105628b7726e41c4215c00d",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update all go dependencies main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-12T15:48:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98522214b99161a7715677d38c43b884d3fe7e40",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/containerd/containerd to v2",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-12T10:09:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8cf5b2938716aaf296123b1d607d2d96fa397515",
"body": "…b6fe\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/alpine/helm:3.16.3 docker digest to 642…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-12T10:05:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a2d0a01f9be24470d28be8d948422f2c0b8dda62",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update go",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-12T10:03:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffc4f82a2c9467900b083b7ae1bee939bafba40d",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "errmetrics: refactor",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-12T08:39:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7dbd046211fc97ed102c531cb0d63f2fedf5d910",
"body": "Signed-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "bpf: refactor fileids",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-12T08:39:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fc77143a5db1ec209ff28a49fd5de5aee2e6bb26",
"body": "Add docs for missing event filter types:\n- cel\n- container_id\n- in_init_tree\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "docs: add missing event filter docs",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T21:36:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31d89f7db0e18409a2ce68c7c39e3c5c3f37a2d1",
"body": "Add CIDR and IP CEL extensions to the docs by sneaking them in through gRPC API\ndocumentation. A subsequent commit will add similar docs to the event filtering documentation.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "api: ensure CIDR and IP CEL extensions are documented",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T21:36:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "04225f1e8fbd785aed1a2d2b9bb363f2d2ef7c29",
"body": "This simple PR adds CIDR and IP helpers from the k8s CEL libraries to our CEL filters.\nThis should enable users to write export filters in CEL that match IPs in kprobe events\nusing CIDR ranges etc.\n\nFor example, the following CEL expression written as a CEL filter would match kprobe\nevents where the\n[…]\n is available here:\n\n- https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#CIDR\n- https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#IP\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "pkg/filters: add k8s CIDR and IP helpers to CEL filters",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T21:36:58Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "93db38da24405a77f1141ca8746ee63191f0bacc",
"body": "Setting up ability to match args as well as binary names. This is useful\nfor matching 'java beaches.jar' or 'python palmTree.py' where the binary\nitself is an interpretor and the actual thing being called is what matters.\n\nSigned-off-by: John Fastabend <john.fastabend@gmail.com>",
"is_bot": false,
"headline": "tetragon: setup to let match binary names use args as well",
"author_name": "John Fastabend",
"author_login": "jrfastab",
"committed_at": "2024-12-11T18:30:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ec1ba75d3e58cf640bb47661005544871c323bb",
"body": "To test this, I changed MapEntries to 4 in pkg/cgtracker and built and\nstarted tetragon.\n\nThen:\n # mkdir /sys/fs/cgroup/pizza\n # ./tetra cgtracker add /sys/fs/cgroup/pizza /sys/fs/cgroup/pizza\n # sudo mkdir /sys/fs/cgroup/pizza/{a,b,c,d,e,f,g,h,i,j,k}\n # sudo ./tetra debug dump errmetrics\nLocation Error Count\nbpf/cgroup/bpf_cgtracker.c:64 E2BIG (7) 8\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "tetra: add command to dump bpf errmetrics",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-11T18:16:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "038e3ec9d749d9be65b5f181a4a48e06b357cca0",
"body": "Add a simple utility to add a json file with the filename to fileid\nmapping so that userspace can translate ids to names. This is meant to\nbe used by tetra, so add it as a dependency in tetra's build.\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "Makefile: generate fileids.json from C file",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-11T18:16:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "494cbe5bfcb754cc57dd12c6ae5ea17fb2ac019d",
"body": "This commit introduces a map for error metrics.\n\nIt is inspired by a similar facility that exists in cilium. See, for\nexample, https://github.com/cilium/cilium/pull/30972.\n\nThe general idea is to have a map that keeps information about errors\non certain code locations. This can be unexpected errors \n[…]\nto the exec program so that it can be loaded\nas part of the exec sensor.\n\nSubsequent patches will add user-space code for dealing with this.\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "bpf: introduce bpf_errmetrics",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-11T18:16:46Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "5471aa7c9cd7707fe828dc60b72917574f8f32e0",
"body": "For example, `make -C bpf objs/bpf_cgtracker.i` produces the output\nof the preprocessed file (before compilation). This is useful to debug\ncpp macors (introduced in subsequent commits).\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "bpf: add support for preprocessor output targets",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-11T18:16:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ede569e55dd81bf28275fce5356e2250ecc7f7a",
"body": "Implement a new export filter for the process.in_init_tree field.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "filters: implement in_init_tree filter",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab1990bc3a32d9e79bab01211fd82019b18b83e5",
"body": "Write a unit test for in_init_tree. The test makes sure that processes descending from the\nentrypoint are in_init_tree and that a docker exec'd process is not in_init_tree.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "tests: write unit tests for in_init_tree",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22f03d8810d1682f3a365d3ebb816049cc4cb087",
"body": "Implement a container_id filter, primarily to support its use in docker-based unit\ntesting.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "filters: implement container_id filter",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c596a24d18ab0d72793be82dc60b4e61a3b02cb",
"body": "Set Process.Pod.Container.InInitTree when a process has been marked as being in its\ncontainer's init process tree on the BPF side.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "pkg/process: set in_init_tree for container init tree processes",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6190df60575c5dc722a4284c75739fb821106a68",
"body": "There were two flags missing from the flags array in pkg/reader. Add them here.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "pkg/reader: add missing exec flags",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e9a00d98d499c3be2edb8a1d74ce0991cf43d4d0",
"body": "Set the EVENT_IN_INIT_TREE on a new child process on clone if it meets the criteria. We'll\nlater us this to set the corresponding flag in the process's container field in userspace.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "bpf: set in_init_tree flag on clone",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8458a707a9ff372ef60f9863973bab25c5479808",
"body": "Define a new field in the Container message to mark whether a containerized process is in\nthe container's \"init\" process tree. In other words, this field is true if and only if the\nprocess exists in the container's PID namespace and has a direct lineage traceable to\nPID=1 in that PID namespace. This is useful for example to filter for process events that\ncome from a kubectl exec or an nsenter.\n\nSigned-off-by: William Findlay <william.findlay@isovalent.com>",
"is_bot": false,
"headline": "api: define in_init_tree field in container message",
"author_name": "William Findlay",
"author_login": "will-isovalent",
"committed_at": "2024-12-11T17:51:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98c71efdacf4fcaffeb05b282ab18344d74d868d",
"body": "Keep just the dependency, the command is carried out by the default\nrule.\n\nSigned-off-by: Jiri Olsa <jolsa@kernel.org>",
"is_bot": false,
"headline": "tetragon: Remove not needed rule commands",
"author_name": "Jiri Olsa",
"author_login": "olsajiri",
"committed_at": "2024-12-10T15:17:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3e2002480095a07bfd2575e540ba9ab75e8baf3",
"body": "…f-next-20241210.013404\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update quay.io/lvh-images/kernel-images docker tag to bp…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-10T10:15:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1205b06bd5b2fb2868013e24bbfcde91c12f062",
"body": "If we executed a binary that directly executed in another binary, the\n->mb_bitset field was zeroed out and the information was lost, which\nmeant that the matching would not work as expected.\n\nFix this by i) not zeroing out the ->mb_bitset field and, also,\nor it with the parent.\n\nAdd a test.\n\nFixes: e73718ccb739 (\"exec: track matchbinary children\")\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "exec: fix tracking of matchBinary children",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-10T07:08:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4a49d8707c16e6447fe4f2f54a254ca32adb960f",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/mikefarah/yq docker tag to v4.44.6",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-09T15:31:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1694b1359877996f56f9321f470ce9742e3d72e8",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/alecthomas/kong to v1.6.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-09T15:31:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc07347078fdbda070cc8f7238ec4e879a86802b",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/alecthomas/kong to v1.6.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-09T15:30:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca9aaa04ac0c0183a7bf94278dedb0971485cac0",
"body": "This is a very fragile patch for the consequence of\ncilium/ebpf@78074c59.\n\nSigned-off-by: Mahe Tardy <mahe.tardy@gmail.com>",
"is_bot": false,
"headline": "pkg/bugtool: skip BPF links in pinned prog walk",
"author_name": "Mahe Tardy",
"author_login": "mtardy",
"committed_at": "2024-12-06T16:13:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "623ae2953b71648ea743bcfe81211a72e5d61727",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update all go dependencies main",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-06T16:13:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6cb5b2348832829605d986f72d1c6e28b9fbb101",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module golang.org/x/sync to v0.10.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-06T12:00:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d96dbb2118151d05987f834026bad4bd4aff0dd",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update docker.io/library/alpine docker tag to v3.21.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-06T11:22:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b3c50fb068029b4838242f82cbda57d7d5b8e56",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module google.golang.org/grpc to v1.68.1",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-06T11:22:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "525a9a89ecbe3097eabe17bc379ea367db020abd",
"body": "Example:\n\n$ minikube start --driver=kvm2 --container-runtime=crio\n$ ./scripts/minikube-enable-nested-cgroups.sh\n\nAnd now:\n$ kubectl run --annotations='io.kubernetes.cri-o.cgroup2-mount-hierarchy-rw=true' ubuntu --image=ubuntu --rm -it -- /bin/bash\nroot@ubuntu:/# cat /proc/self/cgroup ## <-- inside p\n[…]\nuntu:/# mkdir /sys/fs/cgroup/pizza\nroot@ubuntu:/# echo $$ > /sys/fs/cgroup/pizza/cgroup.procs\nroot@ubuntu:/# cat /proc/self/cgroup\n0::/pizza\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "scripts: enable nested cgroups in minikube",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-06T10:24:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a42bcd5e12308a1a6c551977b3fdd5596db40133",
"body": "Add a command to patch crio.conf to add allowed annotations.\n\nFor example:\n> $ ssh cat /etc/crio/crio.conf > crio.conf\n> $ ./tetragon-oci-hook-setup patch-crio-conf enable-annotations --config-file=crio.conf --output-file crio-patched.conf --annotations='io.kubernetes.cri-o.cgroup2-mount-hierarchy-r\n[…]\n/bin/runc\"\n> runtime_type = \"oci\"\n> runtime_root = \"/run/runc\"\n> +allowed_annotations = [\"io.kubernetes.cri-o.cgroup2-mount-hierarchy-rw\"]\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "tetragon-oci-hook-setup: crio.conf annotations",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-06T10:24:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "7ae44127675343f8a16d266512b0c675026637f2",
"body": "Move applyChanges used to patch the containerd configuration file to its\nown file. Useful for next commit.\n\nSigned-off-by: Kornilios Kourtis <kornilios@isovalent.com>",
"is_bot": false,
"headline": "tetragon-rthooks: move code to apply changes",
"author_name": "Kornilios Kourtis",
"author_login": "kkourt",
"committed_at": "2024-12-06T10:24:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d8a69c179d97e48d0632b56b38ff9375ae25765e",
"body": "…f-next-20241206.013345\n\nSigned-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "chore(deps): update quay.io/lvh-images/kernel-images docker tag to bp…",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-06T10:16:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5096aa77bb6e1b7f4fc8024513ab2e26dc4bc486",
"body": "Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>",
"is_bot": true,
"headline": "fix(deps): update module github.com/stretchr/testify to v1.10.0",
"author_name": "cilium-renovate[bot]",
"author_login": "cilium-renovate[bot]",
"committed_at": "2024-12-06T09:18:44Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 0,
"latest_release_at": "2022-05-13T16:54:09Z",
"latest_release_tag": "v0.8.0",
"releases_from_tags": true,
"days_since_last_push": 562,
"active_weeks_last_year": 0,
"days_since_latest_release": 1534,
"mean_days_between_releases": null
},
"community": {
"has_readme": false,
"has_license": false,
"has_description": false,
"has_contributing": false,
"health_percentage": null,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/cilium/tetragon",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": false,
"registry_url": "https://pkg.go.dev/github.com/cilium/tetragon",
"is_deprecated": false,
"latest_version": "v1.7.0",
"repository_url": "https://github.com/cilium/tetragon",
"versions_count": 45,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-04-29T13:22:56Z",
"latest_version_yanked": null,
"days_since_latest_publish": 87
},
{
"name": "github.com/cilium/tetragon/api",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": false,
"registry_url": "https://pkg.go.dev/github.com/cilium/tetragon/api",
"is_deprecated": false,
"latest_version": "v1.7.0",
"repository_url": "https://github.com/cilium/tetragon",
"versions_count": 13,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-04-29T13:22:56Z",
"latest_version_yanked": null,
"days_since_latest_publish": 87
}
]
},
"popularity": {
"forks": 0,
"stars": 0,
"watchers": 0,
"fork_history": {
"days": [],
"complete": true,
"collected": 0,
"total_forks": 0
},
"star_history": {
"days": [],
"complete": true,
"collected": 0,
"total_stars": 0,
"collected_at": null
},
"open_issues_and_prs": 1
},
"ai_readiness": {
"has_nix": true,
"example_dirs": [
"demos",
"examples"
],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile",
"api/Makefile",
"api/vendor/google.golang.org/grpc/Makefile",
"bpf/Makefile",
"bpf/tests/Makefile",
"contrib/tester-progs/Makefile",
"contrib/tetragon-rthooks/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/proto/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/pelletier/go-toml/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/tetratelabs/wazero/Makefile",
"contrib/tetragon-rthooks/vendor/google.golang.org/grpc/Makefile",
"docs/Makefile",
"install/kubernetes/Makefile",
"pkg/k8s/Makefile",
"pkg/k8s/vendor/github.com/emicklei/go-restful/v3/Makefile",
"pkg/k8s/vendor/github.com/gobuffalo/flect/Makefile",
"pkg/k8s/vendor/github.com/gogo/protobuf/proto/Makefile",
"pkg/k8s/vendor/github.com/munnerz/goautoneg/Makefile",
"pkg/k8s/vendor/github.com/pkg/errors/Makefile",
"pkg/k8s/vendor/github.com/spf13/cobra/Makefile",
"pkg/k8s/vendor/k8s.io/gengo/v2/Makefile",
"pkg/k8s/vendor/sigs.k8s.io/json/Makefile",
"tests/vmtests/Makefile",
"vendor/github.com/cilium/ebpf/Makefile",
"vendor/github.com/containerd/cgroups/Makefile",
"vendor/github.com/distribution/reference/Makefile",
"vendor/github.com/emicklei/go-restful/v3/Makefile",
"vendor/github.com/felixge/httpsnoop/Makefile",
"vendor/github.com/gobuffalo/flect/Makefile",
"vendor/github.com/gogo/protobuf/gogoproto/Makefile",
"vendor/github.com/gogo/protobuf/proto/Makefile",
"vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile",
"vendor/github.com/gorilla/websocket/Makefile",
"vendor/github.com/hashicorp/hcl/Makefile",
"vendor/github.com/munnerz/goautoneg/Makefile",
"vendor/github.com/pkg/errors/Makefile",
"vendor/github.com/prometheus/procfs/Makefile",
"vendor/github.com/sagikazarmark/locafero/justfile",
"vendor/github.com/spf13/cast/Makefile",
"vendor/github.com/spf13/cobra/Makefile",
"vendor/github.com/spf13/viper/Makefile",
"vendor/github.com/vishvananda/netlink/Makefile",
"vendor/go.opentelemetry.io/otel/Makefile",
"vendor/go.uber.org/atomic/Makefile",
"vendor/go.uber.org/multierr/Makefile",
"vendor/google.golang.org/grpc/Makefile",
"vendor/gopkg.in/ini.v1/Makefile",
"vendor/k8s.io/gengo/v2/Makefile",
"vendor/sigs.k8s.io/controller-runtime/Makefile",
"vendor/sigs.k8s.io/json/Makefile"
],
"api_schema_files": [
"api/v1/tetragon/bpf.proto",
"api/v1/tetragon/capabilities.proto",
"api/v1/tetragon/events.proto",
"api/v1/tetragon/sensors.proto",
"api/v1/tetragon/stack.proto",
"api/v1/tetragon/tetragon.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto",
"contrib/tetragon-rthooks/vendor/github.com/containerd/nri/pkg/api/api.proto",
"contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/request.proto",
"contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/test.proto",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/gogo.proto",
"contrib/tetragon-rthooks/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto",
"pkg/k8s/vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto",
"pkg/k8s/vendor/github.com/google/gnostic-models/extensions/extension.proto",
"pkg/k8s/vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto",
"pkg/k8s/vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto",
"pkg/k8s/vendor/k8s.io/api/admissionregistration/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apidiscovery/v2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apps/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apps/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apps/v1beta2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authentication/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authentication/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authentication/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authorization/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authorization/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/batch/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/batch/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/certificates/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/certificates/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/certificates/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/coordination/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/coordination/v1alpha2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/coordination/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/core/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/discovery/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/discovery/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/events/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/events/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/extensions/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto",
"pkg/k8s/vendor/k8s.io/api/networking/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/networking/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/networking/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/node/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/node/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/node/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/policy/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/policy/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/rbac/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/rbac/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/rbac/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/resource/v1alpha3/generated.proto",
"pkg/k8s/vendor/k8s.io/api/resource/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/scheduling/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/scheduling/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storage/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storage/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storage/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto",
"vendor/github.com/cilium/cilium/api/v1/flow/flow.proto",
"vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto",
"vendor/github.com/containerd/cgroups/stats/v1/metrics.proto",
"vendor/github.com/containerd/cgroups/v2/stats/metrics.proto",
"vendor/github.com/docker/docker/api/swagger.yaml",
"vendor/github.com/docker/docker/api/types/swarm/runtime/plugin.proto",
"vendor/github.com/gogo/protobuf/gogoproto/gogo.proto",
"vendor/github.com/google/gnostic-models/extensions/extension.proto",
"vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto",
"vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto",
"vendor/k8s.io/api/admission/v1/generated.proto",
"vendor/k8s.io/api/admission/v1beta1/generated.proto",
"vendor/k8s.io/api/admissionregistration/v1/generated.proto",
"vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto",
"vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto",
"vendor/k8s.io/api/apidiscovery/v2/generated.proto",
"vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto",
"vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto",
"vendor/k8s.io/api/apps/v1/generated.proto",
"vendor/k8s.io/api/apps/v1beta1/generated.proto",
"vendor/k8s.io/api/apps/v1beta2/generated.proto",
"vendor/k8s.io/api/authentication/v1/generated.proto",
"vendor/k8s.io/api/authentication/v1alpha1/generated.proto",
"vendor/k8s.io/api/authentication/v1beta1/generated.proto",
"vendor/k8s.io/api/authorization/v1/generated.proto",
"vendor/k8s.io/api/authorization/v1beta1/generated.proto",
"vendor/k8s.io/api/autoscaling/v1/generated.proto",
"vendor/k8s.io/api/autoscaling/v2/generated.proto",
"vendor/k8s.io/api/autoscaling/v2beta1/generated.proto",
"vendor/k8s.io/api/autoscaling/v2beta2/generated.proto",
"vendor/k8s.io/api/batch/v1/generated.proto",
"vendor/k8s.io/api/batch/v1beta1/generated.proto",
"vendor/k8s.io/api/certificates/v1/generated.proto",
"vendor/k8s.io/api/certificates/v1alpha1/generated.proto",
"vendor/k8s.io/api/certificates/v1beta1/generated.proto",
"vendor/k8s.io/api/coordination/v1/generated.proto",
"vendor/k8s.io/api/coordination/v1alpha2/generated.proto",
"vendor/k8s.io/api/coordination/v1beta1/generated.proto",
"vendor/k8s.io/api/core/v1/generated.proto",
"vendor/k8s.io/api/discovery/v1/generated.proto",
"vendor/k8s.io/api/discovery/v1beta1/generated.proto",
"vendor/k8s.io/api/events/v1/generated.proto",
"vendor/k8s.io/api/events/v1beta1/generated.proto",
"vendor/k8s.io/api/extensions/v1beta1/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto",
"vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto",
"vendor/k8s.io/api/networking/v1/generated.proto",
"vendor/k8s.io/api/networking/v1alpha1/generated.proto",
"vendor/k8s.io/api/networking/v1beta1/generated.proto",
"vendor/k8s.io/api/node/v1/generated.proto",
"vendor/k8s.io/api/node/v1alpha1/generated.proto",
"vendor/k8s.io/api/node/v1beta1/generated.proto",
"vendor/k8s.io/api/policy/v1/generated.proto",
"vendor/k8s.io/api/policy/v1beta1/generated.proto",
"vendor/k8s.io/api/rbac/v1/generated.proto",
"vendor/k8s.io/api/rbac/v1alpha1/generated.proto",
"vendor/k8s.io/api/rbac/v1beta1/generated.proto",
"vendor/k8s.io/api/resource/v1alpha3/generated.proto",
"vendor/k8s.io/api/resource/v1beta1/generated.proto",
"vendor/k8s.io/api/scheduling/v1/generated.proto",
"vendor/k8s.io/api/scheduling/v1alpha1/generated.proto",
"vendor/k8s.io/api/scheduling/v1beta1/generated.proto",
"vendor/k8s.io/api/storage/v1/generated.proto",
"vendor/k8s.io/api/storage/v1alpha1/generated.proto",
"vendor/k8s.io/api/storage/v1beta1/generated.proto",
"vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto",
"vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto",
"vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto",
"vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto",
"vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto",
"vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto",
"vendor/k8s.io/apimachinery/pkg/runtime/generated.proto",
"vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto",
"vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto",
"vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto"
],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"api/go.mod",
"contrib/tetragon-rthooks/go.mod",
"docs/go.mod",
"go.mod",
"pkg/k8s/go.mod"
],
"largest_source_bytes": 1773339,
"source_files_sampled": 684,
"oversized_source_files": 7,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"api/go.mod",
"docs/go.mod",
"docs/package.json",
"go.mod"
],
"advisories": {
"error": null,
"scope": null,
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go",
"npm"
],
"dependencies": [
{
"name": "github.com/cilium/tetragon",
"manifest": "api/go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-00010101000000-000000000000"
},
{
"name": "github.com/sirupsen/logrus",
"manifest": "api/go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.3"
},
{
"name": "github.com/stretchr/testify",
"manifest": "api/go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.0"
},
{
"name": "google.golang.org/grpc",
"manifest": "api/go.mod",
"ecosystem": "go",
"version_constraint": "v1.69.2"
},
{
"name": "google.golang.org/protobuf",
"manifest": "api/go.mod",
"ecosystem": "go",
"version_constraint": "v1.36.1"
},
{
"name": "sigs.k8s.io/yaml",
"manifest": "api/go.mod",
"ecosystem": "go",
"version_constraint": "v1.4.0"
},
{
"name": "github.com/alecthomas/kong",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/bombsimon/logrusr/v4",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v4.1.0"
},
{
"name": "github.com/cilium/cilium",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.17.0-rc.0"
},
{
"name": "github.com/cilium/ebpf",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.17.1"
},
{
"name": "github.com/cilium/little-vm-helper",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.19"
},
{
"name": "github.com/cilium/lumberjack/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.4.1"
},
{
"name": "github.com/cilium/tetragon/api",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-00010101000000-000000000000"
},
{
"name": "github.com/cilium/tetragon/pkg/k8s",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-00010101000000-000000000000"
},
{
"name": "github.com/containerd/cgroups",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.1.0"
},
{
"name": "github.com/deckarep/golang-set/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.7.0"
},
{
"name": "github.com/fatih/color",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.18.0"
},
{
"name": "github.com/google/cel-go",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.22.1"
},
{
"name": "github.com/google/go-cmp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.6.0"
},
{
"name": "github.com/google/gops",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.3.28"
},
{
"name": "github.com/google/uuid",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.0.1"
},
{
"name": "github.com/hashicorp/golang-lru/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.0.7"
},
{
"name": "github.com/iancoleman/strcase",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.3.0"
},
{
"name": "github.com/isovalent/metricstool",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.1.2"
},
{
"name": "github.com/jpillora/longestcommon",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20161227235612-adb9d91ee629"
},
{
"name": "github.com/kballard/go-shellquote",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20180428030007-95032a82bc51"
},
{
"name": "github.com/mennanov/fieldmask-utils",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.1.2"
},
{
"name": "github.com/opencontainers/runtime-spec",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.2.0"
},
{
"name": "github.com/prometheus/client_golang",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.20.5"
},
{
"name": "github.com/prometheus/client_model",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.6.1"
},
{
"name": "github.com/prometheus/procfs",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.15.1"
},
{
"name": "github.com/sirupsen/logrus",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.3"
},
{
"name": "github.com/spf13/cobra",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.8.1"
},
{
"name": "github.com/spf13/pflag",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.0.6-0.20210604193023-d5e0c0615ace"
},
{
"name": "github.com/spf13/viper",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.19.0"
},
{
"name": "github.com/sryoya/protorand",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20240429201223-e7440656b2a4"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.0"
},
{
"name": "github.com/tidwall/gjson",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.18.0"
},
{
"name": "github.com/vishvananda/netlink",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.3.1-0.20241227191253-26ee0e2abe2d"
},
{
"name": "go.uber.org/atomic",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.0"
},
{
"name": "go.uber.org/multierr",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.0"
},
{
"name": "golang.org/x/sync",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.10.0"
},
{
"name": "golang.org/x/sys",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.29.0"
},
{
"name": "golang.org/x/term",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.28.0"
},
{
"name": "golang.org/x/time",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.9.0"
},
{
"name": "google.golang.org/grpc",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.69.2"
},
{
"name": "google.golang.org/protobuf",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.36.1"
},
{
"name": "gopkg.in/yaml.v3",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v3.0.1"
},
{
"name": "k8s.io/api",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/apiextensions-apiserver",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/apimachinery",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/apiserver",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/client-go",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/code-generator",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/cri-api",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.30.8"
},
{
"name": "k8s.io/klog/v2",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v2.130.1"
},
{
"name": "k8s.io/kube-openapi",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-20241105132330-32ad38e42d3f"
},
{
"name": "sigs.k8s.io/controller-runtime",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.19.3"
},
{
"name": "sigs.k8s.io/controller-tools",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.16.5"
},
{
"name": "sigs.k8s.io/e2e-framework",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.2.0"
},
{
"name": "sigs.k8s.io/yaml",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.4.0"
},
{
"name": "github.com/alecthomas/kong",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.6.0"
},
{
"name": "github.com/cilium/lumberjack/v2",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v2.4.1"
},
{
"name": "github.com/cilium/tetragon/api",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v0.0.0-00010101000000-000000000000"
},
{
"name": "github.com/containerd/containerd",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.7.24"
},
{
"name": "github.com/containerd/nri",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v0.9.0"
},
{
"name": "github.com/containers/common",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v0.61.0"
},
{
"name": "github.com/google/cel-go",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v0.22.1"
},
{
"name": "github.com/opencontainers/runc",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.2.3"
},
{
"name": "github.com/opencontainers/runtime-spec",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.2.0"
},
{
"name": "github.com/pelletier/go-toml",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.5"
},
{
"name": "github.com/pelletier/go-toml/v2",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v2.2.3"
},
{
"name": "github.com/stretchr/testify",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.10.0"
},
{
"name": "google.golang.org/grpc",
"manifest": "contrib/tetragon-rthooks/go.mod",
"ecosystem": "go",
"version_constraint": "v1.69.2"
},
{
"name": "github.com/blang/semver/v4",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v4.0.0"
},
{
"name": "github.com/cilium/cilium",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v1.17.0-rc.0"
},
{
"name": "github.com/sirupsen/logrus",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v1.9.3"
},
{
"name": "golang.org/x/sync",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v0.10.0"
},
{
"name": "k8s.io/apiextensions-apiserver",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/apimachinery",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/client-go",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "k8s.io/code-generator",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v0.32.0"
},
{
"name": "sigs.k8s.io/controller-tools",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v0.16.5"
},
{
"name": "sigs.k8s.io/yaml",
"manifest": "pkg/k8s/go.mod",
"ecosystem": "go",
"version_constraint": "v1.4.0"
}
],
"all_dependencies": {
"error": "GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository",
"source": null,
"packages": [],
"collected": false,
"truncated": false,
"total_count": null,
"direct_count": null,
"indirect_count": null
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 6,
"open_issues": 1,
"closed_ratio": 0.962,
"closed_issues": 25,
"closed_unmerged_prs": 55
},
"bus_factor": 3,
"bot_contributors": 2,
"top_contributors": [
{
"type": "User",
"login": "olsajiri",
"commits": 752,
"avatar_url": "https://avatars.githubusercontent.com/u/42811547?v=4"
},
{
"type": "User",
"login": "kkourt",
"commits": 752,
"avatar_url": "https://avatars.githubusercontent.com/u/221481?v=4"
},
{
"type": "User",
"login": "mtardy",
"commits": 496,
"avatar_url": "https://avatars.githubusercontent.com/u/11256051?v=4"
},
{
"type": "User",
"login": "tixxdz",
"commits": 356,
"avatar_url": "https://avatars.githubusercontent.com/u/1549291?v=4"
},
{
"type": "User",
"login": "willfindlay",
"commits": 258,
"avatar_url": "https://avatars.githubusercontent.com/u/24983811?v=4"
},
{
"type": "User",
"login": "tpapagian",
"commits": 206,
"avatar_url": "https://avatars.githubusercontent.com/u/719302?v=4"
},
{
"type": "User",
"login": "jrfastab",
"commits": 112,
"avatar_url": "https://avatars.githubusercontent.com/u/1247472?v=4"
},
{
"type": "User",
"login": "michi-covalent",
"commits": 83,
"avatar_url": "https://avatars.githubusercontent.com/u/25494577?v=4"
},
{
"type": "User",
"login": "kevsecurity",
"commits": 82,
"avatar_url": "https://avatars.githubusercontent.com/u/97443081?v=4"
},
{
"type": "User",
"login": "anfedotoff",
"commits": 34,
"avatar_url": "https://avatars.githubusercontent.com/u/38811376?v=4"
}
],
"contributors_sampled": 98,
"top_contributor_share": 0.219
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"renovate-config-validator.yaml",
"renovate.yaml"
],
"has_docs_dir": true,
"linter_configs": [
".golangci.yaml",
".golangci.yml"
],
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum",
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 31 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 10,
"reason": "project is fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 8,
"reason": "dependency not pinned by hash detected -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 10,
"reason": "security policy file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 0,
"reason": "50 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "cd8fbd5da48aca14694061fae25601a27059cba5",
"ran_at": "2026-07-26T06:12:17Z",
"aggregate_score": 4.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": true,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [],
"last_merged_pr_at": "2023-10-12T09:34:14Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 54,
"created_at": "2023-07-18T15:34:17Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/mtardy/tetragon",
"host": "github.com",
"name": "tetragon",
"owner": "mtardy"
},
"metrics": {
"overall": {
"key": "overall",
"band": "critical",
"name": "Overall health",
"note": "High-Risk Jurisdiction Policy applies a 50% multiplier to weighted overall health and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "jurisdiction_overall_adjustment",
"params": {
"cap": 49,
"pct": 50
}
}
],
"value": 18,
"inputs": {
"security": 24,
"vitality": 13,
"community": 12,
"governance": 63,
"engineering": 63,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 50,
"weighted_overall_before_jurisdiction": 37,
"overall_after_jurisdiction_multiplier": 18
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 13,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 0.62,
"days_since_last_push": 562,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 562 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "push_recency",
"params": {
"days": 562
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 32,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v0.8.0",
"releases_from_tags": true,
"days_since_latest_release": 1534,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1534 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1534
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "dormant",
"guards": [
"no_open_demand"
],
"signals": [
"scorecard_unmaintained"
],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 0,
"unanswered_open_issues": 1,
"days_since_last_merged_pr": 1017,
"days_since_last_human_commit": 562,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 562 days, with nothing left unanswered; held at dormant by nothing open to answer",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_quiet",
"params": {
"days": 562
}
},
{
"code": "abandonment_guarded",
"params": {
"guards": "nothing open to answer"
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 12,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 0,
"stars": 0,
"watchers": 0,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "0 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 0
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "0 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 0
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "0 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 0
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "critical",
"name": "Community health",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"has_readme": false,
"has_license": false,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 63,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "good",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"bus_factor": 3,
"contributors_sampled": 98,
"top_contributor_share": 0.219
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "3 contributor(s) cover half of all commits",
"points": 36,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 3
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 22% of commits",
"points": 17.6,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 22
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "98 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 98
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 31 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "at_risk",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 49,
"inputs": {
"merged_prs": 6,
"open_issues": 1,
"closed_issues": 25,
"issue_closed_ratio": 0.962,
"closed_unmerged_prs": 55
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "96% of issues closed",
"points": 45,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 96
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "6/61 decided PRs merged",
"points": 3.8,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 6,
"decided": 61
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 59,
"inputs": {
"followers": 70,
"owner_type": "User",
"is_verified": null,
"owner_login": "mtardy",
"public_repos": 42,
"account_age_days": 4164
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "70 followers of mtardy",
"points": 13.3,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 70,
"login": "mtardy"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "42 public repos, account ~11 yr old",
"points": 23.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 42
}
},
{
"code": "account_age_years",
"params": {
"years": 11
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 63,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "excellent",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 88,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": true,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": ".golangci.yaml, .golangci.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yaml, .golangci.yml"
}
}
],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 6.4,
"status": "met",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "critical",
"name": "Documentation",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": null,
"has_readme": false,
"has_docs_dir": true,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 25,
"status": "met",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "critical",
"name": "Security",
"value": 24,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "critical",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Packaging, Signed-Releases. Remaining weights renormalized. High-Risk Jurisdiction Policy applies a 50% multiplier to Security posture and gives it an At risk ceiling of 49.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "jurisdiction_posture_adjustment",
"params": {
"cap": 49,
"pct": 50
}
}
],
"value": 24,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.9,
"high_risk_jurisdiction_cap": 49,
"high_risk_jurisdiction_multiplier": 50,
"security_posture_after_multiplier": 24,
"security_posture_before_jurisdiction": 49
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 31 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "update tool detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is fuzzed",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 8",
"points": 4,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file detected",
"points": 5,
"status": "met",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "50 existing vulnerabilities detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "moderate",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 50,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": true,
"exposures": [
{
"role": "top_contributor",
"count": 1,
"country": "Russia"
}
],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 6
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "Russia: top_contributor (1)",
"points": 50,
"status": "partial",
"details": [
{
"code": "jurisdiction_exposure",
"params": {
"role": "top_contributor",
"count": 1,
"country": "Russia"
}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "good",
"name": "AI Readiness",
"value": 71,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.903,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "56 of 62 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 56,
"sampled": 62
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"has_nix": true,
"has_tests": true,
"lockfiles": [
"go.sum",
"package-lock.json"
],
"has_dockerfile": true,
"typed_language": true,
"bootstrap_files": [
"Makefile",
"api/Makefile",
"api/vendor/google.golang.org/grpc/Makefile",
"bpf/Makefile",
"bpf/tests/Makefile",
"contrib/tester-progs/Makefile",
"contrib/tetragon-rthooks/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/proto/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/pelletier/go-toml/Makefile",
"contrib/tetragon-rthooks/vendor/github.com/tetratelabs/wazero/Makefile",
"contrib/tetragon-rthooks/vendor/google.golang.org/grpc/Makefile",
"docs/Makefile",
"install/kubernetes/Makefile",
"pkg/k8s/Makefile",
"pkg/k8s/vendor/github.com/emicklei/go-restful/v3/Makefile",
"pkg/k8s/vendor/github.com/gobuffalo/flect/Makefile",
"pkg/k8s/vendor/github.com/gogo/protobuf/proto/Makefile",
"pkg/k8s/vendor/github.com/munnerz/goautoneg/Makefile",
"pkg/k8s/vendor/github.com/pkg/errors/Makefile",
"pkg/k8s/vendor/github.com/spf13/cobra/Makefile",
"pkg/k8s/vendor/k8s.io/gengo/v2/Makefile",
"pkg/k8s/vendor/sigs.k8s.io/json/Makefile",
"tests/vmtests/Makefile",
"vendor/github.com/cilium/ebpf/Makefile",
"vendor/github.com/containerd/cgroups/Makefile",
"vendor/github.com/distribution/reference/Makefile",
"vendor/github.com/emicklei/go-restful/v3/Makefile",
"vendor/github.com/felixge/httpsnoop/Makefile",
"vendor/github.com/gobuffalo/flect/Makefile",
"vendor/github.com/gogo/protobuf/gogoproto/Makefile",
"vendor/github.com/gogo/protobuf/proto/Makefile",
"vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile",
"vendor/github.com/gorilla/websocket/Makefile",
"vendor/github.com/hashicorp/hcl/Makefile",
"vendor/github.com/munnerz/goautoneg/Makefile",
"vendor/github.com/pkg/errors/Makefile",
"vendor/github.com/prometheus/procfs/Makefile",
"vendor/github.com/sagikazarmark/locafero/justfile",
"vendor/github.com/spf13/cast/Makefile",
"vendor/github.com/spf13/cobra/Makefile",
"vendor/github.com/spf13/viper/Makefile",
"vendor/github.com/vishvananda/netlink/Makefile",
"vendor/go.opentelemetry.io/otel/Makefile",
"vendor/go.uber.org/atomic/Makefile",
"vendor/go.uber.org/multierr/Makefile",
"vendor/google.golang.org/grpc/Makefile",
"vendor/gopkg.in/ini.v1/Makefile",
"vendor/k8s.io/gengo/v2/Makefile",
"vendor/sigs.k8s.io/controller-runtime/Makefile",
"vendor/sigs.k8s.io/json/Makefile"
],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"api/go.mod",
"contrib/tetragon-rthooks/go.mod",
"docs/go.mod",
"go.mod",
"pkg/k8s/go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile, api/Makefile, api/vendor/google.golang.org/grpc/Makefile, bpf/Makefile, bpf/tests/Makefile, contrib/tester-progs/Makefile, contrib/tetragon-rthooks/Makefile, contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/Makefile, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/Makefile, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/proto/Makefile, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile, contrib/tetragon-rthooks/vendor/github.com/pelletier/go-toml/Makefile, contrib/tetragon-rthooks/vendor/github.com/tetratelabs/wazero/Makefile, contrib/tetragon-rthooks/vendor/google.golang.org/grpc/Makefile, docs/Makefile, install/kubernetes/Makefile, pkg/k8s/Makefile, pkg/k8s/vendor/github.com/emicklei/go-restful/v3/Makefile, pkg/k8s/vendor/github.com/gobuffalo/flect/Makefile, pkg/k8s/vendor/github.com/gogo/protobuf/proto/Makefile, pkg/k8s/vendor/github.com/munnerz/goautoneg/Makefile, pkg/k8s/vendor/github.com/pkg/errors/Makefile, pkg/k8s/vendor/github.com/spf13/cobra/Makefile, pkg/k8s/vendor/k8s.io/gengo/v2/Makefile, pkg/k8s/vendor/sigs.k8s.io/json/Makefile, tests/vmtests/Makefile, vendor/github.com/cilium/ebpf/Makefile, vendor/github.com/containerd/cgroups/Makefile, vendor/github.com/distribution/reference/Makefile, vendor/github.com/emicklei/go-restful/v3/Makefile, vendor/github.com/felixge/httpsnoop/Makefile, vendor/github.com/gobuffalo/flect/Makefile, vendor/github.com/gogo/protobuf/gogoproto/Makefile, vendor/github.com/gogo/protobuf/proto/Makefile, vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile, vendor/github.com/gorilla/websocket/Makefile, vendor/github.com/hashicorp/hcl/Makefile, vendor/github.com/munnerz/goautoneg/Makefile, vendor/github.com/pkg/errors/Makefile, vendor/github.com/prometheus/procfs/Makefile, vendor/github.com/sagikazarmark/locafero/justfile, vendor/github.com/spf13/cast/Makefile, vendor/github.com/spf13/cobra/Makefile, vendor/github.com/spf13/viper/Makefile, vendor/github.com/vishvananda/netlink/Makefile, vendor/go.opentelemetry.io/otel/Makefile, vendor/go.uber.org/atomic/Makefile, vendor/go.uber.org/multierr/Makefile, vendor/google.golang.org/grpc/Makefile, vendor/gopkg.in/ini.v1/Makefile, vendor/k8s.io/gengo/v2/Makefile, vendor/sigs.k8s.io/controller-runtime/Makefile, vendor/sigs.k8s.io/json/Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile, api/Makefile, api/vendor/google.golang.org/grpc/Makefile, bpf/Makefile, bpf/tests/Makefile, contrib/tester-progs/Makefile, contrib/tetragon-rthooks/Makefile, contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/Makefile, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/Makefile, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/proto/Makefile, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile, contrib/tetragon-rthooks/vendor/github.com/pelletier/go-toml/Makefile, contrib/tetragon-rthooks/vendor/github.com/tetratelabs/wazero/Makefile, contrib/tetragon-rthooks/vendor/google.golang.org/grpc/Makefile, docs/Makefile, install/kubernetes/Makefile, pkg/k8s/Makefile, pkg/k8s/vendor/github.com/emicklei/go-restful/v3/Makefile, pkg/k8s/vendor/github.com/gobuffalo/flect/Makefile, pkg/k8s/vendor/github.com/gogo/protobuf/proto/Makefile, pkg/k8s/vendor/github.com/munnerz/goautoneg/Makefile, pkg/k8s/vendor/github.com/pkg/errors/Makefile, pkg/k8s/vendor/github.com/spf13/cobra/Makefile, pkg/k8s/vendor/k8s.io/gengo/v2/Makefile, pkg/k8s/vendor/sigs.k8s.io/json/Makefile, tests/vmtests/Makefile, vendor/github.com/cilium/ebpf/Makefile, vendor/github.com/containerd/cgroups/Makefile, vendor/github.com/distribution/reference/Makefile, vendor/github.com/emicklei/go-restful/v3/Makefile, vendor/github.com/felixge/httpsnoop/Makefile, vendor/github.com/gobuffalo/flect/Makefile, vendor/github.com/gogo/protobuf/gogoproto/Makefile, vendor/github.com/gogo/protobuf/proto/Makefile, vendor/github.com/gogo/protobuf/protoc-gen-gogo/descriptor/Makefile, vendor/github.com/gorilla/websocket/Makefile, vendor/github.com/hashicorp/hcl/Makefile, vendor/github.com/munnerz/goautoneg/Makefile, vendor/github.com/pkg/errors/Makefile, vendor/github.com/prometheus/procfs/Makefile, vendor/github.com/sagikazarmark/locafero/justfile, vendor/github.com/spf13/cast/Makefile, vendor/github.com/spf13/cobra/Makefile, vendor/github.com/spf13/viper/Makefile, vendor/github.com/vishvananda/netlink/Makefile, vendor/go.opentelemetry.io/otel/Makefile, vendor/go.uber.org/atomic/Makefile, vendor/go.uber.org/multierr/Makefile, vendor/google.golang.org/grpc/Makefile, vendor/gopkg.in/ini.v1/Makefile, vendor/k8s.io/gengo/v2/Makefile, vendor/sigs.k8s.io/controller-runtime/Makefile, vendor/sigs.k8s.io/json/Makefile"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": ".golangci.yaml, .golangci.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".golangci.yaml, .golangci.yml"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "Dockerfile, Nix, lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile, Nix, lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 8",
"points": 8,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 99,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 1773339,
"source_files_sampled": 684,
"oversized_source_files": 7
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "7/684 source files over 60KB",
"points": 54.4,
"status": "partial",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 684,
"oversized": 7
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "good",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"example_dirs": [
"demos",
"examples"
],
"has_mcp_signal": false,
"api_schema_files": [
"api/v1/tetragon/bpf.proto",
"api/v1/tetragon/capabilities.proto",
"api/v1/tetragon/events.proto",
"api/v1/tetragon/sensors.proto",
"api/v1/tetragon/stack.proto",
"api/v1/tetragon/tetragon.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto",
"contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto",
"contrib/tetragon-rthooks/vendor/github.com/containerd/nri/pkg/api/api.proto",
"contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/request.proto",
"contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/test.proto",
"contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/gogo.proto",
"contrib/tetragon-rthooks/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto",
"pkg/k8s/vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto",
"pkg/k8s/vendor/github.com/google/gnostic-models/extensions/extension.proto",
"pkg/k8s/vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto",
"pkg/k8s/vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto",
"pkg/k8s/vendor/k8s.io/api/admissionregistration/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apidiscovery/v2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apps/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apps/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/apps/v1beta2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authentication/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authentication/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authentication/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authorization/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/authorization/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/batch/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/batch/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/certificates/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/certificates/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/certificates/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/coordination/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/coordination/v1alpha2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/coordination/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/core/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/discovery/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/discovery/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/events/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/events/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/extensions/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto",
"pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto",
"pkg/k8s/vendor/k8s.io/api/networking/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/networking/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/networking/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/node/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/node/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/node/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/policy/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/policy/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/rbac/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/rbac/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/rbac/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/resource/v1alpha3/generated.proto",
"pkg/k8s/vendor/k8s.io/api/resource/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/scheduling/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/scheduling/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storage/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storage/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storage/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto",
"pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto",
"pkg/k8s/vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto",
"vendor/github.com/cilium/cilium/api/v1/flow/flow.proto",
"vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto",
"vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto",
"vendor/github.com/containerd/cgroups/stats/v1/metrics.proto",
"vendor/github.com/containerd/cgroups/v2/stats/metrics.proto",
"vendor/github.com/docker/docker/api/swagger.yaml",
"vendor/github.com/docker/docker/api/types/swarm/runtime/plugin.proto",
"vendor/github.com/gogo/protobuf/gogoproto/gogo.proto",
"vendor/github.com/google/gnostic-models/extensions/extension.proto",
"vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto",
"vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto",
"vendor/k8s.io/api/admission/v1/generated.proto",
"vendor/k8s.io/api/admission/v1beta1/generated.proto",
"vendor/k8s.io/api/admissionregistration/v1/generated.proto",
"vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto",
"vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto",
"vendor/k8s.io/api/apidiscovery/v2/generated.proto",
"vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto",
"vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto",
"vendor/k8s.io/api/apps/v1/generated.proto",
"vendor/k8s.io/api/apps/v1beta1/generated.proto",
"vendor/k8s.io/api/apps/v1beta2/generated.proto",
"vendor/k8s.io/api/authentication/v1/generated.proto",
"vendor/k8s.io/api/authentication/v1alpha1/generated.proto",
"vendor/k8s.io/api/authentication/v1beta1/generated.proto",
"vendor/k8s.io/api/authorization/v1/generated.proto",
"vendor/k8s.io/api/authorization/v1beta1/generated.proto",
"vendor/k8s.io/api/autoscaling/v1/generated.proto",
"vendor/k8s.io/api/autoscaling/v2/generated.proto",
"vendor/k8s.io/api/autoscaling/v2beta1/generated.proto",
"vendor/k8s.io/api/autoscaling/v2beta2/generated.proto",
"vendor/k8s.io/api/batch/v1/generated.proto",
"vendor/k8s.io/api/batch/v1beta1/generated.proto",
"vendor/k8s.io/api/certificates/v1/generated.proto",
"vendor/k8s.io/api/certificates/v1alpha1/generated.proto",
"vendor/k8s.io/api/certificates/v1beta1/generated.proto",
"vendor/k8s.io/api/coordination/v1/generated.proto",
"vendor/k8s.io/api/coordination/v1alpha2/generated.proto",
"vendor/k8s.io/api/coordination/v1beta1/generated.proto",
"vendor/k8s.io/api/core/v1/generated.proto",
"vendor/k8s.io/api/discovery/v1/generated.proto",
"vendor/k8s.io/api/discovery/v1beta1/generated.proto",
"vendor/k8s.io/api/events/v1/generated.proto",
"vendor/k8s.io/api/events/v1beta1/generated.proto",
"vendor/k8s.io/api/extensions/v1beta1/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto",
"vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto",
"vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto",
"vendor/k8s.io/api/networking/v1/generated.proto",
"vendor/k8s.io/api/networking/v1alpha1/generated.proto",
"vendor/k8s.io/api/networking/v1beta1/generated.proto",
"vendor/k8s.io/api/node/v1/generated.proto",
"vendor/k8s.io/api/node/v1alpha1/generated.proto",
"vendor/k8s.io/api/node/v1beta1/generated.proto",
"vendor/k8s.io/api/policy/v1/generated.proto",
"vendor/k8s.io/api/policy/v1beta1/generated.proto",
"vendor/k8s.io/api/rbac/v1/generated.proto",
"vendor/k8s.io/api/rbac/v1alpha1/generated.proto",
"vendor/k8s.io/api/rbac/v1beta1/generated.proto",
"vendor/k8s.io/api/resource/v1alpha3/generated.proto",
"vendor/k8s.io/api/resource/v1beta1/generated.proto",
"vendor/k8s.io/api/scheduling/v1/generated.proto",
"vendor/k8s.io/api/scheduling/v1alpha1/generated.proto",
"vendor/k8s.io/api/scheduling/v1beta1/generated.proto",
"vendor/k8s.io/api/storage/v1/generated.proto",
"vendor/k8s.io/api/storage/v1alpha1/generated.proto",
"vendor/k8s.io/api/storage/v1beta1/generated.proto",
"vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto",
"vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto",
"vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto",
"vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto",
"vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto",
"vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto",
"vendor/k8s.io/apimachinery/pkg/runtime/generated.proto",
"vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto",
"vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto",
"vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto"
]
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": "api/v1/tetragon/bpf.proto, api/v1/tetragon/capabilities.proto, api/v1/tetragon/events.proto, api/v1/tetragon/sensors.proto, api/v1/tetragon/stack.proto, api/v1/tetragon/tetragon.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto, contrib/tetragon-rthooks/vendor/github.com/containerd/nri/pkg/api/api.proto, contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/request.proto, contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/test.proto, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/gogo.proto, contrib/tetragon-rthooks/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto, pkg/k8s/vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto, pkg/k8s/vendor/github.com/google/gnostic-models/extensions/extension.proto, pkg/k8s/vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto, pkg/k8s/vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto, pkg/k8s/vendor/k8s.io/api/admissionregistration/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/apidiscovery/v2/generated.proto, pkg/k8s/vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/apps/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/apps/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/apps/v1beta2/generated.proto, pkg/k8s/vendor/k8s.io/api/authentication/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/authentication/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/authentication/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/authorization/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/authorization/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v2/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto, pkg/k8s/vendor/k8s.io/api/batch/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/batch/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/certificates/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/certificates/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/certificates/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/coordination/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/coordination/v1alpha2/generated.proto, pkg/k8s/vendor/k8s.io/api/coordination/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/core/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/discovery/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/discovery/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/events/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/events/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/extensions/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto, pkg/k8s/vendor/k8s.io/api/networking/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/networking/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/networking/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/node/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/node/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/node/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/policy/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/policy/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/rbac/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/rbac/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/rbac/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/resource/v1alpha3/generated.proto, pkg/k8s/vendor/k8s.io/api/resource/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/scheduling/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/scheduling/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/storage/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/storage/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/storage/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto, pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto, vendor/github.com/cilium/cilium/api/v1/flow/flow.proto, vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto, vendor/github.com/containerd/cgroups/stats/v1/metrics.proto, vendor/github.com/containerd/cgroups/v2/stats/metrics.proto, vendor/github.com/docker/docker/api/swagger.yaml, vendor/github.com/docker/docker/api/types/swarm/runtime/plugin.proto, vendor/github.com/gogo/protobuf/gogoproto/gogo.proto, vendor/github.com/google/gnostic-models/extensions/extension.proto, vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto, vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto, vendor/k8s.io/api/admission/v1/generated.proto, vendor/k8s.io/api/admission/v1beta1/generated.proto, vendor/k8s.io/api/admissionregistration/v1/generated.proto, vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto, vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto, vendor/k8s.io/api/apidiscovery/v2/generated.proto, vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto, vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto, vendor/k8s.io/api/apps/v1/generated.proto, vendor/k8s.io/api/apps/v1beta1/generated.proto, vendor/k8s.io/api/apps/v1beta2/generated.proto, vendor/k8s.io/api/authentication/v1/generated.proto, vendor/k8s.io/api/authentication/v1alpha1/generated.proto, vendor/k8s.io/api/authentication/v1beta1/generated.proto, vendor/k8s.io/api/authorization/v1/generated.proto, vendor/k8s.io/api/authorization/v1beta1/generated.proto, vendor/k8s.io/api/autoscaling/v1/generated.proto, vendor/k8s.io/api/autoscaling/v2/generated.proto, vendor/k8s.io/api/autoscaling/v2beta1/generated.proto, vendor/k8s.io/api/autoscaling/v2beta2/generated.proto, vendor/k8s.io/api/batch/v1/generated.proto, vendor/k8s.io/api/batch/v1beta1/generated.proto, vendor/k8s.io/api/certificates/v1/generated.proto, vendor/k8s.io/api/certificates/v1alpha1/generated.proto, vendor/k8s.io/api/certificates/v1beta1/generated.proto, vendor/k8s.io/api/coordination/v1/generated.proto, vendor/k8s.io/api/coordination/v1alpha2/generated.proto, vendor/k8s.io/api/coordination/v1beta1/generated.proto, vendor/k8s.io/api/core/v1/generated.proto, vendor/k8s.io/api/discovery/v1/generated.proto, vendor/k8s.io/api/discovery/v1beta1/generated.proto, vendor/k8s.io/api/events/v1/generated.proto, vendor/k8s.io/api/events/v1beta1/generated.proto, vendor/k8s.io/api/extensions/v1beta1/generated.proto, vendor/k8s.io/api/flowcontrol/v1/generated.proto, vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto, vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto, vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto, vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto, vendor/k8s.io/api/networking/v1/generated.proto, vendor/k8s.io/api/networking/v1alpha1/generated.proto, vendor/k8s.io/api/networking/v1beta1/generated.proto, vendor/k8s.io/api/node/v1/generated.proto, vendor/k8s.io/api/node/v1alpha1/generated.proto, vendor/k8s.io/api/node/v1beta1/generated.proto, vendor/k8s.io/api/policy/v1/generated.proto, vendor/k8s.io/api/policy/v1beta1/generated.proto, vendor/k8s.io/api/rbac/v1/generated.proto, vendor/k8s.io/api/rbac/v1alpha1/generated.proto, vendor/k8s.io/api/rbac/v1beta1/generated.proto, vendor/k8s.io/api/resource/v1alpha3/generated.proto, vendor/k8s.io/api/resource/v1beta1/generated.proto, vendor/k8s.io/api/scheduling/v1/generated.proto, vendor/k8s.io/api/scheduling/v1alpha1/generated.proto, vendor/k8s.io/api/scheduling/v1beta1/generated.proto, vendor/k8s.io/api/storage/v1/generated.proto, vendor/k8s.io/api/storage/v1alpha1/generated.proto, vendor/k8s.io/api/storage/v1beta1/generated.proto, vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto, vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto, vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto, vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto, vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto, vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto, vendor/k8s.io/apimachinery/pkg/runtime/generated.proto, vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto, vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto, vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "api/v1/tetragon/bpf.proto, api/v1/tetragon/capabilities.proto, api/v1/tetragon/events.proto, api/v1/tetragon/sensors.proto, api/v1/tetragon/stack.proto, api/v1/tetragon/tetragon.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto, contrib/tetragon-rthooks/vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto, contrib/tetragon-rthooks/vendor/github.com/containerd/nri/pkg/api/api.proto, contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/request.proto, contrib/tetragon-rthooks/vendor/github.com/containerd/ttrpc/test.proto, contrib/tetragon-rthooks/vendor/github.com/gogo/protobuf/gogoproto/gogo.proto, contrib/tetragon-rthooks/vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto, pkg/k8s/vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto, pkg/k8s/vendor/github.com/google/gnostic-models/extensions/extension.proto, pkg/k8s/vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto, pkg/k8s/vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto, pkg/k8s/vendor/k8s.io/api/admissionregistration/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/apidiscovery/v2/generated.proto, pkg/k8s/vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/apps/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/apps/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/apps/v1beta2/generated.proto, pkg/k8s/vendor/k8s.io/api/authentication/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/authentication/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/authentication/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/authorization/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/authorization/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v2/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto, pkg/k8s/vendor/k8s.io/api/batch/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/batch/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/certificates/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/certificates/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/certificates/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/coordination/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/coordination/v1alpha2/generated.proto, pkg/k8s/vendor/k8s.io/api/coordination/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/core/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/discovery/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/discovery/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/events/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/events/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/extensions/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto, pkg/k8s/vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto, pkg/k8s/vendor/k8s.io/api/networking/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/networking/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/networking/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/node/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/node/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/node/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/policy/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/policy/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/rbac/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/rbac/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/rbac/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/resource/v1alpha3/generated.proto, pkg/k8s/vendor/k8s.io/api/resource/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/scheduling/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/scheduling/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/storage/v1/generated.proto, pkg/k8s/vendor/k8s.io/api/storage/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/api/storage/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto, pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto, pkg/k8s/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto, pkg/k8s/vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto, vendor/github.com/cilium/cilium/api/v1/flow/flow.proto, vendor/github.com/cilium/cilium/pkg/k8s/slim/k8s/apis/meta/v1/generated.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/bpf.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/capabilities.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/events.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/sensors.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/stack.proto, vendor/github.com/cilium/tetragon/api/v1/tetragon/tetragon.proto, vendor/github.com/containerd/cgroups/stats/v1/metrics.proto, vendor/github.com/containerd/cgroups/v2/stats/metrics.proto, vendor/github.com/docker/docker/api/swagger.yaml, vendor/github.com/docker/docker/api/types/swarm/runtime/plugin.proto, vendor/github.com/gogo/protobuf/gogoproto/gogo.proto, vendor/github.com/google/gnostic-models/extensions/extension.proto, vendor/github.com/google/gnostic-models/openapiv2/OpenAPIv2.proto, vendor/github.com/google/gnostic-models/openapiv3/OpenAPIv3.proto, vendor/k8s.io/api/admission/v1/generated.proto, vendor/k8s.io/api/admission/v1beta1/generated.proto, vendor/k8s.io/api/admissionregistration/v1/generated.proto, vendor/k8s.io/api/admissionregistration/v1alpha1/generated.proto, vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto, vendor/k8s.io/api/apidiscovery/v2/generated.proto, vendor/k8s.io/api/apidiscovery/v2beta1/generated.proto, vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto, vendor/k8s.io/api/apps/v1/generated.proto, vendor/k8s.io/api/apps/v1beta1/generated.proto, vendor/k8s.io/api/apps/v1beta2/generated.proto, vendor/k8s.io/api/authentication/v1/generated.proto, vendor/k8s.io/api/authentication/v1alpha1/generated.proto, vendor/k8s.io/api/authentication/v1beta1/generated.proto, vendor/k8s.io/api/authorization/v1/generated.proto, vendor/k8s.io/api/authorization/v1beta1/generated.proto, vendor/k8s.io/api/autoscaling/v1/generated.proto, vendor/k8s.io/api/autoscaling/v2/generated.proto, vendor/k8s.io/api/autoscaling/v2beta1/generated.proto, vendor/k8s.io/api/autoscaling/v2beta2/generated.proto, vendor/k8s.io/api/batch/v1/generated.proto, vendor/k8s.io/api/batch/v1beta1/generated.proto, vendor/k8s.io/api/certificates/v1/generated.proto, vendor/k8s.io/api/certificates/v1alpha1/generated.proto, vendor/k8s.io/api/certificates/v1beta1/generated.proto, vendor/k8s.io/api/coordination/v1/generated.proto, vendor/k8s.io/api/coordination/v1alpha2/generated.proto, vendor/k8s.io/api/coordination/v1beta1/generated.proto, vendor/k8s.io/api/core/v1/generated.proto, vendor/k8s.io/api/discovery/v1/generated.proto, vendor/k8s.io/api/discovery/v1beta1/generated.proto, vendor/k8s.io/api/events/v1/generated.proto, vendor/k8s.io/api/events/v1beta1/generated.proto, vendor/k8s.io/api/extensions/v1beta1/generated.proto, vendor/k8s.io/api/flowcontrol/v1/generated.proto, vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto, vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto, vendor/k8s.io/api/flowcontrol/v1beta3/generated.proto, vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto, vendor/k8s.io/api/networking/v1/generated.proto, vendor/k8s.io/api/networking/v1alpha1/generated.proto, vendor/k8s.io/api/networking/v1beta1/generated.proto, vendor/k8s.io/api/node/v1/generated.proto, vendor/k8s.io/api/node/v1alpha1/generated.proto, vendor/k8s.io/api/node/v1beta1/generated.proto, vendor/k8s.io/api/policy/v1/generated.proto, vendor/k8s.io/api/policy/v1beta1/generated.proto, vendor/k8s.io/api/rbac/v1/generated.proto, vendor/k8s.io/api/rbac/v1alpha1/generated.proto, vendor/k8s.io/api/rbac/v1beta1/generated.proto, vendor/k8s.io/api/resource/v1alpha3/generated.proto, vendor/k8s.io/api/resource/v1beta1/generated.proto, vendor/k8s.io/api/scheduling/v1/generated.proto, vendor/k8s.io/api/scheduling/v1alpha1/generated.proto, vendor/k8s.io/api/scheduling/v1beta1/generated.proto, vendor/k8s.io/api/storage/v1/generated.proto, vendor/k8s.io/api/storage/v1alpha1/generated.proto, vendor/k8s.io/api/storage/v1beta1/generated.proto, vendor/k8s.io/api/storagemigration/v1alpha1/generated.proto, vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto, vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto, vendor/k8s.io/apimachinery/pkg/api/resource/generated.proto, vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto, vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto, vendor/k8s.io/apimachinery/pkg/runtime/generated.proto, vendor/k8s.io/apimachinery/pkg/runtime/schema/generated.proto, vendor/k8s.io/apimachinery/pkg/util/intstr/generated.proto, vendor/k8s.io/cri-api/pkg/apis/runtime/v1/api.proto"
}
}
],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "demos, examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "demos, examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Community profile unavailable",
"go package 'github.com/cilium/tetragon' points at a different repository (https://github.com/cilium/tetragon); excluded from ecosystem scoring",
"go package 'github.com/cilium/tetragon/api' points at a different repository (https://github.com/cilium/tetragon); excluded from ecosystem scoring",
"Could not fetch go package 'github.com/cilium/tetragon/pkg/k8s' from its registry",
"Could not fetch go package 'github.com/cilium/tetragon/contrib/rthooks/tetragon-oci-hook' from its registry",
"GitHub dependency-graph SBOM unavailable (404); the dependency graph may be disabled for this repository"
],
"report_type": "repository",
"generated_at": "2026-07-26T06:12:45.937330Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/m/mtardy/tetragon.svg",
"full_name": "mtardy/tetragon",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}