File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,12 @@ Rollup Indices
150
150
.. autoclass :: RollupClient
151
151
:members:
152
152
153
+ Search Applications
154
+ -------------------
155
+
156
+ .. autoclass :: SearchApplicationClient
157
+ :members:
158
+
153
159
Searchable Snapshots
154
160
--------------------
155
161
Original file line number Diff line number Diff line change 45
45
from ._sync .client .monitoring import MonitoringClient as MonitoringClient # noqa: F401
46
46
from ._sync .client .nodes import NodesClient as NodesClient # noqa: F401
47
47
from ._sync .client .rollup import RollupClient as RollupClient # noqa: F401
48
+ from ._sync .client .search_application import ( # noqa: F401
49
+ SearchApplicationClient as SearchApplicationClient ,
50
+ )
48
51
from ._sync .client .searchable_snapshots import ( # noqa: F401
49
52
SearchableSnapshotsClient as SearchableSnapshotsClient ,
50
53
)
94
97
"MonitoringClient" ,
95
98
"NodesClient" ,
96
99
"RollupClient" ,
100
+ "SearchApplicationClient" ,
97
101
"SearchableSnapshotsClient" ,
98
102
"SecurityClient" ,
99
103
"ShutdownClient" ,
Original file line number Diff line number Diff line change @@ -30,9 +30,9 @@ def is_hot() -> bool:
30
30
map (
31
31
int ,
32
32
re .findall (
33
- r"\s\+ ([0-9]{2})\.[0-9]" ,
33
+ r"_input\:\s ([0-9]{2})\.[0-9]" ,
34
34
subprocess .check_output (
35
- "sensors" ,
35
+ "sensors -u " ,
36
36
shell = True ,
37
37
stderr = subprocess .STDOUT ,
38
38
).decode ("utf-8" ),
You can’t perform that action at this time.
0 commit comments