Skip to content

Commit 9293148

Browse files
SuperQPhilldomd
authored andcommitted
Merge branch 'main' into feature/interface-transceivers-7.4
2 parents c7c8a44 + 12564c9 commit 9293148

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
thread: [ 0, 1, 2 ]
2323
steps:
2424
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25-
- uses: prometheus/promci@52c7012f5f0070d7281b8db4a119e21341d43c91 # v0.4.5
25+
- uses: prometheus/promci@443c7fc2397e946bc9f5029e313a9c3441b9b86d # v0.4.7
2626
- uses: ./.github/promci/actions/build
2727
with:
2828
promu_opts: "-p linux/amd64 -p windows/amd64 -p darwin/amd64 -p linux/arm64 -p windows/arm64 -p darwin/arm64"
@@ -41,7 +41,7 @@ jobs:
4141
thread: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ]
4242
steps:
4343
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44-
- uses: prometheus/promci@52c7012f5f0070d7281b8db4a119e21341d43c91 # v0.4.5
44+
- uses: prometheus/promci@443c7fc2397e946bc9f5029e313a9c3441b9b86d # v0.4.7
4545
- uses: ./.github/promci/actions/build
4646
with:
4747
parallelism: 12
@@ -68,7 +68,7 @@ jobs:
6868
(github.event_name == 'push' && github.event.ref == 'refs/heads/main')
6969
steps:
7070
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
71-
- uses: prometheus/promci@52c7012f5f0070d7281b8db4a119e21341d43c91 # v0.4.5
71+
- uses: prometheus/promci@443c7fc2397e946bc9f5029e313a9c3441b9b86d # v0.4.7
7272
- uses: ./.github/promci/actions/publish_main
7373
with:
7474
docker_hub_organization: prometheuscommunity
@@ -88,7 +88,7 @@ jobs:
8888
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v0.'))
8989
steps:
9090
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
91-
- uses: prometheus/promci@52c7012f5f0070d7281b8db4a119e21341d43c91 # v0.4.5
91+
- uses: prometheus/promci@443c7fc2397e946bc9f5029e313a9c3441b9b86d # v0.4.7
9292
- uses: ./.github/promci/actions/publish_release
9393
with:
9494
docker_hub_organization: prometheuscommunity

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Per-VDOM:
9292
* `fortigate_interface_transmit_errors_total`
9393
* `fortigate_interface_receive_errors_total`
9494
* _System/Interface/Transceivers_
95-
* `fortigate_inteface_transceivers`
95+
* `fortigate_inteface_transceivers_info`
9696
* _System/SDNConnector_
9797
* `fortigate_system_sdn_connector_status`
9898
* `fortigate_system_sdn_connector_last_update_seconds`

pkg/probe/system_interface_transceivers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
func probeSystemInterfaceTransceivers(c http.FortiHTTP, meta *TargetMetadata) ([]prometheus.Metric, bool) {
2424
var (
2525
interfaceTransceivers = prometheus.NewDesc(
26-
"fortigate_inteface_transceivers",
26+
"fortigate_inteface_transceivers_info",
2727
"Interface transceivers information",
2828
[]string{"interface", "type", "vendor", "vendorpartnumber", "vendorserialnumber"}, nil,
2929
)

0 commit comments

Comments
 (0)