Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/raps/telemetry/jsonl_sink.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* - Easy to parse
* - Stream-friendly
*
* License: MIT (see LICENSE)
* License: Non-Commercial (see LICENSE)
*/

#include <cstdio>
Expand Down
2 changes: 1 addition & 1 deletion include/raps/telemetry/telemetry_event.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* RAPS Telemetry v2.3
* Deterministic, bounded, read-only observability events.
*
* License: MIT (see LICENSE)
* License: Non-Commercial (see LICENSE)
*/

#include <cstdint>
Expand Down
2 changes: 1 addition & 1 deletion include/raps/telemetry/telemetry_logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* - No allocations in emit() hot path
* - Best-effort ordering via seq counter
*
* License: MIT (see LICENSE)
* License: Non-Commercial (see LICENSE)
*/

#include <atomic>
Expand Down
2 changes: 1 addition & 1 deletion include/raps/telemetry/telemetry_metadata.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* - Failure to write is acceptable
* - No blocking in control paths
*
* License: MIT (see LICENSE)
* License: Non-Commercial (see LICENSE)
*/

#include <cstdio>
Expand Down
2 changes: 1 addition & 1 deletion include/raps/telemetry/telemetry_ring_buffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* - minimal contention
* - acceptable ordering (seq numbers)
*
* License: MIT (see LICENSE)
* License: Non-Commercial (see LICENSE)
*/

#include <atomic>
Expand Down
2 changes: 1 addition & 1 deletion include/raps/telemetry/telemetry_run_directory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* data/telemetry/runs/run_YYYY-MM-DDTHH-MM-SSZ/
* data/telemetry/runs/latest -> run_YYYY-MM-DDTHH-MM-SSZ
*
* License: MIT
* License: Non-Commercial (see LICENSE)
*/

#include <string>
Expand Down
2 changes: 1 addition & 1 deletion include/raps/telemetry/telemetry_sink.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* Telemetry sink interface: keeps the core logger decoupled from export mechanisms.
*
* License: MIT (see LICENSE)
* License: Non-Commercial (see LICENSE)
*/
Comment on lines 3 to 6
Copy link

Copilot AI Mar 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title suggests the LICENSE file was updated, but this PR only changes per-file header comments. Please either update the PR title/description to reflect that this is a header comment consistency change, or include the intended LICENSE file modifications in this PR.

Copilot uses AI. Check for mistakes.

#include "telemetry_event.hpp"
Expand Down
Loading