Skip to content

Commit 186fabe

Browse files
Rename module private github url to public url (#17)
Signed-off-by: Mu Chen <[email protected]>
1 parent 16520fd commit 186fabe

23 files changed

+25
-25
lines changed

collector/collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"sync"
2020
"time"
2121

22+
"github.com/IBM/spectrum-virtualize-exporter/utils"
2223
"github.com/prometheus/client_golang/prometheus"
23-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2424
kingpin "gopkg.in/alecthomas/kingpin.v2"
2525
)
2626

collector/mdisk_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package collector
1616

1717
import (
18+
"github.com/IBM/spectrum-virtualize-exporter/utils"
1819
"github.com/prometheus/client_golang/prometheus"
1920
"github.com/tidwall/gjson"
20-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2121
)
2222

2323
const prefix_mdisk = "spectrum_mdisk_"

collector/mdiskgrp_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ package collector
1717
import (
1818
"strconv"
1919

20+
"github.com/IBM/spectrum-virtualize-exporter/utils"
2021
"github.com/prometheus/client_golang/prometheus"
2122
"github.com/tidwall/gjson"
22-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2323
)
2424

2525
const prefix_mdiskgrp = "spectrum_mdiskgrp_"

collector/node_stats_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package collector
1616

1717
import (
18+
"github.com/IBM/spectrum-virtualize-exporter/utils"
1819
"github.com/prometheus/client_golang/prometheus"
1920
"github.com/tidwall/gjson"
20-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2121
)
2222

2323
const prefix_nodeStats = "spectrum_nodestats_"

collector/system_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import (
1818
"fmt"
1919
"strconv"
2020

21+
"github.com/IBM/spectrum-virtualize-exporter/utils"
2122
"github.com/prometheus/client_golang/prometheus"
2223
"github.com/tidwall/gjson"
23-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2424
)
2525

2626
const prefix_sys = "spectrum_system_"

collector/system_stats_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ package collector
1717
import (
1818
"fmt"
1919

20+
"github.com/IBM/spectrum-virtualize-exporter/utils"
2021
"github.com/prometheus/client_golang/prometheus"
2122
"github.com/tidwall/gjson"
22-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2323
)
2424

2525
const prefix_stats = "spectrum_systemstats_"

collector/volume_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package collector
1616

1717
import (
18+
"github.com/IBM/spectrum-virtualize-exporter/utils"
1819
"github.com/prometheus/client_golang/prometheus"
1920
"github.com/tidwall/gjson"
20-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2121
)
2222

2323
const prefix_volume = "spectrum_volume_"

collector/volume_copy_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
package collector
1616

1717
import (
18+
"github.com/IBM/spectrum-virtualize-exporter/utils"
1819
"github.com/prometheus/client_golang/prometheus"
1920
"github.com/tidwall/gjson"
20-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2121
)
2222

2323
const prefix_volumeCopy = "spectrum_volume_copy"

collector_s/callhome_collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ package collector_s
1717
import (
1818
"fmt"
1919

20+
"github.com/IBM/spectrum-virtualize-exporter/utils"
2021
"github.com/prometheus/client_golang/prometheus"
2122
"github.com/tidwall/gjson"
22-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2323
)
2424

2525
const prefix_callhome = "spectrum_callhome_"

collector_s/collector.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"sync"
2020
"time"
2121

22+
"github.com/IBM/spectrum-virtualize-exporter/utils"
2223
"github.com/prometheus/client_golang/prometheus"
23-
"github.ibm.com/ZaaS/spectrum-virtualize-exporter/utils"
2424
kingpin "gopkg.in/alecthomas/kingpin.v2"
2525
)
2626

0 commit comments

Comments
 (0)