原始 JSON 报告 机器可读
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 14305,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 129665,
"Shell": 1622,
"Makefile": 1366,
"Dockerfile": 137
},
"pushed_at": "2026-07-07T13:04:24Z",
"created_at": "2014-07-14T00:27:16Z",
"owner_type": "Organization",
"updated_at": "2026-07-04T12:34:10Z",
"description": "A pure Go implementation of Gil Tene's HDR Histogram.",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "master",
"license_spdx_raw": "MIT",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": null,
"name": null,
"type": "Organization",
"login": "HdrHistogram",
"company": null,
"location": null,
"followers": 42,
"avatar_url": "https://avatars.githubusercontent.com/u/6456658?v=4",
"created_at": "2014-01-21T03:18:59Z",
"is_verified": null,
"public_repos": 13,
"account_age_days": 4568
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.3.0",
"kind": "minor",
"published_at": "2026-07-07T13:04:25Z"
},
{
"tag": "v1.2.0",
"kind": "minor",
"published_at": "2025-11-10T00:00:02Z"
},
{
"tag": "v1.1.2",
"kind": "patch",
"published_at": "2021-08-24T21:10:27Z"
},
{
"tag": "v1.1.1",
"kind": "patch",
"published_at": "2021-08-17T22:11:29Z"
},
{
"tag": "v1.1.0",
"kind": "minor",
"published_at": "2021-03-09T20:40:52Z"
},
{
"tag": "v1.0.1",
"kind": "patch",
"published_at": "2020-11-25T21:22:50Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2020-10-17T20:33:46Z"
}
],
"recent_commits": [
{
"oid": "0500d8c71ec849a63147b0703f7932fbe04b79d7",
"body": "…-time casing (#66)\n\n* fix silent correctness/interop bugs: Mean overflow, offset, base-time casing\n\nThree defects surfaced by a deep audit, each with a regression test:\n\n- Mean() computed the int64 product count*value BEFORE the float64 cast, so large\n counts/values (product > ~9.2e18) wrapped and\n[…]\npended on TZ (e.g. failing under\nTZ=America/Santo_Domingo where 1000ms since epoch renders as the previous local date).\nFormat in UTC for a stable, timezone-independent line. Regression test included.",
"is_bot": false,
"headline": "fix silent correctness/interop bugs: Mean overflow, wire offset, base…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T12:34:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cda93cfebafea917e7c947c3adff2f497441ce46",
"body": "…ross all APIs (#68)\n\n* percentile: reach at least the first recorded entry across all three APIs\n\nApply the reference max(countAtPercentile, 1) rule to ValueAtPercentile,\nValueAtPercentiles, and ValueAtPercentilesSlice together. Without it, low percentiles\nof a small histogram round the target coun\n[…]\na negative percentile\nwhile ValueAtPercentile / ValueAtPercentiles return its lowest-equivalent\n(the 0th percentile). Asserts single == map == slice for -1/-0.0001/-100\non New(1,...) and New(100,...).",
"is_bot": false,
"headline": "percentile: reach the first recorded entry (0th percentile == min) ac…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T12:33:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "a62267c371b8c19732c43cd9021e6bea3df304be",
"body": "bufio.Reader.ReadString returns the buffered final line together with\nio.EOF. decodeNextIntervalHistogram broke immediately on io.EOF, so an\ninterval line without a trailing newline was silently dropped. Process\nthe buffered line before terminating; the follow-up read returns\n(\"\", io.EOF) and ends t\n[…]\nds TestHistogramLogReader_finalLineNoTrailingNewline: writes 3\nintervals, strips the trailing newline, and asserts all 3 are still\nread and the last decodes identically to the newline-terminated read.",
"is_bot": false,
"headline": "fix(log): decode final interval line lacking a trailing newline (#72)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T09:40:30Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "112d1637bfe1cbedf9cbe597bfc9cab7eb726e3a",
"body": "RecordValues(v, n) with n < 0 silently ran counts[idx] += n and\ntotalCount += n, driving both negative and corrupting every subsequent\npercentile/mean/distribution query (e.g. RecordValues(50, -5) on a\nhistogram holding one sample leaves TotalCount == -4).\n\nReject a negative n with an error, consist\n[…]\n. The check is a\npredicted-not-taken branch on the write hot path with no measurable\nthroughput impact (BenchmarkHistogramRecordValue ~3.2 ns/op unchanged).\n\nAdds TestRecordValuesRejectsNegativeCount.",
"is_bot": false,
"headline": "fix: reject a negative count in RecordValues (#74)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:11:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1639bc976872212c4b1a70cf06311d563a7b529e",
"body": "TestHistogramLogReader_logV2 and _tagged_log previously asserted only\nerr==nil and NotNil per interval, and under-drained the jHiccup fixture\n(61 of 62 intervals). Pin interval 0's decoded contents (TotalCount,\nStart/EndTimeMs, Max, p50, p99) and assert the full drained interval\ncount (62 and 42), so a regression in the reader or the V2 decoder is\ncaught rather than silently returning a wrong-but-non-nil histogram.\n\nTest-only; no source change.",
"is_bot": false,
"headline": "test(log): pin golden values for the logV2 reader fixtures (#73)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:10:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c4a3c10c8935b4b7dadb8d66f8ae2b6ed33febb",
"body": "Two ValueAtPercentile benchmarks ran a loop 'for i := range make([]float64, b.N) {\ndata[i] = rand.Float64()*100 }' that (a) filled data (unused) instead of the intended\nquantiles, and (b) indexed a fixed 1e6-element slice b.N times, panicking with index\nout of range once b.N exceeded 1e6 (e.g. go test -bench . -benchtime=2000000x). The\nloop was dead — the benchmarks query a fixed percentile set — so remove it and drop the\nunused slices. Now runs at b.N=2e6+ cleanly.",
"is_bot": false,
"headline": "bench: remove dead fill loop that panics for b.N > 1e6 (#70)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:09:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3c9d0bbca96639e3f8f54d8abb4bf6cf54a9955",
"body": "…ed-value + merge edges (#71)\n\nTest-only additions lifting coverage 85.9% -> 87.8% on risk-bearing paths that had none:\n- TestZigZagAllByteLengths: every 1..9-byte rung of the LEB128 encoder + round-trip\n (zig_zag_encode_i64 now 100%).\n- TestNewMaxRangeOverflowGuard: New(1, MaxInt64, 3) exercises g\n[…]\nerror path for an out-of-range corrected value.\n- TestMergeReportsDropped: Merge returns the count dropped when the destination range is\n narrower than the source (Merge now 100%).\nNo source changes.",
"is_bot": false,
"headline": "test: cover zigzag byte-length ladder, bucket overflow guard, correct…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:09:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "1e77ae969583e5219016120015bd45ae94c04ac5",
"body": "Reset is documented to restore the histogram to its original state, but it only zeroed\ntotalCount and counts[], leaving a stale tag/startTimeMs/endTimeMs from a previous\ninterval. Clear them too (matching New()'s initialization). Regression test included.",
"is_bot": false,
"headline": "Reset: clear tag and start/end time, not just counts (#69)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:09:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1a9402207a8a9d8c06df0a6ad19388784b7a240",
"body": "… (#65)\n\n* harden Decode/log-reader against malformed input + add native fuzzing\n\nA deep audit (and now these fuzz targets) found the public Decode() and interval-log\nreader panic on malformed/untrusted input. Decode ingests base64/zlib bytes from log\nfiles and the network, so these are remote-DoS-c\n[…]\ngeMetamorphic: Merge two histograms — no panic, count conservation, invariants.\n\nWired all four into the ClusterFuzzLite build and the fuzz-smoke CI matrix. Each runs\nclean for millions of executions.",
"is_bot": false,
"headline": "harden Decode/log-reader against malformed input + add native fuzzing…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:08:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8d7857520556c93d38b1bfb13bd1f590241ddd2a",
"body": "…lamp, map phantom key (#67)\n\n* fix percentile clamping contracts: negative clamp + map phantom key\n\nTwo edge-case contract bugs in the percentile APIs (the class @dkropachev found in\nValueAtPercentilesSlice), making the three variants consistent:\n\n- ValueAtPercentile clamped only >100, not <0. A ne\n[…]\ne histogram stay within [Min, Max] for both APIs.\n\n* Revert \"percentile: reach at least the first recorded entry (0th percentile == min)\"\n\nThis reverts commit 1b895ea211776e82d360c0ca050922311814c95d.",
"is_bot": false,
"headline": "fix percentile edge-case contracts: empty histogram (#60), negative c…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-04T08:08:24Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b00adb186cf858069a092aa39e0a4608b6324f72",
"body": "…eck elision (+5%) (#64)\n\n* perf: blocked prefix-sum skip-scan + write-path bounds-check elision\n\nRead path (getValueFromIdxUpToCount): sum counts[] in blocks of 8 with independent\naccumulators (no loop-carried dependency, one branch per block), skipping whole\nblocks that cannot reach the target and\n[…]\nto 0 when building the targets, and take the lowest-equivalent branch for any\npercentile <= 0. Adds a regression test over New(100, ...) asserting negative/zero\npercentiles equal ValueAtPercentile(0).",
"is_bot": false,
"headline": "perf: blocked prefix-sum skip-scan (+50% read) + write-path bounds-ch…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-03T12:58:53Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "ebe230317761c0d1fbd1b2e41a2f531f6827173b",
"body": "…cks (#62)\n\ngetValueFromIdxUpToCount (ValueAtPercentile) and the ValueAtPercentiles batch scan iterated\nwith an int index and read counts[idx], which Go bounds-checks every element. Iterating with\n'for idx, c := range h.counts' provides the element directly (len==countsLen), so the compiler\nelides the per-element bounds check on the hot prefix-sum loop. Results unchanged.\n\nCo-authored-by: Filipe Oliveira <oly@codeperf.io>",
"is_bot": false,
"headline": "perf: range over counts[] in the percentile scans to elide bounds che…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-03T09:03:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b5dd0d3cca2b2619b2dd9280fef363d73e97eb7",
"body": "…rder (#63)\n\nAdd a batch percentile query that writes to a []int64 in input order instead of allocating a\nmap[float64]int64 and hashing float64 keys per call. Resolves in ascending target order via a\npermutation (input order + duplicates preserved), tight hoisted-target range-loop scan, no input\nmutation. Same values as ValueAtPercentiles/ValueAtPercentile (verified across unsorted/dup/empty/\np0/p100).\n\nCo-authored-by: Filipe Oliveira <oly@codeperf.io>",
"is_bot": false,
"headline": "feat: ValueAtPercentilesSlice — []int64 batch (no map alloc), input o…",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-03T09:03:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "22a1b78b53d2dff44368b7bca4d11c59f58e8b57",
"body": "* perf: flat counts[] scan in getValueFromIdxUpToCount (ValueAtPercentile)\n\ngetValueFromIdxUpToCount walked the logical bucket/sub-bucket structure, recomputing\nsubBucketIdx/bucketIdx and the value on every element. The walk visits exactly the flat\ncounts[] indices in order, so replace it with a tig\n[…]\n loop in getValueFromIdxUpToCount that the flat-scan\nchange replaced; leaving it defined trips golangci-lint's unused (U1000) and reds CI.\n\n---------\n\nCo-authored-by: Filipe Oliveira <oly@codeperf.io>",
"is_bot": false,
"headline": "perf: flat counts[] scan in ValueAtPercentile (+133%) (#57)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-02T19:59:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bbda977987daf8ea6f7d1294cdc6231df5676d18",
"body": "* perf: flat counts[] scan in getValueFromIdxUpToCount (ValueAtPercentile)\n\ngetValueFromIdxUpToCount walked the logical bucket/sub-bucket structure, recomputing\nsubBucketIdx/bucketIdx and the value on every element. The walk visits exactly the flat\ncounts[] indices in order, so replace it with a tig\n[…]\nead of the documented 0's. Restore the contract with an explicit totalCount==0 guard;\nadd a regression test with lowestDiscernibleValue>1.\n\n---------\n\nCo-authored-by: Filipe Oliveira <oly@codeperf.io>",
"is_bot": false,
"headline": "perf: flat counts[] scan in ValueAtPercentiles (batch, +303%) (#58)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-02T19:59:04Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "37ca6172913d82d58c1fa449bcd3ca3d81080117",
"body": "Replace 'idx < 0 || int(h.countsLen) <= idx' with 'uint(idx) >= uint(h.countsLen)':\na negative idx wraps to a large unsigned value and is caught by the same bound, so one\nunsigned comparison replaces two signed ones on the record hot path. (Port of the C\nHdrHistogram_c #136 change.)\n\nCo-authored-by: Filipe Oliveira <oly@codeperf.io>",
"is_bot": false,
"headline": "perf: single unsigned bounds check in RecordValues (#59)",
"author_name": "Filipe Oliveira (Redis)",
"author_login": "fcostaoliveira",
"committed_at": "2026-07-02T13:27:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2087ec37ab3239ce1edfb9c2a1282fd2be259ab",
"body": "Co-authored-by: Ben Morgan <neembi@gmail.com>",
"is_bot": false,
"headline": "Make it harder for Mean() and StdDev() to overflow (#21)",
"author_name": "Ben Morgan",
"author_login": "cassava",
"committed_at": "2026-07-02T12:27:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7de3c9914a362c151894c1f83023a0e6e7c4f6ac",
"body": "* Fix HistogramLogWriter.OutputStartTime\n\nIt should multiply it by 1e6 not 1e9\n\n* Only triggering fmt when needed\n\n* reverted make changes\n\n* Only triggering fmt when needed\n\n---------\n\nCo-authored-by: fcostaoliveira <filipe@redis.com>",
"is_bot": false,
"headline": "Fix HistogramLogWriter.OutputStartTime nanosecond conversion (#54)",
"author_name": "Dmitry Kropachev",
"author_login": "dkropachev",
"committed_at": "2025-11-09T23:49:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "375461c446662ce3e571c7a54dc16f4d272b5f79",
"body": "* Update golang to 1.23\n\n* Download concrete version of golangci\n\ngolangci is hard to compile now.\nLet's just download it and use concrete version of it.\n\n* Address linter complaints\n\n* Updated both lint and fmt targets to use the full path to golangci-lint\n\n* explicit toolchain go1.23.0\n\n* use Download concrete version of golangci codeblock from dkropachev. fixed identiefied missing linter issue\n\n---------\n\nCo-authored-by: fcostaoliveira <filipe@redis.com>",
"is_bot": false,
"headline": "Update to Go 1.23, modernize dependencies, and fix linter issues (#55)",
"author_name": "Dmitry Kropachev",
"author_login": "dkropachev",
"committed_at": "2025-11-09T23:30:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c035224a1ba7982e1a7ea1469f35bc31d47514af",
"body": "Fixes two bugs in the histogram log writer's timestamp handling:\n\n Incorrect time unit: Start time and interval were written in milliseconds instead of seconds\n Wrong field: End time was written instead of interval duration\n\nThis PR adds test coverage to verify that StartTimeMs and EndTimeMs are correctly preserved during histogram serialization and deserialization.\n\n\nCo-authored-by: fcostaoliveira <filipe@redis.com>",
"is_bot": false,
"headline": "[fix] Log writer writes time wrong (#51)",
"author_name": "Dmitry Kropachev",
"author_login": "dkropachev",
"committed_at": "2025-11-09T22:26:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "474b196fd6dc24f6bc303ab8de9cba97a0112d58",
"body": "Update Go version from 1.14 to 1.21 and fix CI build failures caused by\nincompatible golangci-lint version requirements.\n\nChanges:\n\n Update go.mod to Go 1.21 (from 1.14)\n Pin golangci-lint to v1.59.0 (compatible with Go 1.21)\n Replace deprecated io/ioutil with io and os packages (Go 1.19+ r\n[…]\nng code\n\nGithub actions version change:\n\n actions/setup-go -> v6\n actions/checkout -> v5\n codecov/codecov-action -> v4\n release-drafter/release-drafter -> v5\n github/codeql-action -> v4",
"is_bot": false,
"headline": "Modernize Go toolchain and CI GH actions (#53)",
"author_name": "Dmitry Kropachev",
"author_login": "dkropachev",
"committed_at": "2025-11-09T22:19:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "494271c4c016b36c8cee88480288f33b419cf7b0",
"body": "`ValueAtPercentile()` 4.5X on-cpu time optimization: remove expensive condition checks and re-use computation on hotpaths",
"is_bot": false,
"headline": "Merge pull request #48 from HdrHistogram/percentile.opt",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2021-08-24T17:39:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dc009253bad990ab770ef8994ac209d23878588",
"body": "… getValueFromIdxUpToCount()",
"is_bot": false,
"headline": "[fix] Fixes per PR review: avoid initializing vars to it's default on…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-24T15:07:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0ace6b51c103cda8709b9776a4e96b8d806b088",
"body": null,
"is_bot": false,
"headline": "[fix] Fixed linter errors",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-22T23:18:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e01ef158f91b0bcaa777c3a5d733f601cc7c7a3",
"body": "…alueAtPercentile",
"is_bot": false,
"headline": "[fix] Avoid extremelly large slices of results on BenchmarkHistogramV…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-22T22:26:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0e392b1e231cfe075557671237fea18d8fbed85",
"body": "…omIdxUpToCount()",
"is_bot": false,
"headline": "[opt] moved optimization code for ValueAtPercentile() into getValueFr…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-22T22:04:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cff480e6af3c5fce872a39cb5e2bfadbc6cbe1e1",
"body": null,
"is_bot": false,
"headline": "[add] using getBucketBaseIdx to optimize further ValueAtPercentile",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-22T00:59:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "716f741fbbea4954335ef3654e7d602135bc6529",
"body": null,
"is_bot": false,
"headline": "[wip] iterative ValueAtPercentile",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-22T00:41:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bda2d6b6efbcf3b0f41d0a93d2277a463b61617",
"body": null,
"is_bot": false,
"headline": "[wip] WIP on percentile calculation",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-22T00:12:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a2c58a8aa49eb4678865f928a7e6e8b6b5aadc9",
"body": "Create codeql-analysis.yml",
"is_bot": false,
"headline": "Merge pull request #47 from HdrHistogram/codeql",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2021-08-20T15:09:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82c7c9c11096e312330c84f1426dcde64347c06c",
"body": null,
"is_bot": false,
"headline": "Create codeql-analysis.yml",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2021-08-19T22:08:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa0332a00ec13b10b21c07328f45ebd57fcd5f54",
"body": "[perf] optimize ValueAtPercentile(s): introduce nextCountAtIdx() and reduce by 25.6% the on-cpu usage",
"is_bot": false,
"headline": "Merge pull request #46 from HdrHistogram/cpu.optimize.nextCountAtIdx",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2021-08-16T07:20:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "164c49c9052f01d5e8e509c2b1dbe9945817610f",
"body": "…only update the iterator highestEquivalentValue when required in order to reduce wastfull cpu usage",
"is_bot": false,
"headline": "[perf] optimize ValueAtPercentile(s): introduce nextCountAtIdx() and …",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-08-15T17:33:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "35c7773a578afd4d829aa360ca81afded5c11112",
"body": "Optimized nextNonEquivalentValue(), and consequently ValueAtPercentile, ValueAtPercentiles...",
"is_bot": false,
"headline": "Merge pull request #45 from HdrHistogram/optimizations.for.percentile",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2021-03-05T17:31:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6577d04e2d1aca01f609309c690f795531e0e66c",
"body": "…centile, ValueAtPercentiles...",
"is_bot": false,
"headline": "[add] Optimized nextNonEquivalentValue(), and consequently ValueAtPer…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-02-13T23:09:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "542356bde5dd3d8306342d051e0afc31d5288edb",
"body": null,
"is_bot": false,
"headline": "[fix] Fixes per PR review: added out of range percentiles",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-02-08T20:09:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a46d827c2e22faa4c8a316c67174e4ad90abb5d1",
"body": "…given by the same counts array position",
"is_bot": false,
"headline": "[fix] Fixed ValueAtPercentiles() computation of percentiles that are …",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-02-07T13:58:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dbdd15f52e516a670fbdd8302c3a2aecec609325",
"body": "…ntiles()",
"is_bot": false,
"headline": "[fix] Fixes per PR review: added ValueAtPercentile() and ValueAtPerce…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-02-06T22:54:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1ebc3c3fd53ba0b409d4995a4db7656f74f405e7",
"body": "…n Go",
"is_bot": false,
"headline": "[fix] Fixed testing to only used the two major releases of go still i…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-01-31T21:40:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "789681ed7d5e951b241682fcedf1fad98edc98cb",
"body": null,
"is_bot": false,
"headline": "[fix] setting go version to 1.11 in go.mod",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-01-31T21:21:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "607206b9711a07aa15478af9042687dd1df3be40",
"body": "…ntiles()",
"is_bot": false,
"headline": "[fix] Fixes per PR review: renamed ValueAtPercentiles() to ValueAtQua…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-01-31T20:48:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34bdf9c20dc67847ab3271c4e73c3ad278a3cfbe",
"body": "… to ValueAtQuantile()",
"is_bot": false,
"headline": "[add] Added ValueAtPercentiles() as an optimization to multiple calls…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2021-01-31T14:09:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c968ba715dcd0cedeb8e9650662acc2fe5317db7",
"body": "… coverage badge on Readme. (#43)",
"is_bot": false,
"headline": "[add] Triggering coverage test on push/pull_request to repo. Included…",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-11-24T22:12:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1dc8842b4cdec087802596e0a47013a564bf6730",
"body": "…nt() (#39)\n\n* [add] Extended docs regarding ValueAtQuantile() and added ValuesAreEquivalent()\r\n\r\n* [add] made New() documentation clearer\r\n\r\n* [fix] Fixes per PR review on New()\r\n\r\n* [fix] Fixed New() not to panic on numberOfSignificantValueDigits < 1 || numberOfSignificantValueDigits > 5. Adding linter check to CI\r\n\r\n* [add] Added whitebox testing for hdr.go ( specifically for New() numberOfSignificantValueDigits limits ).",
"is_bot": false,
"headline": "Extended docs regarding ValueAtQuantile() and added ValuesAreEquivale…",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-11-24T15:52:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6663c35e929d61035c6994625c819ae80c21e2b0",
"body": "…on.error\n\nFixed TestMean and TestStdDev to follow expected max value quantization error given sigfigs",
"is_bot": false,
"headline": "Merge pull request #40 from HdrHistogram/tests.mean.stddev.quantizati…",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-11-23T09:06:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1abae64570567a09e34a8b129910a8e7b2499929",
"body": "Added release drafter automation",
"is_bot": false,
"headline": "Merge pull request #41 from HdrHistogram/release.drafter",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-11-23T09:05:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4142b433fe8e4bebe6029d66cb09968e7d3f6c2b",
"body": null,
"is_bot": false,
"headline": "[add] Added release drafter automation",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2020-10-25T00:40:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d5c300a25eb8f4cfef1aacc1e24949612cd87e57",
"body": "…tization error given sigfigs",
"is_bot": false,
"headline": "[fix] Fixed TestMean and TestStdDev to follow expected max value quan…",
"author_name": "filipecosta90",
"author_login": "filipecosta90",
"committed_at": "2020-10-25T00:30:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20a94f2ac2a0159331e1e61a0e0967208bbbcb32",
"body": "* [add] V2 HdrHistogram Log format (v1.3)\r\n\r\n* [fix] Added nolint to the examples\r\n\r\n* [fix] Fixed error message typo on minimum length on bytes for 7,8,and 9 bytelen\r\n\r\n* [fix] Fixed ExampleHistogram_PercentilesPrint",
"is_bot": false,
"headline": "V2 HdrHistogram Log format (v1.3) (#35)",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-10-17T14:47:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aada4ab574eab88903812f25a3b45d3dcfe7d526",
"body": "* [wip] Wip on enabling output textual percentile distribution\r\n\r\n* [add] Added example for printing of the percentile output format\r\n\r\n* [add] printing +Inf within Inverted Percentile in the same format as the Java implementation",
"is_bot": false,
"headline": "Enable percentile output format (#38)",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-10-06T15:54:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "311d303ffd48e5202a1fff20f9c1dc55bac79fd9",
"body": "* [wip] Wip on V2 compressed encoding. Currently with differences on decode->encode histograms from other implementations\r\n\r\n* [wip] Wip on V2 compressed encoding. Currently with differences on decode->encode histograms from other implementations\r\n\r\n* [fix] Fix per PR review signature of getIntegerToDoubleValueConversionRatio() float64\r\n\r\n* [add] Added Dump Load Merge test",
"is_bot": false,
"headline": "Compressed histogram V2 support (#31)",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-09-27T07:06:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "185cb5ac2df8b65cc8e9452d62728d4c6b1c36f0",
"body": "…structions, and fix instructions (#34)\n\n* [add] Updated Readme with the proper badges, documentation link, and install instructions\r\n\r\n* [add] Made reference to issue and fix on documentation\r\n\r\n* [fix] Fixes per PR review. Updated doc links",
"is_bot": false,
"headline": "Updated Readme with the proper badges, documentation link, install in…",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-09-22T18:37:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14f69f7a3a50cebea0aa76859e1085ae83083d07",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Alec",
"author_login": "ahothan",
"committed_at": "2020-09-22T15:23:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a18d65c11611da6b1859cf92a53c2f80d30d88f",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Alec",
"author_login": "ahothan",
"committed_at": "2020-09-22T15:22:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dac23c8dac1e25265163f55c2a810023dce53da",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Alec",
"author_login": "ahothan",
"committed_at": "2020-09-19T14:59:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb05e18a12a6cbbdc359532a2f3c93d32f913404",
"body": "…ds. Testing go version 1.11 to 1.15 (#29)\n\n* Moved histogram reference to HdrHistogram/hdrhistogram-go. Make usage of Go modules. Testing for go version 1.11 to 1.15\r\n\r\n* [fix] Removed fmt check for now on CI",
"is_bot": false,
"headline": "Rely on Go Modules to ensure package dependencies and replicable buil…",
"author_name": "filipe oliveira",
"author_login": "filipecosta90",
"committed_at": "2020-09-19T14:54:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a0bb77429bd3a61596f5e8a3172445844342120",
"body": "Make a copy in Histogram export",
"is_bot": false,
"headline": "Merge pull request #22 from tschottdorf/race",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2016-10-10T02:54:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "60d1dd1881122f2cab5a03e8bcb6f97477d17753",
"body": "The caller expects the snapshot to be their own, but the previous\ncode was passing out the internal state, which meant all uses of\nthe method were inherently racy.",
"is_bot": false,
"headline": "Make a copy in Histogram export",
"author_name": "Tobias Schottdorf",
"author_login": "tbg",
"committed_at": "2016-10-07T13:45:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8ad88b59a584afeee9d334eff879b104439117b",
"body": "Closes #18.",
"is_bot": false,
"headline": "Update Travis config.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2016-04-25T23:16:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "360314142131c2043d1346f197f86435b287c6da",
"body": "Expose various constants used to create the histogram",
"is_bot": false,
"headline": "Merge pull request #17 from sean-/expose-ctor-constants",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2016-03-25T22:32:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5ab7de93099981e61bc9a0653c17a85594cd395d",
"body": "When embedding Histogram, it is useful to expose the constants used to create the histogram so that a histogram manager does not have to store duplicate copies of these values.",
"is_bot": false,
"headline": "Expose various constants used to create the histogram",
"author_name": "Sean Chittenden",
"author_login": "sean-",
"committed_at": "2016-03-25T18:33:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e88be87d51429689cef99043a54150d733265cd7",
"body": "Added Test for Distribution",
"is_bot": false,
"headline": "Merge pull request #16 from adrianco/master",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2016-02-14T17:16:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c1508303bac894ea8eaff004b234ca9d3a13a501",
"body": "Catchup",
"is_bot": false,
"headline": "Update to master",
"author_name": "Adrian Cockcroft",
"author_login": "adrianco",
"committed_at": "2016-02-13T16:01:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e41cc93350bb6167c59cb3d69269693007ffa78",
"body": "# Conflicts:\n#\thdr_test.go",
"is_bot": false,
"headline": "Fixed conflict",
"author_name": "Adrian Cockcroft",
"author_login": "adrianco",
"committed_at": "2016-02-13T15:57:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2637a316b0b3797dfc3cb99273e1e954ad23f4ac",
"body": "Line wrap bug was introduced in last update.",
"is_bot": false,
"headline": "Fixed line wrap",
"author_name": "Adrian Cockcroft",
"author_login": "adrianco",
"committed_at": "2016-02-01T01:21:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02e370cd169d325fa84555c6476951259b418c41",
"body": "Check that Distribution dump has correct length and content.",
"is_bot": false,
"headline": "Added Test for Distribution",
"author_name": "Adrian Cockcroft",
"author_login": "adrianco",
"committed_at": "2016-01-31T21:39:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2da969979c0dd5cda296463b05293e775bc3b5be",
"body": "Max bugfix",
"is_bot": false,
"headline": "Merge pull request #15 from adrianco/master",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2016-01-31T19:50:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "110fb3762de3a01850603d7d4f3505da8280f586",
"body": "Since max value in histogram is 999999 it’s wrong to return lower bound\nof bucket=999936 as max value estimate, 1000447 is upper bound of\nbucket and is greater than 999999.",
"is_bot": false,
"headline": "Fixed test of max",
"author_name": "Adrian Cockcroft",
"author_login": "adrianco",
"committed_at": "2016-01-31T19:43:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da946d2b9588f5e72ef97c6359d530df8cac50b1",
"body": "Max needs to return the upper bound of the top bucket to be more than\nthe actual maximum value seen.",
"is_bot": false,
"headline": "Max bugfix",
"author_name": "Adrian Cockcroft",
"author_login": "adrianco",
"committed_at": "2016-01-31T19:31:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "954f16e8b9ef0e5d5189456aa4c1202758e04f17",
"body": "prevent Mean and StdDev from being NaN",
"is_bot": false,
"headline": "Merge pull request #12 from toffaletti/master",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2015-07-08T13:40:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3dc00d20e1c7a2e2aca019e52e4a15117c82810e",
"body": null,
"is_bot": false,
"headline": "prevent Mean and StdDev from being NaN",
"author_name": "Jason Toffaletti",
"author_login": "toffaletti",
"committed_at": "2015-07-08T07:24:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5fd85ec0b4e2dd5d4158d257d943f2e586d86b62",
"body": "Add an exported TotalCount method to Histogram",
"is_bot": false,
"headline": "Merge pull request #10 from jjolma/export-total-count",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2015-04-10T19:14:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6dc5999fbe3f61e72563be9a09a5cc2f840ed2b",
"body": null,
"is_bot": false,
"headline": "Add an exported TotalCount method to Histogram",
"author_name": "Jeff Jolma",
"author_login": "jjolma",
"committed_at": "2015-04-10T18:48:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fd3681c2262ca0935722dbf8c536d5599e629aef",
"body": "Fix rounding to be consistent with upstream",
"is_bot": false,
"headline": "Merge pull request #7 from zenazn/fix-rounding",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2015-02-23T01:27:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb65d9ab2af7500fa54f7006359b4a9152bb6a30",
"body": "Use Go's built-in math whenever possible",
"is_bot": false,
"headline": "Merge pull request #6 from zenazn/simplify-math",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2015-02-23T01:27:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "51c79a5332fa7b2bb016838b51bbfc0572602bdc",
"body": "The upstream (Java) implementation casts to long in a few places, which\ntruncates floating point numbers. This logic was missing from this port.",
"is_bot": false,
"headline": "Fix rounding to be consistent with upstream",
"author_name": "Carl Jackson",
"author_login": "zenazn",
"committed_at": "2015-02-23T00:00:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "02ec1263b78f0d2ad672253526bf165aa531a52f",
"body": "Go's math package includes functions like Pow10 and Log2, which we may\nas well make use of.",
"is_bot": false,
"headline": "Use Go's built-in math whenever possible",
"author_name": "Carl Jackson",
"author_login": "zenazn",
"committed_at": "2015-02-22T23:46:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9208b142303c12d8899bae836fd524ac9338b4fd",
"body": "Export/Import Histograms",
"is_bot": false,
"headline": "Merge pull request #5 from tylertreat/export_import",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2015-01-04T20:46:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13633c47d32e0b1cc087b85f26b8e10e7ea95ed5",
"body": null,
"is_bot": false,
"headline": "Change sigfigs back to int in New",
"author_name": "Tyler Treat",
"author_login": "tylertreat",
"committed_at": "2015-01-04T20:13:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8225283e8d8e1228031decb8bd776f361533d2c",
"body": null,
"is_bot": false,
"headline": "Update Snapshot docstring.",
"author_name": "Tyler Treat",
"author_login": "tylertreat",
"committed_at": "2014-12-21T01:44:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76e0261e43c1385dba211f291bcec39f2440f658",
"body": null,
"is_bot": false,
"headline": "Add unit tests around Import/Export and Equals.",
"author_name": "Tyler Treat",
"author_login": "tylertreat",
"committed_at": "2014-12-21T01:41:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6d7ced4b70e891fca6a5c91e2336c2d331d563dc",
"body": "This is useful for serializing Histograms and then reconstructing them.\nThis also adds an Equals method for comparing Histograms for equality.",
"is_bot": false,
"headline": "Add Snapshot struct and corresponding Export/Import functions.",
"author_name": "Tyler Treat",
"author_login": "tylertreat",
"committed_at": "2014-12-21T01:40:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "328497f858cd7cf2cdd51962f6f31d16498d849d",
"body": "The significantFigures field is an int64, so change the signature of New\nto reflect this.",
"is_bot": false,
"headline": "Change sigfigs type to int64 in New",
"author_name": "Tyler Treat",
"author_login": "tylertreat",
"committed_at": "2014-12-21T01:38:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3989c9c70509e52d10cd2b76e254fb570aa4a348",
"body": "Closes #4.",
"is_bot": false,
"headline": "Added Bracket.ValueAt.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-11-18T04:59:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d007420bedfa90a5c8942987a3dd4b22ee5247ba",
"body": null,
"is_bot": false,
"headline": "Fix smallestUntrackableValue.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-11-12T15:34:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3463dab1f06cd04e5496153c3af5bc6d3ba3526d",
"body": "Closes #3. Again. :)",
"is_bot": false,
"headline": "Fix overflow in subBucketMask.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-11-12T15:11:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "409a6ca7ae58b46ee2925cc83b1f8e4efa7bee7a",
"body": "Fixes #3.",
"is_bot": false,
"headline": "Fix overflow at high sigfigs.",
"author_name": "Coda Hale",
"author_login": "stripecodahale",
"committed_at": "2014-11-11T19:50:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0894c996e42b61ed6d043263b8dea7cf3e8b688d",
"body": null,
"is_bot": false,
"headline": "Clarify the usage of ValueAtQuantile.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-11-11T03:44:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9ed345b932ad88826977c3c127ea45a25e9ffffc",
"body": "Fixes #2.",
"is_bot": false,
"headline": "Fix underflow on unit magnitude.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-11-03T01:27:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2235d826b63c4375dbdf45d5d9a8699a5b6970e",
"body": "No real need for a subpackage, and the constructors make more sense now.",
"is_bot": false,
"headline": "Move to the hdrhistogram package.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-10-03T03:37:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72d50f666622bcd0b23c57ca92aad8fab197fa20",
"body": "Tip appears to be busted.",
"is_bot": false,
"headline": "Only test on Go 1.3.3.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-10-03T03:30:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "68cc554f9c0a75b780d3dee4dc4afd45ae75660d",
"body": null,
"is_bot": false,
"headline": "Clarify the RecordCorrectedValue docs.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-29T17:29:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dd2d7bbf7faab7ce6fbc98bec6e23649f90da21e",
"body": null,
"is_bot": false,
"headline": "Added RecordCorrectedValue.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-29T16:42:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c62eaac619fc1844e364c90fb7f8f530f7879e1",
"body": null,
"is_bot": false,
"headline": "Tighten up the tests.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-16T17:28:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5e31d9f5145a1bd10c02f04a0fa1322f20dc1ec3",
"body": null,
"is_bot": false,
"headline": "Added ByteSize.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-16T17:10:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4e7e1a5089346e8baa0c0c801c0a69fd030c35fc",
"body": null,
"is_bot": false,
"headline": "Add a benchmark for histogram creation.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-15T16:19:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0486cf280b409e6db8fcee422732c63f9b5d0d2c",
"body": null,
"is_bot": false,
"headline": "Added WindowedHistogram.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-15T16:06:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c861ea9549e21dcb8ebaf6647a66ea41d89d5ad",
"body": null,
"is_bot": false,
"headline": "Go ahead and drop the asserts.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-15T15:53:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "914c2573d725fe3a95e12f00844017eac840e8bc",
"body": "This just panics when you pass in the wrong sigfigs.",
"is_bot": false,
"headline": "Simplify NewHistogram.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-15T03:34:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4ab005becef6d2096b3dd97eca03b3141b5d3310",
"body": null,
"is_bot": false,
"headline": "Fix merging.",
"author_name": "Coda Hale",
"author_login": "codahale",
"committed_at": "2014-07-15T03:29:12Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 7,
"commits_last_year": 21,
"latest_release_at": "2026-07-07T13:04:25Z",
"latest_release_tag": "v1.3.0",
"releases_from_tags": false,
"days_since_last_push": 17,
"active_weeks_last_year": 3,
"days_since_latest_release": 17,
"mean_days_between_releases": 348.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/HdrHistogram/hdrhistogram-go",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/HdrHistogram/hdrhistogram-go",
"is_deprecated": false,
"latest_version": "v1.3.0",
"repository_url": "https://github.com/HdrHistogram/hdrhistogram-go",
"versions_count": 8,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-04T12:34:05Z",
"latest_version_yanked": null,
"days_since_latest_publish": 20
}
]
},
"popularity": {
"forks": 66,
"stars": 467,
"watchers": 14,
"fork_history": {
"days": [
{
"date": "2014-09-16",
"count": 1
},
{
"date": "2014-11-11",
"count": 1
},
{
"date": "2014-12-15",
"count": 1
},
{
"date": "2014-12-20",
"count": 1
},
{
"date": "2015-01-12",
"count": 1
},
{
"date": "2015-02-12",
"count": 1
},
{
"date": "2015-02-22",
"count": 1
},
{
"date": "2015-03-09",
"count": 1
},
{
"date": "2015-03-13",
"count": 1
},
{
"date": "2015-04-10",
"count": 1
},
{
"date": "2015-07-08",
"count": 1
},
{
"date": "2015-10-04",
"count": 1
},
{
"date": "2015-10-06",
"count": 1
},
{
"date": "2015-11-10",
"count": 1
},
{
"date": "2015-12-25",
"count": 1
},
{
"date": "2016-03-03",
"count": 1
},
{
"date": "2016-03-19",
"count": 1
},
{
"date": "2016-03-25",
"count": 1
},
{
"date": "2016-04-11",
"count": 1
},
{
"date": "2016-05-06",
"count": 1
},
{
"date": "2016-07-28",
"count": 1
},
{
"date": "2016-08-03",
"count": 1
},
{
"date": "2016-08-24",
"count": 1
},
{
"date": "2016-10-07",
"count": 1
},
{
"date": "2016-10-13",
"count": 1
},
{
"date": "2017-01-28",
"count": 1
},
{
"date": "2017-03-15",
"count": 1
},
{
"date": "2017-05-27",
"count": 1
},
{
"date": "2017-06-30",
"count": 1
},
{
"date": "2018-02-01",
"count": 1
},
{
"date": "2018-02-21",
"count": 1
},
{
"date": "2018-03-22",
"count": 1
},
{
"date": "2018-04-12",
"count": 1
},
{
"date": "2018-05-09",
"count": 1
},
{
"date": "2018-05-29",
"count": 1
},
{
"date": "2018-10-10",
"count": 1
},
{
"date": "2018-10-23",
"count": 1
},
{
"date": "2018-11-28",
"count": 1
},
{
"date": "2018-12-27",
"count": 1
},
{
"date": "2019-06-12",
"count": 1
},
{
"date": "2019-06-27",
"count": 1
},
{
"date": "2019-07-25",
"count": 1
},
{
"date": "2019-10-03",
"count": 1
},
{
"date": "2019-10-17",
"count": 1
},
{
"date": "2019-10-22",
"count": 1
},
{
"date": "2020-01-23",
"count": 1
},
{
"date": "2020-04-24",
"count": 1
},
{
"date": "2020-05-20",
"count": 1
},
{
"date": "2020-09-16",
"count": 1
},
{
"date": "2020-09-22",
"count": 1
},
{
"date": "2021-05-18",
"count": 1
},
{
"date": "2021-11-30",
"count": 1
},
{
"date": "2021-12-09",
"count": 1
},
{
"date": "2022-03-14",
"count": 1
},
{
"date": "2022-10-18",
"count": 1
},
{
"date": "2022-11-28",
"count": 1
},
{
"date": "2023-03-16",
"count": 1
},
{
"date": "2023-06-09",
"count": 1
},
{
"date": "2024-08-01",
"count": 1
},
{
"date": "2025-11-05",
"count": 1
},
{
"date": "2025-12-04",
"count": 1
},
{
"date": "2026-05-08",
"count": 1
},
{
"date": "2026-07-02",
"count": 1
}
],
"complete": true,
"collected": 63,
"total_forks": 66
},
"star_history": null,
"open_issues_and_prs": 7
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": true,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 32797,
"source_files_sampled": 22,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 9,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/google/go-cmp",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.7.0"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.1"
},
{
"name": "gonum.org/v1/gonum",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.16.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/google/go-cmp",
"direct": true,
"version": "0.7.0",
"ecosystem": "go"
},
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "1.11.1",
"ecosystem": "go"
},
{
"name": "gonum.org/v1/gonum",
"direct": true,
"version": "0.16.0",
"ecosystem": "go"
},
{
"name": "github.com/davecgh/go-spew",
"direct": false,
"version": "1.1.1",
"ecosystem": "go"
},
{
"name": "github.com/kr/pretty",
"direct": false,
"version": "0.3.1",
"ecosystem": "go"
},
{
"name": "github.com/pmezard/go-difflib",
"direct": false,
"version": "1.0.0",
"ecosystem": "go"
},
{
"name": "github.com/rogpeppe/go-internal",
"direct": false,
"version": "1.14.1",
"ecosystem": "go"
},
{
"name": "gopkg.in/check.v1",
"direct": false,
"version": "1.0.0-20201130134442-10cb98267c6c",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": false,
"version": "3.0.1",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 9,
"direct_count": 3,
"indirect_count": 6
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 44,
"open_issues": 6,
"closed_ratio": 0.769,
"closed_issues": 20,
"closed_unmerged_prs": 3
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "codahale",
"commits": 32,
"avatar_url": "https://avatars.githubusercontent.com/u/207?v=4"
},
{
"type": "User",
"login": "filipecosta90",
"commits": 32,
"avatar_url": "https://avatars.githubusercontent.com/u/5832149?v=4"
},
{
"type": "User",
"login": "fcostaoliveira",
"commits": 16,
"avatar_url": "https://avatars.githubusercontent.com/u/52153106?v=4"
},
{
"type": "User",
"login": "adrianco",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/111700?v=4"
},
{
"type": "User",
"login": "tylertreat",
"commits": 5,
"avatar_url": "https://avatars.githubusercontent.com/u/552817?v=4"
},
{
"type": "User",
"login": "dkropachev",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/40304587?v=4"
},
{
"type": "User",
"login": "ahothan",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/4954645?v=4"
},
{
"type": "User",
"login": "zenazn",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/12960?v=4"
},
{
"type": "User",
"login": "cassava",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/448451?v=4"
},
{
"type": "User",
"login": "stripecodahale",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/7906011?v=4"
}
],
"contributors_sampled": 14,
"top_contributor_share": 0.302
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"cflite-pr.yml",
"codeql-analysis.yml",
"coverage.yml",
"fuzz-smoke.yml",
"release-drafter.yml",
"unit-tests.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 9,
"reason": "binaries present in source code",
"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": 8,
"reason": "20 out of 23 merged PRs checked by a CI test -- score normalized to 8",
"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": 10,
"reason": "all changesets reviewed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 9 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": 0,
"reason": "no 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": 10,
"reason": "17 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"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": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 8,
"reason": "SAST tool detected but not run on all commits",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not 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": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "0500d8c71ec849a63147b0703f7932fbe04b79d7",
"ran_at": "2026-07-25T07:52:08Z",
"aggregate_score": 6,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": true,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-24T00:55:07Z",
"oldest_open_prs": [
{
"number": 23,
"created_at": "2016-10-16T21:36:05Z",
"last_comment_at": "2026-07-03T03:47:14Z",
"last_comment_author": "dkropachev"
}
],
"last_merged_pr_at": "2026-07-04T12:34:06Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 24,
"created_at": "2016-10-16T22:01:58Z",
"last_comment_at": "2016-10-17T22:31:14Z",
"last_comment_author": "okayzed"
},
{
"number": 28,
"created_at": "2017-11-02T19:03:44Z",
"last_comment_at": "2020-09-21T17:20:52Z",
"last_comment_author": "ahothan"
},
{
"number": 32,
"created_at": "2020-09-22T07:00:15Z",
"last_comment_at": "2021-08-16T00:49:11Z",
"last_comment_author": "filipecosta90"
},
{
"number": 36,
"created_at": "2020-09-29T14:14:21Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 49,
"created_at": "2021-11-09T18:20:34Z",
"last_comment_at": "2026-07-03T14:07:21Z",
"last_comment_author": "mdogan"
},
{
"number": 50,
"created_at": "2022-03-29T07:53:01Z",
"last_comment_at": "2022-04-01T02:42:14Z",
"last_comment_author": "zhuochengs"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/HdrHistogram/hdrhistogram-go",
"host": "github.com",
"name": "hdrhistogram-go",
"owner": "HdrHistogram"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"security": 68,
"vitality": 65,
"community": 58,
"governance": 76,
"engineering": 58
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 65,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 53,
"inputs": {
"commits_last_year": 21,
"human_commit_share": 1,
"days_since_last_push": 17,
"active_weeks_last_year": 3
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 17 days ago",
"points": 28.8,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 17
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "3/52 weeks with commits",
"points": 2.1,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 3
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "21 commits in the last year",
"points": 12.1,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 21
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "17 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"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": 84,
"inputs": {
"releases_count": 7,
"latest_release_tag": "v1.3.0",
"releases_from_tags": false,
"days_since_latest_release": 17,
"mean_days_between_releases": 348.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "7 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 7
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 17 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 17
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~348.1 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 348.1
}
}
],
"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": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 20,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 20 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 20
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 58,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"forks": 66,
"stars": 467,
"watchers": 14,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "467 stars",
"points": 43.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 467
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "66 forks",
"points": 15.1,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 66
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "14 watchers",
"points": 6.2,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 14
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"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": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"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": "good",
"name": "Sustainability & Governance",
"value": 76,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 14,
"top_contributor_share": 0.302
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 30% of commits",
"points": 15.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 30
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "14 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 14
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 9 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "excellent",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 87,
"inputs": {
"merged_prs": 44,
"open_issues": 6,
"closed_issues": 20,
"issue_closed_ratio": 0.769,
"closed_unmerged_prs": 3
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "77% of issues closed",
"points": 36,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 77
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "44/47 decided PRs merged",
"points": 35.8,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 44,
"decided": 47
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "all changesets reviewed",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"followers": 42,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "HdrHistogram",
"public_repos": 13,
"account_age_days": 4568
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "42 followers of HdrHistogram",
"points": 11.7,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 42,
"login": "HdrHistogram"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "13 public repos, account ~12 yr old",
"points": 20.3,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 13
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/HdrHistogram/hdrhistogram-go"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 20
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 20 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 20
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "8 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 8
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "moderate",
"name": "Engineering Quality",
"value": 58,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 64,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "6 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 6
}
}
],
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "20 out of 23 merged PRs checked by a CI test -- score normalized to 8",
"points": 16,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"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": 10,
"status": "met",
"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": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 68,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 6
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "binaries present in source code",
"points": 6.8,
"status": "partial",
"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": "20 out of 23 merged PRs checked by a CI test -- score normalized to 8",
"points": 2,
"status": "partial",
"details": [],
"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": "all changesets reviewed",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 9 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": "no update tool detected",
"points": 0,
"status": "missed",
"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": "17 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"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 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool detected but not run on all commits",
"points": 4,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"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": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 9 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 9
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 9,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 9,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"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": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"review_only_matches": 0,
"assessed_self_published_locations": 13
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"params": {}
}
],
"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": "moderate",
"name": "AI Readiness",
"value": 56,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "critical",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 27,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.51,
"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": "51 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 27.2,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 51,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": true,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "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": null,
"points": 0,
"status": "missed",
"details": [],
"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, lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Dockerfile, 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 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 32797,
"source_files_sampled": 22,
"oversized_source_files": 0
},
"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": "0/22 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 22,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"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": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-25T07:52:31.015606Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/h/HdrHistogram/hdrhistogram-go.svg",
"full_name": "HdrHistogram/hdrhistogram-go",
"license_state": "standard",
"license_spdx": "MIT"
}