Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
19 | class OrionHealth(OrionBaseAction): |
||
20 | def run(self, platform): |
||
21 | """ |
||
22 | Show details on an Orion monitoring platform health. |
||
23 | """ |
||
24 | |||
25 | self.connect(platform) |
||
26 | |||
27 | # Does nothing yet... |
||
28 | |||
29 | # The Invoke returns None, so return something. |
||
30 | return True |
||
31 |