Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

audit-logs.apt 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ------
  2. Audit Logs
  3. ------
  4. ------
  5. 2011-09-16
  6. ------
  7. ~~ Licensed to the Apache Software Foundation (ASF) under one
  8. ~~ or more contributor license agreements. See the NOTICE file
  9. ~~ distributed with this work for additional information
  10. ~~ regarding copyright ownership. The ASF licenses this file
  11. ~~ to you under the Apache License, Version 2.0 (the
  12. ~~ "License"); you may not use this file except in compliance
  13. ~~ with the License. You may obtain a copy of the License at
  14. ~~
  15. ~~ http://www.apache.org/licenses/LICENSE-2.0
  16. ~~
  17. ~~ Unless required by applicable law or agreed to in writing,
  18. ~~ software distributed under the License is distributed on an
  19. ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  20. ~~ KIND, either express or implied. See the License for the
  21. ~~ specific language governing permissions and limitations
  22. ~~ under the License.
  23. Audit Logs
  24. Archiva's <<<logs>>> directory contains an audit log file named <<<archiva-audit.log>>>, which tracks events that occur in the server.
  25. A typical record looks like this:
  26. ----
  27. 2008-11-20 14:52:38 releases guest 127.0.0.1 "org/mortbay/jetty/jetty/6.1.12/jetty-6.1.12-sources.jar" "Created File (proxied)"
  28. ----
  29. The space delimited records are:
  30. * date and time (server local time)
  31. * repository affected
  32. * user that enacted the change (or guest if none)
  33. * IP address of the user
  34. * the path of the artifact within the repository
  35. * the event that occured
  36. Currently, the following events are logged:
  37. * creation of a directory
  38. * creation of a file
  39. * removal of a directory
  40. * removal of a file
  41. * modification of a directory
  42. * move/rename of a file
  43. * copy of a file
  44. * move/rename of a directory
  45. * copy of a directory
  46. * uploaded file via the web interface
  47. ~~TODO: link to configuration files, might want it to be configurable for different levels/events, later add GUI instructions