This file contains hidden or 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
# If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. | |
# | |
#Find the sum of all the multiples of 3 or 5 below 1000. | |
# first lets grab everything from 1 -> 1000 that has no remainder if i / by 3 or 5 | |
$num_to_sum = @() | |
1 .. 1000 | foreach { | |
if (($_ % 3 -eq 0) -or ($_ % 5 -eq 0)) {$num_to_sum += $_} | |
} |
This file contains hidden or 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
#========================== Modules configuration ============================ | |
metricbeat.modules: | |
#------------------------------- System Module ------------------------------- | |
- module: system | |
metricsets: | |
# CPU stats | |
- cpu | |
# System Load stats |