2018-11-18T15:39:04.902Z|d5d75b3c41242768|127.0.0.1|anonymous|GET|api/v1/cert/root|200|0|6|0|JFrog Access Java Client/4.1.12
If we deploy a simple artifact using cURL, here is the output of it and respective log entries based on trace id from different microservices.
$ curl -uadmin -X PUT http://jfrog.local/artifactory/example-repo-local/apache-log4j-2.13.3-bin.tar.gz -T ~/Downloads/apache-log4j-2.13.3-bin.tar.gz
Enter host password for user 'admin':
The artifactory service log has the following entry.
2022-09-23T05:19:49.158Z [jfrt ] [INFO ] [2e896eb103b28d7c] [o.a.e.UploadServiceImpl:466 ] [http-nio-8081-exec-6] - Deploy to 'example-repo-local:apache-log4j-2.13.3-bin.tar.gz' Content-Length: 14378385 (estimation) artificial: false
If we take the above trace id(2e896eb103b28d7c) and search for it, then we get all the relevant entries from different microservice logs.
$ grep -iR 2e896eb103b28d7c /opt/jfrog/artifactory/var/log/*
If we deploy a simple artifact using cURL, here is the output of it and respective log entries based on trace id from different microservices.
$ curl -uadmin -X PUT http://jfrog.local/artifactory/example-repo-local/apache-log4j-2.13.3-bin.tar.gz -T ~/Downloads/apache-log4j-2.13.3-bin.tar.gz
Enter host password for user 'admin':
{ "repo" : "example-repo-local", "path" : "/apache-log4j-2.13.3-bin.tar.gz", "created" : "2022-09-23T05:20:36.405Z", "createdBy" : "admin", "downloadUri" : "http://jfrog.local/artifactory/example-repo-local/apache-log4j-2.13.3-bin.tar.gz", "mimeType" : "application/x-gzip", "size" : "14378385", "checksums" : { "sha1" : "a57ccf256b1e7c16832caeb73c503d297063a717", "md5" : "2414d75a46b114ece41f31fc21f27019", "sha256" : "5b86209c507063ba04db6b3797140cc31acfbbd6988255a5d359ab860341ffac" }, "originalChecksums" : { "sha256" : "5b86209c507063ba04db6b3797140cc31acfbbd6988255a5d359ab860341ffac" }, "uri" : "http://jfrog.local/artifactory/example-repo-local/apache-log4j-2.13.3-bin.tar.gz" }
The artifactory service log has the following entry.
2022-09-23T05:19:49.158Z [jfrt ] [INFO ] [2e896eb103b28d7c] [o.a.e.UploadServiceImpl:466 ] [http-nio-8081-exec-6] - Deploy to 'example-repo-local:apache-log4j-2.13.3-bin.tar.gz' Content-Length: 14378385 (estimation) artificial: false
If we take the above trace id(2e896eb103b28d7c) and search for it, then we get all the relevant entries from different microservice logs.
$ grep -iR 2e896eb103b28d7c /opt/jfrog/artifactory/var/log/*