server.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Configuration for development environment-->
  3. <config local-mode="false" hdfs-machine="false" job-machine="true" alert-machine="false">
  4. <storage local-base-dir="/data/appdatas/cat/bucket/" max-hdfs-storage-time="15" local-report-storage-time="7" local-logivew-storage-time="7">
  5. </storage>
  6. <console default-domain="Cat" show-cat-domain="true">
  7. <remote-servers>127.0.0.1:8080</remote-servers>
  8. </console>
  9. </config>
  10. <!-- Configuration for production environment -->
  11. <!-- Note: -->
  12. <!-- 1. Set local-mode false to activate remote mode. -->
  13. <!-- 2. If machine is job-machine, set job-machine true, you just need config only one machine. Job is offline for report aggreation, statistics report.-->
  14. <!-- 3. If machine is alert-machine, set alert-machine true, you just need config only one machine. -->
  15. <!-- 4. Cat can run without hdfs, you just config hdfs-machine false. If you have hdfs, you can config hdfs info for saving the logview info. -->
  16. <!-- 5. If you don't need hdfs, the logview will be stored in local disk. You can config max local-logivew-storage-time for cleaning up old logview, the unit is day. -->
  17. <!-- 6. Please set hadoop environment accordingly. -->
  18. <!-- 7. Please config remote-server if you have many cat servers. -->
  19. <!--
  20. <config local-mode="false" hdfs-machine="false" job-machine="false" alert-machine="false">
  21. <storage local-base-dir="/data/appdatas/cat/bucket/" max-hdfs-storage-time="15" local-report-storage-time="7" local-logivew-storage-time="7">
  22. <hdfs id="logview" max-size="128M" server-uri="hdfs://10.1.77.86/user/cat" base-dir="logview"/>
  23. <hdfs id="dump" max-size="128M" server-uri="hdfs://10.1.77.86/user/cat" base-dir="dump"/>
  24. <hdfs id="remote" max-size="128M" server-uri="hdfs://10.1.77.86/user/cat" base-dir="remote"/>
  25. </storage>
  26. <console default-domain="Cat" show-cat-domain="true">
  27. <remote-servers>192.168.0.1:8080,192.168.0.2:8080</remote-servers>
  28. </console>
  29. </config>
  30. -->