forked from johejo/sora_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sora 2024.2 対応 #46
Merged
Merged
Sora 2024.2 対応 #46
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
リリース準備のためマージします |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
ListClusterNodes API のリクエストパラメータの変更により Sora 2024.2 では以前の expoter でクラスターの統計情報が取得不可になります
変更履歴
[CHANGE] クラスターメトリクスを収集する際の
ListClusterNodes
API の呼び出し時にリクエストパラメータの指定を削除するinclude_all_known_nodes
パラメータ廃止への対応です[ADD] SRTP 統計情報を追加する
sora_srtp_received_packets_total
sora_srtp_received_bytes_total
sora_srtp_sent_packets_total
sora_srtp_sent_bytes_total
sora_srtp_decrypted_packets_total
sora_srtp_decrypted_bytes_total
[ADD] SCTP 統計情報を追加する
sora_sctp_received_packets_total
sora_sctp_received_bytes_total
sora_sctp_sent_packets_total
sora_sctp_sent_bytes_total
[ADD] 無視されたウェブフック数の統計情報を追加する
state
ラベルにignored
で値を返すsora_event_webhook_total
sora_session_webhook_total
sora_stats_webhook_total
[UPDATE] 依存パッケージを更新する
This pull request includes significant changes to the metrics collection and reporting features of the project. The primary focus is on adding new metrics for SRTP and SCTP, updating existing webhook metrics, and removing unnecessary request parameters for cluster node metrics. Additionally, several dependencies have been updated.
Metrics Additions and Updates:
Added SRTP metrics to the
Collector
:sora_srtp_received_packets_total
sora_srtp_received_bytes_total
sora_srtp_sent_packets_total
sora_srtp_sent_bytes_total
sora_srtp_decrypted_packets_total
sora_srtp_decrypted_bytes_total
[1] [2] [3] [4] [5] [6] [7]Added SCTP metrics to the
Collector
:sora_sctp_received_packets_total
sora_sctp_received_bytes_total
sora_sctp_sent_packets_total
sora_sctp_sent_bytes_total
[1] [2] [3] [4] [5] [6] [7]Updated webhook metrics to include ignored webhooks:
sora_event_webhook_total
sora_session_webhook_total
sora_stats_webhook_total
[1] [2] [3] [4] [5]Codebase Simplification:
SoraListClusterNodesRequest
struct and associated request parameters for cluster node metrics collection [1] [2]Dependency Updates:
go.mod
:prometheus/client_golang
from 1.20.4 to 1.20.5prometheus/common
from 0.59.1 to 0.61.0prometheus/exporter-toolkit
from 0.13.0 to 0.13.2golang.org/x
packages [1] [2]