-
Notifications
You must be signed in to change notification settings - Fork 26
chore: upgrade blackbox exporter #1255
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
base: main
Are you sure you want to change the base?
Conversation
0597821
to
834ded3
Compare
The logging framework changed so we need to introduce an adapter. Fixes #1238
@@ -31,7 +31,7 @@ probe_ip_protocol 4 | |||
probe_ssl_earliest_cert_expiry 3.6e+09 | |||
# HELP probe_ssl_last_chain_info Contains SSL leaf certificate information | |||
# TYPE probe_ssl_last_chain_info gauge | |||
probe_ssl_last_chain_info{fingerprint_sha256="efc04a3afb86376b3a4db1b1d2f454afc60d192a573d78541836d83e4c849813",issuer="O=Acme Co",subject="O=Acme Co",subjectalternative="example.com"} 1 | |||
probe_ssl_last_chain_info{fingerprint_sha256="efc04a3afb86376b3a4db1b1d2f454afc60d192a573d78541836d83e4c849813",issuer="O=Acme Co",serialnumber="8a086bc8a70f8a416a58b6741a5cebec",subject="O=Acme Co",subjectalternative="example.com"} 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New label
# HELP probe_success Displays whether or not the probe was a success | ||
# TYPE probe_success gauge | ||
probe_success 1 | ||
# HELP probe_tls_cipher_info Returns the TLS cipher negotiated during handshake | ||
# TYPE probe_tls_cipher_info gauge | ||
probe_tls_cipher_info{cipher="TLS_AES_128_GCM_SHA256"} 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new metric
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 16 out of 30 changed files in this pull request and generated no comments.
Files not reviewed (14)
- go.mod: Language not supported
- internal/scraper/testdata/browser.txt: Language not supported
- internal/scraper/testdata/browser_basic.txt: Language not supported
- internal/scraper/testdata/dns.txt: Language not supported
- internal/scraper/testdata/dns_basic.txt: Language not supported
- internal/scraper/testdata/grpc.txt: Language not supported
- internal/scraper/testdata/grpc_basic.txt: Language not supported
- internal/scraper/testdata/grpc_ssl.txt: Language not supported
- internal/scraper/testdata/grpc_ssl_basic.txt: Language not supported
- internal/scraper/testdata/http.txt: Language not supported
- internal/scraper/testdata/http_basic.txt: Language not supported
- internal/scraper/testdata/http_ssl.txt: Language not supported
- internal/scraper/testdata/http_ssl_basic.txt: Language not supported
- internal/scraper/testdata/multihttp.txt: Language not supported
The logging framework changed so we need to introduce an adapter.
There are also a couple of metric changes (one new label and one new metric). So the test data was updated.
Fixes #1238