File tree 11 files changed +134
-1
lines changed
11 files changed +134
-1
lines changed Original file line number Diff line number Diff line change 13
13
executor : golang
14
14
steps :
15
15
- prometheus/setup_environment
16
- - run : make style lint yamllint unused build test
16
+ - run : make
17
17
- prometheus/store_artifact :
18
18
file : smartctl_exporter
19
19
codespell :
Original file line number Diff line number Diff line change
1
+ ## 0.7.0 / 2022-08-05
2
+
3
+ First prometheus-community release.
4
+
5
+ * [ FEATURE] Add various new metrics #14
6
+ * [ BUGFIX] Return the cached value if it's not time to scan again yet #18
7
+ * [ BUGFIX] Fix exit code bit parsing #37
8
+
9
+ ## 0.6.0 / 2020-10-29
10
+
11
+ * Parsing smartctl return code and collect metrics if no errors
12
+ * Parsing smartctl messages and collect metrics if no errors
13
+
14
+ ## 0.5.0 / 2019-08-17
15
+
16
+ * smartctl_device: Device info
17
+ * smartctl_device_attribute: Device attributes
18
+ * smartctl_device_block_size: Device block size
19
+ * smartctl_device_capacity_blocks: Device capacity in blocks
20
+ * smartctl_device_capacity_bytes: Device capacity in bytes
21
+ * smartctl_device_interface_speed: Device interface speed, bits per second
22
+ * smartctl_device_power_cycle_count: Device power cycle count
23
+ * smartctl_device_power_on_seconds: Device power on seconds
24
+ * smartctl_device_rotation_rate: Device rotation rate
25
+ * smartctl_device_smartctl_exit_status: Exit status of smartctl on device
26
+ * smartctl_device_statistics: Device statistics
27
+ * smartctl_device_temperature: Device temperature celsius
28
+ * smartctl_version: smartctl version
Original file line number Diff line number Diff line change
1
+ 0.7.0
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 The Prometheus Authors
2
+ // Licensed under the Apache License, Version 2.0 (the "License");
3
+ // you may not use this file except in compliance with the License.
4
+ // You may obtain a copy of the License at
5
+ //
6
+ // http://www.apache.org/licenses/LICENSE-2.0
7
+ //
8
+ // Unless required by applicable law or agreed to in writing, software
9
+ // distributed under the License is distributed on an "AS IS" BASIS,
10
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
package main
2
15
3
16
import (
You can’t perform that action at this time.
0 commit comments