-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlustre_ost_monitoring_tasks.xml
65 lines (51 loc) · 2.08 KB
/
lustre_ost_monitoring_tasks.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0"?>
<tasks>
<task name="EmptyTask">
<class module="task.empty_task" name="EmptyTask"/>
</task>
<task name="LustreFileCreationCheckTask">
<class module="task.lustre_file_creation_check_task" name="LustreFileCreationCheckTask"/>
<property>
<ost_idx></ost_idx> <!-- leave empty, set during runtime by proper TaskGenerator -->
<lfs_target>hebe</lfs_target>
<target_base_dir>/lustre/hebe/hpc/lfsmon/file_creation_check_monitoring</target_base_dir>
<target_mdt_sub_dir>mdt</target_mdt_sub_dir>
<mdt_index_rangeset>0-2</mdt_index_rangeset>
<pushgateway_client_name>hostname</pushgateway_client_name>
<pushgateway_client_port>5888</pushgateway_client_port>
<pushgateway_client_timeout>10000</pushgateway_client_timeout>
</property>
</task>
<task name="LustreIOTask">
<class module="task.lustre_io_task" name="LustreIOTask"/>
<property>
<ost_idx></ost_idx> <!-- leave empty, set during runtime by proper TaskGenerator -->
<block_size_bytes>1000000</block_size_bytes>
<total_size_bytes>1000000</total_size_bytes>
<write_file_sync>on</write_file_sync>
<target_dir>/lustre/nyx/hpc/lfsmon/ost_perf_monitoring</target_dir>
<lfs_bin>/usr/bin/lfs</lfs_bin>
<lfs_target>nyx</lfs_target>
<db_proxy_target>hostname</db_proxy_target>
<db_proxy_port>5777</db_proxy_port>
</property>
</task>
<task name="LustreAlertIOTask">
<class module="task.lustre_alert_io_task" name="LustreAlertIOTask"/>
<property>
<mail_server>localhost</mail_server>
<mail_sender>[email protected]</mail_sender>
<mail_receiver>[email protected]</mail_receiver>
<mail_threshold>3600</mail_threshold>
<ost_idx></ost_idx> <!-- set during runtime by proper TaskGenerator -->
<block_size_bytes>1000000</block_size_bytes>
<total_size_bytes>1000000</total_size_bytes>
<write_file_sync>on</write_file_sync>
<target_dir>/lustre/nyx/hpc/lfsmon/ost_perf_monitoring</target_dir>
<lfs_bin>/usr/bin/lfs</lfs_bin>
<lfs_target>nyx</lfs_target>
<db_proxy_target>hostname</db_proxy_target>
<db_proxy_port>5777</db_proxy_port>
</property>
</task>
</tasks>